HomeSort by relevance Sort by last modified time
    Searched full:aura (Results 101 - 125 of 1275) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/athena/common/
fill_layout_manager.cc 8 #include "ui/aura/window.h"
12 FillLayoutManager::FillLayoutManager(aura::Window* container)
22 for (aura::Window::Windows::const_iterator iter =
30 void FillLayoutManager::OnWindowAddedToLayout(aura::Window* child) {
34 void FillLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) {
36 void FillLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) {
38 void FillLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child,
41 void FillLayoutManager::SetChildBounds(aura::Window* child,
  /external/chromium_org/chrome/browser/ui/views/tabs/
window_finder_ash.cc 9 #include "ui/aura/window.h"
10 #include "ui/aura/window_event_dispatcher.h"
14 aura::Window* GetLocalProcessWindowAtPointImpl(
17 aura::Window* window) {
32 for (aura::Window::Windows::const_reverse_iterator i =
34 aura::Window* result =
44 aura::Window* GetLocalProcessWindowAtPointAsh(
46 const std::set<aura::Window*>& ignore) {
  /external/chromium_org/mojo/services/view_manager/
DEPS 3 "+mojo/aura",
8 "+ui/aura",
  /external/chromium_org/ui/aura/client/
cursor_client_observer.cc 5 // Added to make sure that something is built in aura with this
7 #include "ui/aura/client/cursor_client_observer.h"
capture_delegate.h 8 #include "ui/aura/aura_export.h"
10 namespace aura { namespace
22 virtual void UpdateCapture(aura::Window* old_capture,
23 aura::Window* new_capture) = 0;
37 } // namespace aura
  /external/chromium_org/ui/aura/test/
ui_controls_factory_aura.h 10 namespace aura { namespace
18 } // namespace aura
test_cursor_client.h 11 #include "ui/aura/client/cursor_client.h"
17 namespace aura { namespace
20 class TestCursorClient : public aura::client::CursorClient {
22 explicit TestCursorClient(aura::Window* root_window);
34 // Overridden from aura::client::CursorClient:
50 aura::client::CursorClientObserver* observer) OVERRIDE;
52 aura::client::CursorClientObserver* observer) OVERRIDE;
62 ObserverList<aura::client::CursorClientObserver> observers_;
63 aura::Window* root_window_;
69 } // namespace aura
    [all...]
  /external/chromium_org/ui/wm/core/
shadow_controller.h 16 namespace aura { namespace
35 public aura::client::ActivationChangeObserver {
42 Shadow* GetShadowForWindow(aura::Window* window);
50 explicit ShadowController(aura::client::ActivationClient* activation_client);
53 // aura::client::ActivationChangeObserver overrides:
54 virtual void OnWindowActivated(aura::Window* gained_active,
55 aura::Window* lost_active) OVERRIDE;
60 aura::client::ActivationClient* activation_client_;
capture_controller.cc 7 #include "ui/aura/window.h"
8 #include "ui/aura/window_event_dispatcher.h"
9 #include "ui/aura/window_tree_host.h"
16 void CaptureController::Attach(aura::Window* root) {
19 aura::client::SetCaptureClient(root, this);
22 void CaptureController::Detach(aura::Window* root) {
24 aura::client::SetCaptureClient(root, NULL);
28 // CaptureController, aura::client::CaptureClient implementation:
30 void CaptureController::SetCapture(aura::Window* new_capture_window) {
38 aura::Window* old_capture_window = capture_window_
    [all...]
masked_window_targeter.h 8 #include "ui/aura/window_targeter.h"
17 class WM_EXPORT MaskedWindowTargeter : public aura::WindowTargeter {
19 explicit MaskedWindowTargeter(aura::Window* masked_window);
25 virtual bool GetHitTestMask(aura::Window* window, gfx::Path* mask) const = 0;
33 aura::Window* masked_window_;
shadow_types.h 8 #include "ui/aura/window.h"
11 namespace aura { namespace
25 WM_EXPORT void SetShadowType(aura::Window* window, ShadowType shadow_type);
26 WM_EXPORT ShadowType GetShadowType(aura::Window* window);
30 extern const aura::WindowProperty<ShadowType>* const kShadowTypeKey;
visibility_controller_unittest.cc 7 #include "ui/aura/test/aura_test_base.h"
8 #include "ui/aura/test/test_window_delegate.h"
9 #include "ui/aura/test/test_windows.h"
10 #include "ui/aura/window.h"
11 #include "ui/aura/window_event_dispatcher.h"
19 typedef aura::test::AuraTestBase VisibilityControllerTest;
29 aura::client::SetVisibilityClient(root_window(), &controller);
33 aura::test::TestWindowDelegate d;
34 scoped_ptr<aura::Window> window(aura::test::CreateTestWindowWithDelegate
    [all...]
window_util_unittest.cc 8 #include "ui/aura/test/aura_test_base.h"
9 #include "ui/aura/test/test_windows.h"
10 #include "ui/aura/window.h"
16 typedef aura::test::AuraTestBase WindowUtilTest;
21 scoped_ptr<aura::Window> window1(
22 aura::test::CreateTestWindowWithId(0, NULL));
23 scoped_ptr<aura::Window> window11(
24 aura::test::CreateTestWindowWithId(1, window1.get()));
25 scoped_ptr<aura::Window> window12(
26 aura::test::CreateTestWindowWithId(2, window1.get()))
    [all...]
  /external/chromium_org/ui/wm/public/
transient_window_client.cc 7 namespace aura { namespace
25 } // namespace aura
scoped_tooltip_disabler.cc 7 #include "ui/aura/window.h"
10 namespace aura { namespace
13 ScopedTooltipDisabler::ScopedTooltipDisabler(aura::Window* window)
37 void ScopedTooltipDisabler::OnWindowDestroying(aura::Window* window) {
43 } // namespace aura
  /external/chromium_org/ash/drag_drop/
drag_drop_tracker.cc 10 #include "ui/aura/client/window_tree_client.h"
11 #include "ui/aura/window.h"
12 #include "ui/aura/window_event_dispatcher.h"
22 : public aura::client::ActivationDelegate {
27 // aura::client::ActivationDelegate overrides:
38 aura::Window* CreateCaptureWindow(aura::Window* context_root,
39 aura::WindowDelegate* delegate) {
43 aura::Window* window = new aura::Window(delegate)
    [all...]
  /external/chromium_org/ash/
root_window_settings.cc 7 #include "ui/aura/window_event_dispatcher.h"
8 #include "ui/aura/window_property.h"
23 RootWindowSettings* InitRootWindowSettings(aura::Window* root) {
29 RootWindowSettings* GetRootWindowSettings(aura::Window* root) {
33 const RootWindowSettings* GetRootWindowSettings(const aura::Window* root) {
  /external/chromium_org/ash/wm/
system_modal_container_event_filter.cc 8 #include "ui/aura/window.h"
22 aura::Window* target = static_cast<aura::Window*>(event->target());
29 aura::Window* target = static_cast<aura::Window*>(event->target());
coordinate_conversion.cc 9 #include "ui/aura/client/screen_position_client.h"
18 aura::Window* GetRootWindowAt(const gfx::Point& point) {
22 // TODO(yusukes): Move coordinate_conversion.cc and .h to ui/aura/ once
23 // GetRootWindowForDisplayId() is moved to aura::Env.
28 aura::Window* GetRootWindowMatching(const gfx::Rect& rect) {
34 void ConvertPointToScreen(const aura::Window* window, gfx::Point* point) {
35 CHECK(aura::client::GetScreenPositionClient(window->GetRootWindow()));
36 aura::client::GetScreenPositionClient(window->GetRootWindow())->
40 void ConvertPointFromScreen(const aura::Window* window,
42 aura::client::GetScreenPositionClient(window->GetRootWindow())-
    [all...]
root_window_layout_manager.cc 9 #include "ui/aura/window_event_dispatcher.h"
18 RootWindowLayoutManager::RootWindowLayoutManager(aura::Window* owner)
27 // RootWindowLayoutManager, aura::LayoutManager implementation:
35 aura::Window::Windows::const_iterator i;
38 aura::Window::Windows::const_iterator j;
55 void RootWindowLayoutManager::OnWindowAddedToLayout(aura::Window* child) {
59 aura::Window* child) {
62 void RootWindowLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) {
66 aura::Window* child,
71 aura::Window* child
    [all...]
stacking_controller_unittest.cc 10 #include "ui/aura/client/aura_constants.h"
11 #include "ui/aura/window.h"
12 #include "ui/aura/window_event_dispatcher.h"
15 using aura::Window;
24 aura::Window* CreateTestWindow() {
25 aura::Window* window = new aura::Window(NULL);
26 window->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL);
28 window->Init(aura::WINDOW_LAYER_TEXTURED);
42 aura::Window* launcher = Shell::GetContainer(Shell::GetPrimaryRootWindow()
    [all...]
  /external/chromium_org/ui/views/widget/
tooltip_manager_aura.cc 8 #include "ui/aura/client/screen_position_client.h"
9 #include "ui/aura/window_event_dispatcher.h"
10 #include "ui/aura/window_tree_host.h"
30 aura::client::SetTooltipText(GetWindow(), &tooltip_text_);
34 aura::client::SetTooltipText(GetWindow(), NULL);
48 aura::Window* root_window = source->GetNativeView()->GetRootWindow();
54 aura::client::ScreenPositionClient* screen_position_client =
55 aura::client::GetScreenPositionClient(root_window);
60 aura::Window* target = screen->GetWindowAtScreenPoint(screen_loc);
65 aura::client::GetScreenPositionClient(target->GetRootWindow())
    [all...]
  /external/chromium_org/ash/wm/panels/
panel_layout_manager.h 20 #include "ui/aura/layout_manager.h"
21 #include "ui/aura/window_observer.h"
26 namespace aura { namespace
54 : public aura::LayoutManager,
57 public aura::WindowObserver,
59 public aura::client::ActivationChangeObserver,
64 explicit PanelLayoutManager(aura::Window* panel_container);
70 void StartDragging(aura::Window* panel);
73 void ToggleMinimize(aura::Window* panel);
79 views::Widget* GetCalloutWidgetForPanel(aura::Window* panel)
    [all...]
  /external/chromium_org/ash/shelf/
shelf_util.h 10 #include "ui/aura/window.h"
12 namespace aura { namespace
19 extern const aura::WindowProperty<ShelfID>* const kShelfID;
23 extern const aura::WindowProperty<ShelfItemDetails*>* const
27 ASH_EXPORT void SetShelfIDForWindow(ShelfID id, aura::Window* window);
33 ASH_EXPORT ShelfID GetShelfIDForWindow(const aura::Window* window);
37 ASH_EXPORT void SetShelfItemDetailsForWindow(aura::Window* window,
42 ASH_EXPORT void SetShelfItemDetailsForDialogWindow(aura::Window* window,
48 ASH_EXPORT void ClearShelfItemDetailsForWindow(aura::Window* window);
53 aura::Window* window)
    [all...]
  /external/chromium_org/ash/wm/overview/
window_selector_panels.h 23 explicit WindowSelectorPanels(aura::Window* panels_root_window);
28 void AddWindow(aura::Window* window);
31 virtual aura::Window* GetRootWindow() OVERRIDE;
32 virtual bool HasSelectableWindow(const aura::Window* window) OVERRIDE;
33 virtual bool Contains(const aura::Window* target) OVERRIDE;
34 virtual void RestoreWindowOnExit(aura::Window* window) OVERRIDE;
35 virtual aura::Window* SelectionWindow() OVERRIDE;
36 virtual void RemoveWindow(const aura::Window* window) OVERRIDE;
39 virtual void SetItemBounds(aura::Window* root_window,
48 aura::Window* panels_root_window_
    [all...]

Completed in 169 milliseconds

1 2 3 45 6 7 8 91011>>