Chromium Code Reviews| Index: chrome/browser/ui/views/constrained_window_frame_simple.h |
| diff --git a/chrome/browser/ui/views/constrained_window_frame_simple.h b/chrome/browser/ui/views/constrained_window_frame_simple.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f3914ec2fe56ebd0ba45f4efeea610653ba7a19e |
| --- /dev/null |
| +++ b/chrome/browser/ui/views/constrained_window_frame_simple.h |
| @@ -0,0 +1,35 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| +#define CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| +#pragma once |
| + |
| +#include "ui/views/window/non_client_view.h" |
| + |
| +class ConstrainedWindowViews; |
| + |
| +//////////////////////////////////////////////////////////////////////////////// |
| +// ConstrainedWindowFrameView |
| +// Provides a custom Window frame for ConstrainedWindowViews. |
| +// Implements a simple window with a minimal frame. |
| +class ConstrainedWindowFrameSimple : public views::NonClientFrameView { |
| + public: |
| + explicit ConstrainedWindowFrameSimple(ConstrainedWindowViews* container); |
| + |
|
Ben Goodger (Google)
2012/07/12 15:49:04
virtual dtor
Albert Bodenhamer
2012/07/12 21:20:44
Done.
|
| + // Overridden from views::NonClientFrameView: |
|
Ben Goodger (Google)
2012/07/12 15:49:04
private:
Albert Bodenhamer
2012/07/12 21:20:44
Done.
|
| + virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
| + virtual gfx::Rect GetWindowBoundsForClientBounds( |
| + const gfx::Rect& client_bounds) const OVERRIDE; |
| + virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
| + virtual void GetWindowMask(const gfx::Size& size, |
| + gfx::Path* window_mask) OVERRIDE {} |
| + virtual void ResetWindowControls() OVERRIDE {} |
| + virtual void UpdateWindowIcon() OVERRIDE {} |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(ConstrainedWindowFrameSimple); |
| +}; |
| +#endif // CHROME_BROWSER_UI_VIEWS_CONSTRAINED_WINDOW_FRAME_SIMPLE_H_ |
| + |