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

Side by Side Diff: ui/views/widget/native_widget_win.h

Issue 10828133: Desktop Aura: Allow tab drags out of window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 8 years, 4 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 | « ui/views/widget/native_widget_private.h ('k') | ui/views/widget/native_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) 2012 The Chromium Authors. All rights reserved. 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 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 UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 6 #define UI_VIEWS_WIDGET_NATIVE_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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 virtual void RunShellDrag(View* view, 254 virtual void RunShellDrag(View* view,
255 const ui::OSExchangeData& data, 255 const ui::OSExchangeData& data,
256 const gfx::Point& location, 256 const gfx::Point& location,
257 int operation) OVERRIDE; 257 int operation) OVERRIDE;
258 virtual void SchedulePaintInRect(const gfx::Rect& rect) OVERRIDE; 258 virtual void SchedulePaintInRect(const gfx::Rect& rect) OVERRIDE;
259 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; 259 virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE;
260 virtual void ClearNativeFocus() OVERRIDE; 260 virtual void ClearNativeFocus() OVERRIDE;
261 virtual void FocusNativeView(gfx::NativeView native_view) OVERRIDE; 261 virtual void FocusNativeView(gfx::NativeView native_view) OVERRIDE;
262 virtual gfx::Rect GetWorkAreaBoundsInScreen() const OVERRIDE; 262 virtual gfx::Rect GetWorkAreaBoundsInScreen() const OVERRIDE;
263 virtual void SetInactiveRenderingDisabled(bool value) OVERRIDE; 263 virtual void SetInactiveRenderingDisabled(bool value) OVERRIDE;
264 virtual Widget::MoveLoopResult RunMoveLoop() OVERRIDE; 264 virtual Widget::MoveLoopResult RunMoveLoop(
265 const gfx::Point& drag_offset) OVERRIDE;
265 virtual void EndMoveLoop() OVERRIDE; 266 virtual void EndMoveLoop() OVERRIDE;
266 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; 267 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE;
267 268
268 protected: 269 protected:
269 // Information saved before going into fullscreen mode, used to restore the 270 // Information saved before going into fullscreen mode, used to restore the
270 // window afterwards. 271 // window afterwards.
271 struct SavedWindowInfo { 272 struct SavedWindowInfo {
272 bool maximized; 273 bool maximized;
273 LONG style; 274 LONG style;
274 LONG ex_style; 275 LONG ex_style;
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 TouchIDs touch_ids_; 704 TouchIDs touch_ids_;
704 705
705 scoped_ptr<HWNDMessageHandler> message_handler_; 706 scoped_ptr<HWNDMessageHandler> message_handler_;
706 707
707 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); 708 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin);
708 }; 709 };
709 710
710 } // namespace views 711 } // namespace views
711 712
712 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 713 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_private.h ('k') | ui/views/widget/native_widget_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698