HomeSort by relevance Sort by last modified time
    Searched refs:Window (Results 1 - 25 of 1592) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/v2/src/
window.cc 5 #include "ui/v2/public/window.h"
10 // Window, public:
12 Window::Window() {
15 Window::~Window() {
  /external/chromium_org/ui/wm/public/
activation_client.h 15 class Window;
20 // An interface implemented by an object that manages window activation.
27 // Activates |window|. If |window| is NULL, nothing happens.
28 virtual void ActivateWindow(Window* window) = 0;
30 // Deactivates |window|. What (if anything) is activated next is up to the
31 // client. If |window| is NULL, nothing happens.
32 virtual void DeactivateWindow(Window* window) = 0
    [all...]
activation_change_observer.h 11 class Window;
17 // Called when |active| gains focus, or there is no active window
19 // previous active window or NULL if there was no previously active
20 // window.
21 virtual void OnWindowActivated(Window* gained_active,
22 Window* lost_active) = 0;
24 // Called when during window activation the currently active window is
25 // selected for activation. This can happen when a window requested for
26 // activation cannot be activated because a system modal window is active
    [all...]
transient_window_client.h 13 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
    [all...]
tooltip_client.h 12 class Window;
19 // Informs the shell tooltip manager of change in tooltip for window |target|.
20 virtual void UpdateTooltip(Window* target) = 0;
22 // Sets the time after which the tooltip is hidden for Window |target|. If
24 virtual void SetTooltipShownTimeout(Window* target, int timeout_in_ms) = 0;
35 AURA_EXPORT void SetTooltipClient(Window* root_window,
37 AURA_EXPORT TooltipClient* GetTooltipClient(Window* root_window);
42 AURA_EXPORT void SetTooltipText(Window* window,
44 AURA_EXPORT void SetTooltipId(Window* window, void* id)
    [all...]
  /external/chromium_org/ui/aura/
window_observer.h 18 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.
37 // Called when a window is added or removed. Notifications are sent to the
50 // Invoked when |new_window| has been added as a child of this window.
51 virtual void OnWindowAdded(Window* new_window) {
    [all...]
layout_manager.h 16 class Window;
24 // Invoked when the window is resized.
27 // Invoked when the window |child| has been added.
28 virtual void OnWindowAddedToLayout(Window* child) = 0;
30 // Invoked prior to removing |window|.
31 virtual void OnWillRemoveWindowFromLayout(Window* child) = 0;
33 // Invoked after removing |window|.
34 virtual void OnWindowRemovedFromLayout(Window* child) = 0;
36 // Invoked when the |SetVisible()| is invoked on the window |child|.
38 // window->IsVisible() may still return false. See description i
    [all...]
  /external/chromium_org/ui/aura/client/
capture_client.h 11 class Window;
18 // Does a capture on the |window|.
19 virtual void SetCapture(Window* window) = 0;
21 // Releases a capture from the |window|.
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 i
    [all...]
window_tree_client.h 15 class Window;
24 // Called by the Window when it looks for a default parent. Returns the
25 // window that |window| should be added to instead. |context| provides a
26 // Window (generally a RootWindow) that can be used to determine which
28 // have side effects. It should only be used when |window| is going to be
33 virtual Window* GetDefaultParent(
34 Window* context,
35 Window* window,
    [all...]
default_capture_client.h 18 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_;
focus_client.h 15 class Window;
19 // An interface implemented by an object that manages window focus.
27 // Focuses |window|. Passing NULL clears focus.
28 virtual void FocusWindow(Window* window) = 0;
30 // Sets focus to |window| if it's within the active window. Not intended as a
32 virtual void ResetFocusWithinActiveWindow(Window* window) = 0;
34 // Retrieves the focused window, or NULL if there is none
    [all...]
focus_change_observer.h 11 class Window;
18 virtual void OnWindowFocused(Window* gained_focus, Window* lost_focus) = 0;
24 AURA_EXPORT FocusChangeObserver* GetFocusChangeObserver(Window* window);
26 Window* window,
  /external/chromium_org/ui/wm/core/
focus_rules.h 11 class Window;
22 // Returns true if |window| is a toplevel window. Whether or not a window
25 // call CanActivateWindow() to determine if a window can be activated.
26 virtual bool IsToplevelWindow(aura::Window* window) const = 0;
27 // Returns true if |window| can be activated or focused.
28 virtual bool CanActivateWindow(aura::Window* window) const = 0
    [all...]
window_util.h 16 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);
32 // Retrieves the activatable window for |window|. The ActivationClient make
    [all...]
base_focus_rules.h 21 // Returns true if the children of |window| can be activated.
22 virtual bool SupportsChildActivation(aura::Window* window) const = 0;
24 // Returns true if |window| is considered visible for activation purposes.
26 aura::Window* window) const;
29 virtual bool IsToplevelWindow(aura::Window* window) const OVERRIDE;
30 virtual bool CanActivateWindow(aura::Window* window) const OVERRIDE
    [all...]
transient_window_observer.h 11 class Window;
18 // Called when a transient child is added to |window|.
19 virtual void OnTransientChildAdded(aura::Window* window,
20 aura::Window* transient) = 0;
22 // Called when a transient child is removed from |window|.
23 virtual void OnTransientChildRemoved(aura::Window* window,
24 aura::Window* transient) = 0;
  /external/chromium_org/ui/v2/public/
window.h 14 // A Window is a View that has a nested View hierarchy.
16 class V2_EXPORT Window : public View {
18 Window();
19 virtual ~Window();
27 DISALLOW_COPY_AND_ASSIGN(Window);
  /external/chromium_org/athena/system/
network_selector.h 9 class Window;
14 void CreateNetworkSelector(aura::Window* window);
  /external/chromium_org/ui/aura/test/
test_windows.h 19 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* parent)
    [all...]
test_window_tree_client.h 18 explicit TestWindowTreeClient(Window* root_window);
22 virtual Window* GetDefaultParent(Window* context,
23 Window* window,
26 Window* root_window_;
  /external/chromium_org/ash/wm/
ash_focus_rules.h 23 virtual bool SupportsChildActivation(aura::Window* window) const OVERRIDE;
25 aura::Window* window) const OVERRIDE;
26 virtual bool CanActivateWindow(aura::Window* window) const OVERRIDE;
27 virtual aura::Window* GetNextActivatableWindow(
28 aura::Window* ignore) const OVERRIDE;
30 aura::Window* GetTopmostWindowToActivateForContainerIndex(
32 aura::Window* ignore) const
    [all...]
always_on_top_controller.h 13 class Window;
18 // AlwaysOnTopController puts window into proper containers based on its
19 // 'AlwaysOnTop' property. That is, putting a window into the worskpace
28 void SetAlwaysOnTopContainer(aura::Window* always_on_top_container);
30 // Gets container for given |window| based on its "AlwaysOnTop" property.
31 aura::Window* GetContainer(aura::Window* window) const;
35 virtual void OnWindowAdded(aura::Window* child) OVERRIDE;
36 virtual void OnWillRemoveWindow(aura::Window* child) OVERRIDE
    [all...]
virtual_keyboard_container_layout_manager.h 12 class Window;
19 explicit VirtualKeyboardContainerLayoutManager(aura::Window* container);
26 aura::Window* parent_container_;
  /external/chromium_org/athena/wm/public/
window_list_provider.h 9 #include "ui/aura/window.h"
15 // Interface for an ordered list of aura::Window objects.
26 // Returns an ordered list of the current window configuration.
27 virtual const aura::Window::Windows& GetWindowList() const = 0;
29 // Returns true if the |window| is part of the list.
30 virtual bool IsWindowInList(aura::Window* window) const = 0;
32 // Returns true if the given window is a window which can be handled by the
34 virtual bool IsValidWindow(aura::Window* window) const = 0
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_focus_rules.h 14 explicit DesktopFocusRules(aura::Window* content_window);
19 virtual bool CanActivateWindow(aura::Window* window) const OVERRIDE;
20 virtual bool SupportsChildActivation(aura::Window* window) const OVERRIDE;
22 aura::Window* window) const OVERRIDE;
23 virtual aura::Window* GetToplevelWindow(aura::Window* window) const OVERRIDE
    [all...]

Completed in 3420 milliseconds

1 2 3 4 5 6 7 8 91011>>