1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
6 @brief The main class for the Openbox window manager
17 #include "otk/screeninfo.hh"
18 #include "otk/timerqueuemanager.hh"
19 #include "otk/property.hh"
20 #include "otk/configuration.hh"
21 #include "otk/eventdispatcher.hh"
22 #include "otk/eventhandler.hh"
31 //! Mouse cursors used throughout Openbox
33 Cursor session
; //!< The default mouse cursor
34 Cursor move
; //!< For moving a window
35 Cursor ll_angle
; //!< For resizing the bottom left corner of a window
36 Cursor lr_angle
; //!< For resizing the bottom right corner of a window
37 Cursor ul_angle
; //!< For resizing the top left corner of a window
38 Cursor ur_angle
; //!< For resizing the right corner of a window
42 //! The main class for the Openbox window manager
44 Only a single instance of the Openbox class may be used in the application. A
45 pointer to this instance is held in the Openbox::instance static member
47 Instantiation of this class begins the window manager. After instantiation,
48 the Openbox::eventLoop function should be called. The eventLoop method does
49 not exit until the window manager is ready to be destroyed. Destruction of
50 the Openbox class instance will shutdown the window manager.
52 class Openbox
: public otk::OtkEventDispatcher
, public otk::OtkEventHandler
55 //! The single instance of the Openbox class for the application
57 Since this variable is globally available in the application, the Openbox
58 class does not need to be passed around to any of the other classes.
60 static Openbox
*instance
;
62 //! The posible running states of the window manager
64 State_Starting
, //!< The window manager is starting up (being created)
65 State_Normal
, //!< The window manager is running in its normal state
66 State_Exiting
//!< The window manager is exiting (being destroyed)
69 //! A map for looking up a specific client class from the window id
70 typedef std::map
<Window
, OBClient
*> ClientMap
;
72 //! A list of OBScreen classes
73 typedef std::vector
<OBScreen
*> ScreenList
;
76 // stuff that can be passed on the command line
77 //! Path to the config file to use/in use
79 Defaults to $(HOME)/.openbox/rc3
81 std::string _rcfilepath
;
82 //! Path to the menu file to use/in use
84 Defaults to $(HOME)/.openbox/menu3
86 std::string _menufilepath
;
87 //! Path to the script file to execute on startup
89 Defaults to $(HOME)/.openbox/user.py
91 std::string _scriptfilepath
;
92 //! The display requested by the user, or null to use the DISPLAY env var
94 //! The value of argv[0], i.e. how this application was executed
97 //! A list of all managed clients
100 //! A list of all the managed screens
103 //! Manages all timers for the application
105 Use of the otk::OBTimerQueueManager::fire funtion in this object ensures
106 that all timers fire when their times elapse.
108 otk::OBTimerQueueManager _timermanager
;
110 //! Cached atoms on the display
112 This is a pointer because the OBProperty class uses otk::OBDisplay::display
113 in its constructor, so, it needs to be initialized <b>after</b> the display
114 is initialized in this class' constructor.
116 otk::OBProperty
*_property
;
118 //! The action interface through which all user-available actions occur
121 //! The interface through which keys/buttons are grabbed and handled
122 OBBindings
*_bindings
;
124 //! Run the application in synchronous mode? (for debugging)
127 //! The running state of the window manager
130 //! Mouse cursors used throughout Openbox
133 //! When set to true, the Openbox::eventLoop function will stop and return
136 //! The client with input focus
138 Updated by the clients themselves.
140 OBClient
*_focused_client
;
142 //! The screen with input focus
144 Updated by the clients when they update the Openbox::focused_client
147 OBScreen
*_focused_screen
;
149 //! Parses the command line used when executing this application
150 void parseCommandLine(int argv
, char **argv
);
151 //! Displays the version string to stdout
153 //! Displays usage information and help to stdout
156 //! Handles signal events for the application
157 static void signalHandler(int signal
);
161 //! Openbox constructor.
163 \param argc Number of command line arguments, as received in main()
164 \param argv The command line arguments, as received in main()
166 Openbox(int argc
, char **argv
);
167 //! Openbox destructor.
171 //! Returns the state of the window manager (starting, exiting, etc)
172 inline RunState
state() const { return _state
; }
174 //! Returns the otk::OBTimerQueueManager for the application
176 All otk::OBTimer objects used in the application should be made to use this
177 otk::OBTimerQueueManager.
179 inline otk::OBTimerQueueManager
*timerManager() { return &_timermanager
; }
181 //! Returns the otk::OBProperty instance for the window manager
182 inline const otk::OBProperty
*property() const { return _property
; }
184 //! Returns the OBActions instance for the window manager
185 inline OBActions
*actions() const { return _actions
; }
187 //! Returns the OBBindings instance for the window manager
188 inline OBBindings
*bindings() const { return _bindings
; }
190 //! Returns a managed screen
191 inline OBScreen
*screen(int num
) {
192 assert(num
>= 0); assert(num
< (signed)_screens
.size());
193 if (num
>= screenCount())
195 return _screens
[num
];
198 //! Returns the number of managed screens
199 inline int screenCount() const {
200 return (signed)_screens
.size();
203 //! Returns the mouse cursors used throughout Openbox
204 inline const Cursors
&cursors() const { return _cursors
; }
207 //! The main function of the Openbox class
209 This function should be called after instantiating the Openbox class.
210 It loops indefinately while handling all events for the application.
211 The Openbox::shutdown method will cause this function to exit.
216 //! Adds an OBClient to the client list for lookups
217 void addClient(Window window
, OBClient
*client
);
219 //! Removes an OBClient from the client list for lookups
220 void removeClient(Window window
);
222 //! Finds an OBClient based on its window id
223 OBClient
*findClient(Window window
);
225 //! The client with input focus
226 inline OBClient
*focusedClient() { return _focused_client
; }
228 //! Change the client which has focus.
230 This is called by the clients themselves when their focus state changes.
232 void setFocusedClient(OBClient
*c
);
234 //! The screen with input focus
235 inline OBScreen
*focusedScreen() { return _focused_screen
; }
237 //! Requests that the window manager exit
239 Causes the Openbox::eventLoop function to stop looping, so that the window
240 manager can be destroyed.
242 inline void shutdown() { _doshutdown
= true; }
247 #endif // __openbox_hh