aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Window.hh14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/Window.hh b/src/Window.hh
index 573739d..7ae8ec2 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.87 2003/07/26 16:17:02 rathnor Exp $ 25// $Id: Window.hh,v 1.88 2003/07/28 12:42:32 fluxgen Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -165,6 +165,8 @@ public:
165 WinClient *findClient(Window win); 165 WinClient *findClient(Window win);
166 void nextClient(); 166 void nextClient();
167 void prevClient(); 167 void prevClient();
168 void moveClientLeft();
169 void moveClientRight();
168 170
169 bool validateClient(); 171 bool validateClient();
170 bool setInputFocus(); 172 bool setInputFocus();
@@ -200,7 +202,7 @@ public:
200 void moveToLayer(int layernum); 202 void moveToLayer(int layernum);
201 203
202 void reconfigure(); 204 void reconfigure();
203 void setupWindow(); 205
204 206
205 void installColormap(bool); 207 void installColormap(bool);
206 void restore(WinClient *client, bool remap); 208 void restore(WinClient *client, bool remap);
@@ -355,16 +357,16 @@ public:
355 FluxboxWindow &m_win; 357 FluxboxWindow &m_win;
356 }; 358 };
357 359
358 bool oplock; // Used to help stop transient loops occurring by locking a window 360 bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations
359 // during certain operations
360
361private: 361private:
362 static const int PropBlackboxAttributesElements = 8; 362 static const int PropBlackboxAttributesElements = 8;
363 363
364 void setupWindow();
365
364 void init(); 366 void init();
365 /// applies a shape mask to the window if it has one 367 /// applies a shape mask to the window if it has one
366 void shape(); 368 void shape();
367 369 void updateClientLeftWindow();
368 void grabButtons(); 370 void grabButtons();
369 371
370 void startMoving(Window win); 372 void startMoving(Window win);