OLD | NEW |
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WINDOW_MANAGER_WINDOW_MANAGER_H_ | 5 #ifndef WINDOW_MANAGER_WINDOW_MANAGER_H_ |
6 #define 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 <string> | 10 #include <string> |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 class WmIpc; | 53 class WmIpc; |
54 template<class T> class Stacker; | 54 template<class T> class Stacker; |
55 | 55 |
56 class WindowManager : public PanelManagerAreaChangeListener, | 56 class WindowManager : public PanelManagerAreaChangeListener, |
57 public CompositionChangeListener { | 57 public CompositionChangeListener { |
58 public: | 58 public: |
59 // Visibility groups that actors can be added to. | 59 // Visibility groups that actors can be added to. |
60 // See Compositor::SetActiveVisibilityGroups(). | 60 // See Compositor::SetActiveVisibilityGroups(). |
61 enum VisibilityGroups { | 61 enum VisibilityGroups { |
62 VISIBILITY_GROUP_SCREEN_LOCKER = 1, | 62 VISIBILITY_GROUP_SCREEN_LOCKER = 1, |
63 VISIBILITY_GROUP_SHUTDOWN = 2, | 63 VISIBILITY_GROUP_SESSION_ENDING = 2, |
64 }; | 64 }; |
65 | 65 |
66 WindowManager(EventLoop* event_loop, | 66 WindowManager(EventLoop* event_loop, |
67 XConnection* xconn, | 67 XConnection* xconn, |
68 Compositor* compositor, | 68 Compositor* compositor, |
69 DBusInterface* dbus); | 69 DBusInterface* dbus); |
70 virtual ~WindowManager(); | 70 virtual ~WindowManager(); |
71 | 71 |
72 void set_initialize_logging(bool should_init) { | 72 void set_initialize_logging(bool should_init) { |
73 initialize_logging_ = should_init; | 73 initialize_logging_ = should_init; |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 | 287 |
288 // Minimum number of seconds between updates to the | 288 // Minimum number of seconds between updates to the |
289 // _CHROME_VIDEO_TIME property on the root window. | 289 // _CHROME_VIDEO_TIME property on the root window. |
290 static const int kVideoTimePropertyUpdateSec; | 290 static const int kVideoTimePropertyUpdateSec; |
291 | 291 |
292 // Is this one of our internally-created windows? | 292 // Is this one of our internally-created windows? |
293 bool IsInternalWindow(XWindow xid) { | 293 bool IsInternalWindow(XWindow xid) { |
294 return (xid == stage_xid_ || xid == overlay_xid_ || xid == wm_xid_); | 294 return (xid == stage_xid_ || xid == overlay_xid_ || xid == wm_xid_); |
295 } | 295 } |
296 | 296 |
297 // Are we in the process of shutting down? | 297 // Are we in the process of shutting down or signing out? |
298 bool IsShuttingDown() const; | 298 bool IsSessionEnding() const; |
299 | 299 |
300 // Get a manager selection as described in ICCCM section 2.8. 'atom' is | 300 // Get a manager selection as described in ICCCM section 2.8. 'atom' is |
301 // the selection to take, 'manager_win' is the window acquiring the | 301 // the selection to take, 'manager_win' is the window acquiring the |
302 // selection, and 'timestamp' is the current time. | 302 // selection, and 'timestamp' is the current time. |
303 bool GetManagerSelection( | 303 bool GetManagerSelection( |
304 XAtom atom, XWindow manager_win, XTime timestamp); | 304 XAtom atom, XWindow manager_win, XTime timestamp); |
305 | 305 |
306 // Tell the previous window and compositing managers to exit and register | 306 // Tell the previous window and compositing managers to exit and register |
307 // ourselves as the new managers. | 307 // ourselves as the new managers. |
308 bool RegisterExistence(); | 308 bool RegisterExistence(); |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 | 575 |
576 // Id for the timeout that calls PingChrome(). | 576 // Id for the timeout that calls PingChrome(). |
577 int chrome_watchdog_timeout_id_; | 577 int chrome_watchdog_timeout_id_; |
578 | 578 |
579 DISALLOW_COPY_AND_ASSIGN(WindowManager); | 579 DISALLOW_COPY_AND_ASSIGN(WindowManager); |
580 }; | 580 }; |
581 | 581 |
582 } // namespace window_manager | 582 } // namespace window_manager |
583 | 583 |
584 #endif // WINDOW_MANAGER_WINDOW_MANAGER_H_ | 584 #endif // WINDOW_MANAGER_WINDOW_MANAGER_H_ |
OLD | NEW |