| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_WM_DIALOG_FRAME_VIEW_H_ | |
| 6 #define ASH_WM_DIALOG_FRAME_VIEW_H_ | |
| 7 | |
| 8 #include "ui/views/controls/button/button.h" | |
| 9 #include "ui/views/window/non_client_view.h" | |
| 10 | |
| 11 namespace gfx { | |
| 12 class Font; | |
| 13 } | |
| 14 | |
| 15 namespace views { | |
| 16 class ImageButton; | |
| 17 } | |
| 18 | |
| 19 namespace ash { | |
| 20 namespace internal { | |
| 21 | |
| 22 // A NonClientFrameView that implements a Google-style for dialogs. | |
| 23 class DialogFrameView : public views::NonClientFrameView, | |
| 24 public views::ButtonListener { | |
| 25 public: | |
| 26 // Internal class name. | |
| 27 static const char kViewClassName[]; | |
| 28 | |
| 29 DialogFrameView(); | |
| 30 virtual ~DialogFrameView(); | |
| 31 | |
| 32 // Overridden from views::NonClientFrameView: | |
| 33 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | |
| 34 virtual gfx::Rect GetWindowBoundsForClientBounds( | |
| 35 const gfx::Rect& client_bounds) const OVERRIDE; | |
| 36 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | |
| 37 virtual void GetWindowMask(const gfx::Size& size, | |
| 38 gfx::Path* window_mask) OVERRIDE; | |
| 39 virtual void ResetWindowControls() OVERRIDE; | |
| 40 virtual void UpdateWindowIcon() OVERRIDE; | |
| 41 virtual void UpdateWindowTitle() OVERRIDE; | |
| 42 | |
| 43 // Overridden from View: | |
| 44 virtual std::string GetClassName() const OVERRIDE; | |
| 45 virtual void Layout() OVERRIDE; | |
| 46 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | |
| 47 | |
| 48 // Overridden from views::ButtonListener: | |
| 49 virtual void ButtonPressed(views::Button* sender, | |
| 50 const ui::Event& event) OVERRIDE; | |
| 51 | |
| 52 private: | |
| 53 gfx::Insets GetPaddingInsets() const; | |
| 54 gfx::Insets GetClientInsets() const; | |
| 55 | |
| 56 scoped_ptr<gfx::Font> title_font_; | |
| 57 gfx::Rect title_display_rect_; | |
| 58 | |
| 59 views::ImageButton* close_button_; | |
| 60 | |
| 61 DISALLOW_COPY_AND_ASSIGN(DialogFrameView); | |
| 62 }; | |
| 63 | |
| 64 } // namespace internal | |
| 65 } // namespace views | |
| 66 | |
| 67 #endif // ASH_WM_DIALOG_FRAME_VIEW_H_ | |
| OLD | NEW |