OLD | NEW |
1 // Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium OS 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 __PLATFORM_WINDOW_MANAGER_WINDOW_MANAGER_H__ | 5 #ifndef WINDOW_MANAGER_WINDOW_MANAGER_H_ |
6 #define __PLATFORM_WINDOW_MANAGER_WINDOW_MANAGER_H__ | 6 #define WINDOW_MANAGER_WINDOW_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <vector> | 10 #include <vector> |
11 #include <tr1/memory> | 11 #include <tr1/memory> |
12 | 12 |
13 extern "C" { | 13 extern "C" { |
14 #include <X11/Xlib.h> | 14 #include <X11/Xlib.h> |
15 #include <X11/extensions/shape.h> | 15 #include <X11/extensions/shape.h> |
16 #include <X11/extensions/Xrandr.h> | 16 #include <X11/extensions/Xrandr.h> |
17 } | 17 } |
18 | 18 |
19 #include <gtest/gtest_prod.h> // for FRIEND_TEST() macro | 19 #include <gtest/gtest_prod.h> // for FRIEND_TEST() macro |
20 | 20 |
21 #include "base/scoped_ptr.h" | 21 #include "base/scoped_ptr.h" |
22 #include "window_manager/atom_cache.h" // for Atom enum | 22 #include "window_manager/atom_cache.h" // for Atom enum |
23 #include "window_manager/clutter_interface.h" | 23 #include "window_manager/clutter_interface.h" |
24 | 24 |
25 typedef ::Atom XAtom; | 25 typedef ::Atom XAtom; |
26 typedef ::Window XWindow; | 26 typedef ::Window XWindow; |
27 | 27 |
28 namespace chromeos { | 28 namespace window_manager { |
29 | 29 |
30 class EventConsumer; | 30 class EventConsumer; |
31 class HotkeyOverlay; | 31 class HotkeyOverlay; |
32 class KeyBindings; | 32 class KeyBindings; |
33 class LayoutManager; | 33 class LayoutManager; |
34 class MetricsReporter; | 34 class MetricsReporter; |
35 class PanelBar; | 35 class PanelBar; |
36 class StackingManager; | 36 class StackingManager; |
37 class Window; | 37 class Window; |
38 class WmIpc; | 38 class WmIpc; |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 291 |
292 // Is the hotkey overlay currently being shown? | 292 // Is the hotkey overlay currently being shown? |
293 bool showing_hotkey_overlay_; | 293 bool showing_hotkey_overlay_; |
294 | 294 |
295 // Shows overlayed images containing hotkeys. | 295 // Shows overlayed images containing hotkeys. |
296 scoped_ptr<HotkeyOverlay> hotkey_overlay_; | 296 scoped_ptr<HotkeyOverlay> hotkey_overlay_; |
297 | 297 |
298 DISALLOW_COPY_AND_ASSIGN(WindowManager); | 298 DISALLOW_COPY_AND_ASSIGN(WindowManager); |
299 }; | 299 }; |
300 | 300 |
301 } // namespace chromeos | 301 } // namespace window_manager |
302 | 302 |
303 #endif | 303 #endif |
OLD | NEW |