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

Side by Side Diff: ui/aura/root_window_host_linux.h

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « ui/aura/root_window_host.h ('k') | ui/aura/root_window_host_linux.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_AURA_ROOT_WINDOW_HOST_LINUX_H_ 5 #ifndef UI_AURA_ROOT_WINDOW_HOST_LINUX_H_
6 #define UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ 6 #define UI_AURA_ROOT_WINDOW_HOST_LINUX_H_
7 #pragma once 7 #pragma once
8 8
9 #include <X11/Xlib.h> 9 #include <X11/Xlib.h>
10 10
(...skipping 25 matching lines...) Expand all
36 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; 36 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE;
37 virtual void SetCapture() OVERRIDE; 37 virtual void SetCapture() OVERRIDE;
38 virtual void ReleaseCapture() OVERRIDE; 38 virtual void ReleaseCapture() OVERRIDE;
39 virtual void SetCursor(gfx::NativeCursor cursor_type) OVERRIDE; 39 virtual void SetCursor(gfx::NativeCursor cursor_type) OVERRIDE;
40 virtual void ShowCursor(bool show) OVERRIDE; 40 virtual void ShowCursor(bool show) OVERRIDE;
41 virtual gfx::Point QueryMouseLocation() OVERRIDE; 41 virtual gfx::Point QueryMouseLocation() OVERRIDE;
42 virtual bool ConfineCursorToRootWindow() OVERRIDE; 42 virtual bool ConfineCursorToRootWindow() OVERRIDE;
43 virtual void UnConfineCursor() OVERRIDE; 43 virtual void UnConfineCursor() OVERRIDE;
44 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE; 44 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
45 virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE; 45 virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE;
46 virtual NativeHandle GetNativeWindow() const OVERRIDE;
46 47
47 // Returns true if there's an X window manager present... in most cases. Some 48 // Returns true if there's an X window manager present... in most cases. Some
48 // window managers (notably, ion3) don't implement enough of ICCCM for us to 49 // window managers (notably, ion3) don't implement enough of ICCCM for us to
49 // detect that they're there. 50 // detect that they're there.
50 bool IsWindowManagerPresent(); 51 bool IsWindowManagerPresent();
51 52
52 // Sets the cursor on |xwindow_| to |cursor|. Does not check or update 53 // Sets the cursor on |xwindow_| to |cursor|. Does not check or update
53 // |current_cursor_|. 54 // |current_cursor_|.
54 void SetCursorInternal(gfx::NativeCursor cursor); 55 void SetCursorInternal(gfx::NativeCursor cursor);
55 56
(...skipping 17 matching lines...) Expand all
73 74
74 // The bounds of |xwindow_|. 75 // The bounds of |xwindow_|.
75 gfx::Rect bounds_; 76 gfx::Rect bounds_;
76 77
77 DISALLOW_COPY_AND_ASSIGN(RootWindowHostLinux); 78 DISALLOW_COPY_AND_ASSIGN(RootWindowHostLinux);
78 }; 79 };
79 80
80 } // namespace aura 81 } // namespace aura
81 82
82 #endif // UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ 83 #endif // UI_AURA_ROOT_WINDOW_HOST_LINUX_H_
OLDNEW
« no previous file with comments | « ui/aura/root_window_host.h ('k') | ui/aura/root_window_host_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698