]> Dogcows Code - chaz/openbox/commitdiff
add functions to give the skipTaskbar/Pager state
authorDana Jansens <danakj@orodu.net>
Thu, 30 Jan 2003 22:58:12 +0000 (22:58 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 30 Jan 2003 22:58:12 +0000 (22:58 +0000)
src/client.cc
src/client.hh

index d2a75b6a4d0a152867aeca5d154cf973685c3ff7..52312f825160cb77a870a7ca62d8e08fc2b1d66c 100644 (file)
@@ -1203,7 +1203,7 @@ void Client::changeState()
   state[1] = None;
   otk::Property::set(_window, otk::Property::atoms.wm_state,
                      otk::Property::atoms.wm_state, state, 2);
-  
+
   Atom netstate[10];
   int num = 0;
   if (_modal)
index e70dc268b482480a7357e15ffd286ca315d4397a..d43984cbff9b1cb9a3cb9382081f9fdf4447568e 100644 (file)
@@ -549,7 +549,11 @@ BB    @param window The window id that the Client class should handle
     focus while it exists/remains modal.
   */
   inline bool modal() const { return _modal; }
-  //! Returns if the window is shaded
+  //! The window should not be displayed by pagers
+  inline bool skipPager() const { return _skip_pager; }
+  //! The window should not be displayed by taskbars
+  inline bool skipTaskbar() const { return _skip_taskbar; } 
+ //! Returns if the window is shaded
   /*!
     When the window is shaded, only its titlebar is visible.
   */
This page took 0.027298 seconds and 4 git commands to generate.