| 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 VIEWS_WIDGET_WIDGET_WIN_H_ | 5 #ifndef VIEWS_WIDGET_WIDGET_WIN_H_ |
| 6 #define VIEWS_WIDGET_WIDGET_WIN_H_ | 6 #define VIEWS_WIDGET_WIDGET_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlapp.h> | 9 #include <atlapp.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 virtual const Window* GetWindow() const; | 232 virtual const Window* GetWindow() const; |
| 233 | 233 |
| 234 // Overridden from MessageLoop::Observer: | 234 // Overridden from MessageLoop::Observer: |
| 235 void WillProcessMessage(const MSG& msg); | 235 void WillProcessMessage(const MSG& msg); |
| 236 virtual void DidProcessMessage(const MSG& msg); | 236 virtual void DidProcessMessage(const MSG& msg); |
| 237 | 237 |
| 238 // Overridden from FocusTraversable: | 238 // Overridden from FocusTraversable: |
| 239 virtual View* FindNextFocusableView(View* starting_view, | 239 virtual View* FindNextFocusableView(View* starting_view, |
| 240 bool reverse, | 240 bool reverse, |
| 241 Direction direction, | 241 Direction direction, |
| 242 bool dont_loop, | 242 bool check_starting_view, |
| 243 FocusTraversable** focus_traversable, | 243 FocusTraversable** focus_traversable, |
| 244 View** focus_traversable_view); | 244 View** focus_traversable_view); |
| 245 virtual FocusTraversable* GetFocusTraversableParent(); | 245 virtual FocusTraversable* GetFocusTraversableParent(); |
| 246 virtual View* GetFocusTraversableParentView(); | 246 virtual View* GetFocusTraversableParentView(); |
| 247 | 247 |
| 248 // Overridden from AcceleratorTarget: | 248 // Overridden from AcceleratorTarget: |
| 249 virtual bool AcceleratorPressed(const Accelerator& accelerator) { | 249 virtual bool AcceleratorPressed(const Accelerator& accelerator) { |
| 250 return false; | 250 return false; |
| 251 } | 251 } |
| 252 | 252 |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 | 637 |
| 638 scoped_ptr<DefaultThemeProvider> default_theme_provider_; | 638 scoped_ptr<DefaultThemeProvider> default_theme_provider_; |
| 639 | 639 |
| 640 // Our hwnd. | 640 // Our hwnd. |
| 641 HWND hwnd_; | 641 HWND hwnd_; |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 } // namespace views | 644 } // namespace views |
| 645 | 645 |
| 646 #endif // #ifndef VIEWS_WIDGET_WIDGET_WIN_H_ | 646 #endif // #ifndef VIEWS_WIDGET_WIDGET_WIN_H_ |
| OLD | NEW |