OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ | 5 #ifndef CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ |
6 #define CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ | 6 #define CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ |
7 | 7 |
8 #include "chrome/common/gfx/chrome_font.h" | 8 #include "chrome/common/gfx/chrome_font.h" |
9 #include "chrome/views/focus/focus_manager.h" | 9 #include "chrome/views/focus/focus_manager.h" |
10 #include "chrome/views/controls/button/button.h" | 10 #include "chrome/views/controls/button/button.h" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 View* extra_view_; | 106 View* extra_view_; |
107 | 107 |
108 // The layout rect of the size box, when visible. | 108 // The layout rect of the size box, when visible. |
109 gfx::Rect size_box_bounds_; | 109 gfx::Rect size_box_bounds_; |
110 | 110 |
111 // True if the window was Accepted by the user using the OK button. | 111 // True if the window was Accepted by the user using the OK button. |
112 bool accepted_; | 112 bool accepted_; |
113 | 113 |
114 // Static resource initialization | 114 // Static resource initialization |
115 static void InitClass(); | 115 static void InitClass(); |
116 static ChromeFont dialog_button_font_; | 116 static ChromeFont* dialog_button_font_; |
117 | 117 |
118 DISALLOW_COPY_AND_ASSIGN(DialogClientView); | 118 DISALLOW_COPY_AND_ASSIGN(DialogClientView); |
119 }; | 119 }; |
120 | 120 |
121 } // namespace views | 121 } // namespace views |
122 | 122 |
123 #endif // #ifndef CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ | 123 #endif // #ifndef CHROME_VIEWS_WINDOW_DIALOG_CLIENT_VIEW_H_ |
OLD | NEW |