diff options
author | rathnor <rathnor> | 2003-02-09 14:11:14 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-02-09 14:11:14 (GMT) |
commit | e3b99d4e485591df52b2398fce9adbcece2b9917 (patch) | |
tree | 44c14c5160e07e1af0671e141ae99cc1f2e66609 /src/Window.hh | |
parent | 1a04cf1ce2649400d41c43024bd163a059cc426d (diff) | |
download | fluxbox-e3b99d4e485591df52b2398fce9adbcece2b9917.zip fluxbox-e3b99d4e485591df52b2398fce9adbcece2b9917.tar.bz2 |
fixing up of layer code
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/Window.hh b/src/Window.hh index 0abeb34..21959d5 100644 --- a/src/Window.hh +++ b/src/Window.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: Window.hh,v 1.44 2003/02/03 13:53:48 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.45 2003/02/09 14:11:13 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -126,8 +126,11 @@ public: | |||
126 | void shade(); | 126 | void shade(); |
127 | /// toggles sticky | 127 | /// toggles sticky |
128 | void stick(); | 128 | void stick(); |
129 | void lower(); | ||
130 | void raise(); | 129 | void raise(); |
130 | void lower(); | ||
131 | void raiseLayer(); | ||
132 | void lowerLayer(); | ||
133 | void moveToLayer(int layernum); | ||
131 | 134 | ||
132 | void reconfigure(); | 135 | void reconfigure(); |
133 | void installColormap(bool); | 136 | void installColormap(bool); |
@@ -332,10 +335,6 @@ private: | |||
332 | Time lastButtonPressTime; | 335 | Time lastButtonPressTime; |
333 | FbTk::Menu m_windowmenu; | 336 | FbTk::Menu m_windowmenu; |
334 | 337 | ||
335 | |||
336 | FbTk::XLayerItem m_layeritem; | ||
337 | int m_layernum; | ||
338 | |||
339 | timeval lastFocusTime; | 338 | timeval lastFocusTime; |
340 | 339 | ||
341 | int button_grab_x, button_grab_y; // handles last button press event for move | 340 | int button_grab_x, button_grab_y; // handles last button press event for move |
@@ -388,6 +387,9 @@ private: | |||
388 | m_last_button_y; ///< last known y position of the mouse button | 387 | m_last_button_y; ///< last known y position of the mouse button |
389 | FbWinFrame m_frame; | 388 | FbWinFrame m_frame; |
390 | 389 | ||
390 | FbTk::XLayerItem m_layeritem; | ||
391 | int m_layernum; | ||
392 | |||
391 | enum { F_NOINPUT = 0, F_PASSIVE, F_LOCALLYACTIVE, F_GLOBALLYACTIVE }; | 393 | enum { F_NOINPUT = 0, F_PASSIVE, F_LOCALLYACTIVE, F_GLOBALLYACTIVE }; |
392 | 394 | ||
393 | }; | 395 | }; |