Searched refs:Window (Results 1 - 25 of 1144) sorted by relevance

1234567891011>>

/external/chromium_org/ui/v2/src/
H A Dwindow.cc10 // Window, public:
12 Window::Window() { function in class:v2::Window
15 Window::~Window() {
/external/chromium_org/ui/aura/test/
H A Dtest_windows.h19 Window* CreateTestWindowWithId(int id, Window* parent);
20 Window* CreateTestWindowWithBounds(const gfx::Rect& bounds, Window* parent);
21 Window* CreateTestWindow(SkColor color,
24 Window* parent);
25 Window* CreateTestWindowWithDelegate(WindowDelegate* delegate,
28 Window* parent);
29 Window* CreateTestWindowWithDelegateAndType(WindowDelegate* delegate,
33 Window* paren
[all...]
H A Dtest_window_tree_client.cc12 TestWindowTreeClient::TestWindowTreeClient(Window* root_window)
21 Window* TestWindowTreeClient::GetDefaultParent(Window* context,
22 Window* window,
/external/chromium_org/ui/aura/
H A Dwindow_observer.h18 class Window;
28 Window* target; // The window that was added or removed.
29 Window* new_parent;
30 Window* old_parent;
32 Window* receiver; // The window receiving the notification.
51 virtual void OnWindowAdded(Window* new_window) {}
54 virtual void OnWillRemoveWindow(Window* window) {}
57 virtual void OnWindowParentChanged(Window* window, Window* parent) {}
65 virtual void OnWindowPropertyChanged(Window* windo
[all...]
/external/chromium_org/ui/wm/public/
H A Dactivation_change_observer.h11 class Window;
21 virtual void OnWindowActivated(Window* gained_active,
22 Window* lost_active) = 0;
27 virtual void OnAttemptToReactivateWindow(aura::Window* request_active,
28 aura::Window* actual_active) {}
37 Window* window,
40 Window* window);
H A Dactivation_client.h15 class Window;
28 virtual void ActivateWindow(Window* window) = 0;
32 virtual void DeactivateWindow(Window* window) = 0;
35 virtual Window* GetActiveWindow() = 0;
42 virtual Window* GetActivatableWindow(Window* window) = 0;
45 virtual Window* GetToplevelWindow(Window* window) = 0;
49 virtual bool CanActivateWindow(Window* window) const = 0;
55 // Sets/Gets the activation client on the root Window
[all...]
H A Dtransient_window_client.h13 class Window;
29 virtual void AddTransientChild(Window* parent, Window* child) = 0;
30 virtual void RemoveTransientChild(Window* parent, Window* child) = 0;
31 virtual Window* GetTransientParent(Window* window) = 0;
32 virtual const Window* GetTransientParent(const Window* window) = 0;
/external/chromium_org/ui/wm/core/
H A Dwindow_util.h16 class Window;
27 WM_EXPORT void ActivateWindow(aura::Window* window);
28 WM_EXPORT void DeactivateWindow(aura::Window* window);
29 WM_EXPORT bool IsActiveWindow(aura::Window* window);
30 WM_EXPORT bool CanActivateWindow(aura::Window* window);
34 WM_EXPORT aura::Window* GetActivatableWindow(aura::Window* window);
38 WM_EXPORT aura::Window* GetToplevelWindow(aura::Window* window);
52 WM_EXPORT aura::Window* GetTransientParen
[all...]
H A Dbase_focus_rules.h22 virtual bool SupportsChildActivation(aura::Window* window) const = 0;
26 aura::Window* window) const;
29 virtual bool IsToplevelWindow(aura::Window* window) const OVERRIDE;
30 virtual bool CanActivateWindow(aura::Window* window) const OVERRIDE;
31 virtual bool CanFocusWindow(aura::Window* window) const OVERRIDE;
32 virtual aura::Window* GetToplevelWindow(aura::Window* window) const OVERRIDE;
33 virtual aura::Window* GetActivatableWindow(
34 aura::Window* window) const OVERRIDE;
35 virtual aura::Window* GetFocusableWindo
[all...]
H A Dtransient_window_observer.h11 class Window;
19 virtual void OnTransientChildAdded(aura::Window* window,
20 aura::Window* transient) = 0;
23 virtual void OnTransientChildRemoved(aura::Window* window,
24 aura::Window* transient) = 0;
H A Dfocus_rules.h11 class Window;
26 virtual bool IsToplevelWindow(aura::Window* window) const = 0;
28 virtual bool CanActivateWindow(aura::Window* window) const = 0;
31 virtual bool CanFocusWindow(aura::Window* window) const = 0;
38 virtual aura::Window* GetToplevelWindow(aura::Window* window) const = 0;
48 virtual aura::Window* GetActivatableWindow(aura::Window* window) const = 0;
49 virtual aura::Window* GetFocusableWindow(aura::Window* windo
[all...]
H A Dtransient_window_controller.h22 virtual void AddTransientChild(aura::Window* parent,
23 aura::Window* child) OVERRIDE;
24 virtual void RemoveTransientChild(aura::Window* parent,
25 aura::Window* child) OVERRIDE;
26 virtual aura::Window* GetTransientParent(aura::Window* window) OVERRIDE;
27 virtual const aura::Window* GetTransientParent(
28 const aura::Window* window) OVERRIDE;
H A Dtransient_window_manager.h31 typedef std::vector<aura::Window*> Windows;
36 static TransientWindowManager* Get(aura::Window* window);
40 static const TransientWindowManager* Get(const aura::Window* window);
46 void AddTransientChild(aura::Window* child);
47 void RemoveTransientChild(aura::Window* child);
51 aura::Window* transient_parent() { return transient_parent_; }
52 const aura::Window* transient_parent() const { return transient_parent_; }
59 bool IsStackingTransient(const aura::Window* target) const;
62 explicit TransientWindowManager(aura::Window* window);
69 virtual void OnWindowParentChanged(aura::Window* windo
[all...]
/external/chromium_org/ui/aura/client/
H A Dcapture_client.h11 class Window;
19 virtual void SetCapture(Window* window) = 0;
22 virtual void ReleaseCapture(Window* window) = 0;
24 // Returns the current capture window. This may only return a Window if the
25 // Window that has capture is a child of the Window the CaptureClient is
26 // installed on. GetGlobalCaptureWindow() can be used to locate the Window
27 // that has capture regardless of the Window the CaptureClient is installed
29 virtual Window* GetCaptureWindow() = 0;
32 virtual Window* GetGlobalCaptureWindo
[all...]
H A Dfocus_change_observer.h11 class Window;
18 virtual void OnWindowFocused(Window* gained_focus, Window* lost_focus) = 0;
24 AURA_EXPORT FocusChangeObserver* GetFocusChangeObserver(Window* window);
26 Window* window,
H A Dwindow_tree_client.h15 class Window;
24 // Called by the Window when it looks for a default parent. Returns the
26 // Window (generally a RootWindow) that can be used to determine which
33 virtual Window* GetDefaultParent(
34 Window* context,
35 Window* window,
41 AURA_EXPORT void SetWindowTreeClient(Window* window,
43 WindowTreeClient* GetWindowTreeClient(Window* window);
46 // WindowTreeClient attached at the root Window containing |context|. The final
49 AURA_EXPORT void ParentWindowWithContext(Window* windo
[all...]
H A Dvisibility_client.h11 class Window;
15 // layers as Window visibility changes.
21 virtual void UpdateLayerVisibility(Window* window, bool visible) = 0;
27 // Sets the VisibilityClient on the Window.
28 AURA_EXPORT void SetVisibilityClient(Window* window, VisibilityClient* client);
32 AURA_EXPORT VisibilityClient* GetVisibilityClient(Window* window);
H A Ddefault_capture_client.h18 explicit DefaultCaptureClient(Window* root_window);
23 virtual void SetCapture(Window* window) OVERRIDE;
24 virtual void ReleaseCapture(Window* window) OVERRIDE;
25 virtual Window* GetCaptureWindow() OVERRIDE;
26 virtual Window* GetGlobalCaptureWindow() OVERRIDE;
28 Window* root_window_;
29 Window* capture_window_;
H A Dfocus_client.h15 class Window;
28 virtual void FocusWindow(Window* window) = 0;
32 virtual void ResetFocusWithinActiveWindow(Window* window) = 0;
35 virtual Window* GetFocusedWindow() = 0;
38 // Sets/Gets the focus client on the root Window.
39 AURA_EXPORT void SetFocusClient(Window* root_window, FocusClient* client);
40 AURA_EXPORT FocusClient* GetFocusClient(Window* window);
41 AURA_EXPORT FocusClient* GetFocusClient(const Window* window);
/external/chromium_org/athena/system/
H A Dnetwork_selector.h9 class Window;
14 void CreateNetworkSelector(aura::Window* window);
/external/chromium_org/ash/wm/
H A Dwindow_util.h13 class Window;
33 ASH_EXPORT void ActivateWindow(aura::Window* window);
34 ASH_EXPORT void DeactivateWindow(aura::Window* window);
35 ASH_EXPORT bool IsActiveWindow(aura::Window* window);
36 ASH_EXPORT aura::Window* GetActiveWindow();
37 ASH_EXPORT bool CanActivateWindow(aura::Window* window);
44 ASH_EXPORT aura::Window* GetActivatableWindow(aura::Window* window);
47 ASH_EXPORT bool IsWindowMinimized(aura::Window* window);
50 ASH_EXPORT void CenterWindow(aura::Window* windo
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dwindow_finder_chromeos.cc10 aura::Window* GetLocalProcessWindowAtPointAsh(
12 const std::set<aura::Window*>& ignore);
14 aura::Window* GetLocalProcessWindowAtPoint(
17 const std::set<aura::Window*>& ignore) {
/external/chromium_org/ui/v2/public/
H A Dwindow.h14 // A Window is a View that has a nested View hierarchy.
16 class V2_EXPORT Window : public View { class in namespace:v2
18 Window();
19 virtual ~Window();
27 DISALLOW_COPY_AND_ASSIGN(Window);
/external/chromium_org/ash/shelf/
H A Dshelf_util.h14 class Window;
28 ASH_EXPORT void SetShelfIDForWindow(ShelfID id, aura::Window* window);
32 // Note: Window of a tabbed browser will return the |ShelfID| of the
34 ASH_EXPORT ShelfID GetShelfIDForWindow(const aura::Window* window);
38 ASH_EXPORT void SetShelfItemDetailsForWindow(aura::Window* window,
43 ASH_EXPORT void SetShelfItemDetailsForDialogWindow(aura::Window* window,
50 ASH_EXPORT void ClearShelfItemDetailsForWindow(aura::Window* window);
55 aura::Window* window);
/external/chromium_org/athena/wm/public/
H A Dwindow_list_provider.h15 // Interface for an ordered list of aura::Window objects.
27 virtual const aura::Window::Windows& GetWindowList() const = 0;
30 virtual bool IsWindowInList(aura::Window* window) const = 0;
34 virtual bool IsValidWindow(aura::Window* window) const = 0;
38 virtual void StackWindowFrontOf(aura::Window* window,
39 aura::Window* reference_window) = 0;
43 virtual void StackWindowBehindTo(aura::Window* window,
44 aura::Window* reference_window) = 0;

Completed in 4751 milliseconds

1234567891011>>