aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-30 17:57:12 (GMT)
committerfluxgen <fluxgen>2003-12-30 17:57:12 (GMT)
commit35394a486cf9e08b585a532e885c462a4beddea1 (patch)
tree1858c8f640d24b59271677b5abdc6bcc3aac709d
parent8c8e4f0f4ac4c0e03c142e8f3929ad479f0df039 (diff)
downloadfluxbox_pavel-35394a486cf9e08b585a532e885c462a4beddea1.zip
fluxbox_pavel-35394a486cf9e08b585a532e885c462a4beddea1.tar.bz2
inline
-rw-r--r--src/Screen.hh28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 81ab652..114957e 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.hh,v 1.130 2003/12/19 01:46:58 fluxgen Exp $ 25// $Id: Screen.hh,v 1.131 2003/12/30 17:57:12 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -197,23 +197,23 @@ public:
197 inline WinButtonTheme &winButtonTheme() { return *m_winbutton_theme.get(); } 197 inline WinButtonTheme &winButtonTheme() { return *m_winbutton_theme.get(); }
198 inline const WinButtonTheme &winButtonTheme() const { return *m_winbutton_theme.get(); } 198 inline const WinButtonTheme &winButtonTheme() const { return *m_winbutton_theme.get(); }
199 199
200 FbRootWindow &rootWindow() { return m_root_window; } 200 inline FbRootWindow &rootWindow() { return m_root_window; }
201 const FbRootWindow &rootWindow() const { return m_root_window; } 201 inline const FbRootWindow &rootWindow() const { return m_root_window; }
202 202
203 FbTk::MultLayers &layerManager() { return m_layermanager; } 203 inline FbTk::MultLayers &layerManager() { return m_layermanager; }
204 const FbTk::MultLayers &layerManager() const { return m_layermanager; } 204 inline const FbTk::MultLayers &layerManager() const { return m_layermanager; }
205 FbTk::ResourceManager &resourceManager() { return m_resource_manager; } 205 inline FbTk::ResourceManager &resourceManager() { return m_resource_manager; }
206 const FbTk::ResourceManager &resourceManager() const { return m_resource_manager; } 206 inline const FbTk::ResourceManager &resourceManager() const { return m_resource_manager; }
207 const std::string &name() const { return m_name; } 207 inline const std::string &name() const { return m_name; }
208 const std::string &altName() const { return m_altname; } 208 inline const std::string &altName() const { return m_altname; }
209 bool isShuttingdown() const { return m_shutdown; } 209 inline bool isShuttingdown() const { return m_shutdown; }
210 210
211 211
212 int addWorkspace(); 212 int addWorkspace();
213 int removeLastWorkspace(); 213 int removeLastWorkspace();
214 // scroll workspaces 214 // scroll workspaces
215 void nextWorkspace() { nextWorkspace(1); } 215 inline void nextWorkspace() { nextWorkspace(1); }
216 void prevWorkspace() { prevWorkspace(1); } 216 inline void prevWorkspace() { prevWorkspace(1); }
217 void nextWorkspace(int delta); 217 void nextWorkspace(int delta);
218 void prevWorkspace(int delta); 218 void prevWorkspace(int delta);
219 void rightWorkspace(int delta); 219 void rightWorkspace(int delta);
@@ -237,8 +237,8 @@ public:
237 bool changeworkspace=true); 237 bool changeworkspace=true);
238 void reassociateWindow(FluxboxWindow *window, unsigned int workspace_id, 238 void reassociateWindow(FluxboxWindow *window, unsigned int workspace_id,
239 bool ignore_sticky); 239 bool ignore_sticky);
240 void prevFocus() { prevFocus(0); } 240 inline void prevFocus() { prevFocus(0); }
241 void nextFocus() { nextFocus(0); } 241 inline void nextFocus() { nextFocus(0); }
242 void prevFocus(int options); 242 void prevFocus(int options);
243 void nextFocus(int options); 243 void nextFocus(int options);
244 void raiseFocus(); 244 void raiseFocus();