aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-06-24 14:57:54 (GMT)
committerfluxgen <fluxgen>2003-06-24 14:57:54 (GMT)
commit4d389149bce961f531a17079bd3fe42e8d938fd0 (patch)
tree23caff252e9a331dccbb038ed0cf718bed3d191f /src/Window.hh
parent225dc75dd9c85f573c9be95e87f3eb4acadc4ddc (diff)
downloadfluxbox-4d389149bce961f531a17079bd3fe42e8d938fd0.zip
fluxbox-4d389149bce961f531a17079bd3fe42e8d938fd0.tar.bz2
minor cleaning, removed window number
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Window.hh b/src/Window.hh
index 1ffdb82..d7a6769 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.80 2003/06/23 14:16:05 rathnor Exp $ 25// $Id: Window.hh,v 1.81 2003/06/24 14:57:06 fluxgen Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -138,8 +138,6 @@ public:
138 void nextClient(); 138 void nextClient();
139 void prevClient(); 139 void prevClient();
140 140
141 void setWindowNumber(int n) { m_window_number = n; }
142
143 bool validateClient(); 141 bool validateClient();
144 bool setInputFocus(); 142 bool setInputFocus();
145 void raiseAndFocus() { raise(); setInputFocus(); } 143 void raiseAndFocus() { raise(); setInputFocus(); }
@@ -292,7 +290,7 @@ public:
292 int x() const; 290 int x() const;
293 int y() const; 291 int y() const;
294 unsigned int workspaceNumber() const { return m_workspace_number; } 292 unsigned int workspaceNumber() const { return m_workspace_number; }
295 int windowNumber() const { return m_window_number; } 293
296 int layerNum() const { return m_layernum; } 294 int layerNum() const { return m_layernum; }
297 void setLayerNum(int layernum); 295 void setLayerNum(int layernum);
298 296
@@ -405,7 +403,6 @@ private:
405 int m_last_move_x, m_last_move_y; // handles last pos for non opaque moving 403 int m_last_move_x, m_last_move_y; // handles last pos for non opaque moving
406 unsigned int m_last_resize_h, m_last_resize_w; // handles height/width for resize "window" 404 unsigned int m_last_resize_h, m_last_resize_w; // handles height/width for resize "window"
407 405
408 int m_window_number;
409 unsigned int m_workspace_number; 406 unsigned int m_workspace_number;
410 unsigned long m_current_state; 407 unsigned long m_current_state;
411 408