aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh14
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};