Index: ui/views/widget/desktop_native_widget_aura.h |
=================================================================== |
--- ui/views/widget/desktop_native_widget_aura.h (revision 167419) |
+++ ui/views/widget/desktop_native_widget_aura.h (working copy) |
@@ -1,190 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef UI_VIEWS_WIDGET_DESKTOP_NATIVE_WIDGET_AURA_H_ |
-#define UI_VIEWS_WIDGET_DESKTOP_NATIVE_WIDGET_AURA_H_ |
- |
-#include "base/memory/weak_ptr.h" |
-#include "ui/aura/client/activation_delegate.h" |
-#include "ui/aura/window_delegate.h" |
-#include "ui/views/widget/native_widget_private.h" |
- |
-namespace aura { |
-class RootWindow; |
-namespace client { |
-class StackingClient; |
-} |
-} |
- |
-namespace views { |
- |
-class DesktopRootWindowHost; |
-class NativeWidgetAuraWindowObserver; |
- |
-// TODO(erg): May also need to be a DragDropDelegate |
-class VIEWS_EXPORT DesktopNativeWidgetAura |
- : public internal::NativeWidgetPrivate, |
- public aura::WindowDelegate, |
- public aura::client::ActivationDelegate { |
- public: |
- explicit DesktopNativeWidgetAura(internal::NativeWidgetDelegate* delegate); |
- virtual ~DesktopNativeWidgetAura(); |
- |
- // Maps from window to DesktopNativeWidgetAura. |
- static DesktopNativeWidgetAura* ForWindow(aura::Window* window); |
- |
- // Called by our DesktopRootWindowHost after it has deleted native resources; |
- // this is the signal that we should start our shutdown. |
- void OnHostClosed(); |
- |
- protected: |
- // Overridden from internal::NativeWidgetPrivate: |
- virtual void InitNativeWidget(const Widget::InitParams& params) OVERRIDE; |
- virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; |
- virtual bool ShouldUseNativeFrame() const OVERRIDE; |
- virtual void FrameTypeChanged() OVERRIDE; |
- virtual Widget* GetWidget() OVERRIDE; |
- virtual const Widget* GetWidget() const OVERRIDE; |
- virtual gfx::NativeView GetNativeView() const OVERRIDE; |
- virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
- virtual Widget* GetTopLevelWidget() OVERRIDE; |
- virtual const ui::Compositor* GetCompositor() const OVERRIDE; |
- virtual ui::Compositor* GetCompositor() OVERRIDE; |
- virtual gfx::Vector2d CalculateOffsetToAncestorWithLayer( |
- ui::Layer** layer_parent) OVERRIDE; |
- virtual void ViewRemoved(View* view) OVERRIDE; |
- virtual void SetNativeWindowProperty(const char* name, void* value) OVERRIDE; |
- virtual void* GetNativeWindowProperty(const char* name) const OVERRIDE; |
- virtual TooltipManager* GetTooltipManager() const OVERRIDE; |
- virtual bool IsScreenReaderActive() const OVERRIDE; |
- virtual void SendNativeAccessibilityEvent( |
- View* view, |
- ui::AccessibilityTypes::Event event_type) OVERRIDE; |
- virtual void SetCapture() OVERRIDE; |
- virtual void ReleaseCapture() OVERRIDE; |
- virtual bool HasCapture() const OVERRIDE; |
- virtual InputMethod* CreateInputMethod() OVERRIDE; |
- virtual internal::InputMethodDelegate* GetInputMethodDelegate() OVERRIDE; |
- virtual void CenterWindow(const gfx::Size& size) OVERRIDE; |
- virtual void GetWindowPlacement( |
- gfx::Rect* bounds, |
- ui::WindowShowState* maximized) const OVERRIDE; |
- virtual void SetWindowTitle(const string16& title) OVERRIDE; |
- virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
- const gfx::ImageSkia& app_icon) OVERRIDE; |
- virtual void SetAccessibleName(const string16& name) OVERRIDE; |
- virtual void SetAccessibleRole(ui::AccessibilityTypes::Role role) OVERRIDE; |
- virtual void SetAccessibleState(ui::AccessibilityTypes::State state) OVERRIDE; |
- virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
- virtual gfx::Rect GetWindowBoundsInScreen() const OVERRIDE; |
- virtual gfx::Rect GetClientAreaBoundsInScreen() const OVERRIDE; |
- virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
- virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
- virtual void SetSize(const gfx::Size& size) OVERRIDE; |
- virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; |
- virtual void StackAtTop() OVERRIDE; |
- virtual void StackBelow(gfx::NativeView native_view) OVERRIDE; |
- virtual void SetShape(gfx::NativeRegion shape) OVERRIDE; |
- virtual void Close() OVERRIDE; |
- virtual void CloseNow() OVERRIDE; |
- virtual void Show() OVERRIDE; |
- virtual void Hide() OVERRIDE; |
- virtual void ShowMaximizedWithBounds( |
- const gfx::Rect& restored_bounds) OVERRIDE; |
- virtual void ShowWithWindowState(ui::WindowShowState state) OVERRIDE; |
- virtual bool IsVisible() const OVERRIDE; |
- virtual void Activate() OVERRIDE; |
- virtual void Deactivate() OVERRIDE; |
- virtual bool IsActive() const OVERRIDE; |
- virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; |
- virtual void Maximize() OVERRIDE; |
- virtual void Minimize() OVERRIDE; |
- virtual bool IsMaximized() const OVERRIDE; |
- virtual bool IsMinimized() const OVERRIDE; |
- virtual void Restore() OVERRIDE; |
- virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
- virtual bool IsFullscreen() const OVERRIDE; |
- virtual void SetOpacity(unsigned char opacity) OVERRIDE; |
- virtual void SetUseDragFrame(bool use_drag_frame) OVERRIDE; |
- virtual void FlashFrame(bool flash_frame) OVERRIDE; |
- virtual bool IsAccessibleWidget() const OVERRIDE; |
- virtual void RunShellDrag(View* view, |
- const ui::OSExchangeData& data, |
- const gfx::Point& location, |
- int operation, |
- ui::DragDropTypes::DragEventSource source) OVERRIDE; |
- virtual void SchedulePaintInRect(const gfx::Rect& rect) OVERRIDE; |
- virtual void SetCursor(gfx::NativeCursor cursor) OVERRIDE; |
- virtual void ClearNativeFocus() OVERRIDE; |
- virtual gfx::Rect GetWorkAreaBoundsInScreen() const OVERRIDE; |
- virtual void SetInactiveRenderingDisabled(bool value) OVERRIDE; |
- virtual Widget::MoveLoopResult RunMoveLoop( |
- const gfx::Vector2d& drag_offset) OVERRIDE; |
- virtual void EndMoveLoop() OVERRIDE; |
- virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; |
- virtual ui::NativeTheme* GetNativeTheme() const OVERRIDE; |
- |
- // Overridden from aura::WindowDelegate: |
- virtual gfx::Size GetMinimumSize() const OVERRIDE; |
- virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
- const gfx::Rect& new_bounds) OVERRIDE; |
- virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; |
- virtual void OnBlur() OVERRIDE; |
- virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; |
- virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; |
- virtual bool ShouldDescendIntoChildForEventHandling( |
- aura::Window* child, |
- const gfx::Point& location) OVERRIDE; |
- virtual bool CanFocus() OVERRIDE; |
- virtual void OnCaptureLost() OVERRIDE; |
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
- virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; |
- virtual void OnWindowDestroying() OVERRIDE; |
- virtual void OnWindowDestroyed() OVERRIDE; |
- virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE; |
- virtual bool HasHitTestMask() const OVERRIDE; |
- virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE; |
- virtual scoped_refptr<ui::Texture> CopyTexture() OVERRIDE; |
- |
- // Overridden from ui::EventHandler: |
- virtual ui::EventResult OnKeyEvent(ui::KeyEvent* event) OVERRIDE; |
- virtual ui::EventResult OnMouseEvent(ui::MouseEvent* event) OVERRIDE; |
- virtual ui::EventResult OnTouchEvent(ui::TouchEvent* event) OVERRIDE; |
- virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
- |
- // Overridden from aura::client::ActivationDelegate: |
- virtual bool ShouldActivate(const ui::Event* event) OVERRIDE; |
- virtual void OnActivated() OVERRIDE; |
- virtual void OnLostActive() OVERRIDE; |
- |
- private: |
- // See class documentation for Widget in widget.h for a note about ownership. |
- Widget::InitParams::Ownership ownership_; |
- |
- // The NativeWidget owns the RootWindow. Required because the RootWindow owns |
- // its RootWindowHost, so DesktopRootWindowHost can't own it. |
- scoped_ptr<aura::RootWindow> root_window_; |
- |
- // The following factory is used for calls to close the NativeWidgetAura |
- // instance. |
- base::WeakPtrFactory<DesktopNativeWidgetAura> close_widget_factory_; |
- |
- scoped_ptr<NativeWidgetAuraWindowObserver> active_window_observer_; |
- |
- // Can we be made active? |
- bool can_activate_; |
- |
- // Ownership passed to RootWindow on Init. |
- DesktopRootWindowHost* desktop_root_window_host_; |
- aura::Window* window_; |
- internal::NativeWidgetDelegate* native_widget_delegate_; |
- |
- scoped_ptr<aura::client::StackingClient> stacking_client_; |
- |
- DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
-}; |
- |
-} // namespace views |
- |
-#endif // UI_VIEWS_WIDGET_DESKTOP_NATIVE_WIDGET_AURA_H_ |