Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: views/widget/widget_win.h

Issue 125062: Fix reversed focus traversal order issue. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/widget/root_view.cc ('k') | views/widget/widget_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « views/widget/root_view.cc ('k') | views/widget/widget_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698