]> icculus.org git repositories - mikachu/openbox.git/blob - src/Workspace.cc
using a Screen reference instead of pointer in Workspace
[mikachu/openbox.git] / src / Workspace.cc
1 // Workspace.cc for Openbox
2 // Copyright (c) 2002 - 2002 Ben Jansens (ben@orodu.net)
3 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 // stupid macros needed to access some functions in version 2 of the GNU C
25 // library
26 #ifndef   _GNU_SOURCE
27 #define   _GNU_SOURCE
28 #endif // _GNU_SOURCE
29
30 #ifdef    HAVE_CONFIG_H
31 #  include "../config.h"
32 #endif // HAVE_CONFIG_H
33
34 #include <X11/Xlib.h>
35 #include <X11/Xatom.h>
36
37 #include "i18n.h"
38 #include "openbox.h"
39 #include "Clientmenu.h"
40 #include "Screen.h"
41 #include "Toolbar.h"
42 #include "Window.h"
43 #include "Workspace.h"
44 #include "Windowmenu.h"
45 #include "Geometry.h"
46
47 #ifdef    HAVE_STDIO_H
48 #  include <stdio.h>
49 #endif // HAVE_STDIO_H
50
51 #ifdef    HAVE_STDLIB_H
52 #  include <stdlib.h>
53 #endif // HAVE_STDLIB_H
54
55 #ifdef    STDC_HEADERS
56 #  include <string.h>
57 #endif // STDC_HEADERS
58
59 #include <vector>
60 typedef vector<Rect> rectList;
61
62 Workspace::Workspace(BScreen &scrn, int i) : screen(scrn) {
63
64   cascade_x = cascade_y = 32;
65
66   id = i;
67
68   stackingList = new LinkedList<OpenboxWindow>;
69   windowList = new LinkedList<OpenboxWindow>;
70   clientmenu = new Clientmenu(*this);
71
72   lastfocus = (OpenboxWindow *) 0;
73
74   name = (char *) 0;
75   char *tmp = screen.getNameOfWorkspace(id);
76   setName(tmp);
77 }
78
79
80 Workspace::~Workspace(void) {
81   delete stackingList;
82   delete windowList;
83   delete clientmenu;
84
85   if (name)
86     delete [] name;
87 }
88
89
90 const int Workspace::addWindow(OpenboxWindow *w, Bool place) {
91   if (! w) return -1;
92
93   if (place) placeWindow(w);
94
95   w->setWorkspace(id);
96   w->setWindowNumber(windowList->count());
97
98   stackingList->insert(w, 0);
99   windowList->insert(w);
100
101   clientmenu->insert((const char **) w->getTitle());
102   clientmenu->update();
103
104   screen.updateNetizenWindowAdd(w->getClientWindow(), id);
105
106   raiseWindow(w);
107
108   return w->getWindowNumber();
109 }
110
111
112 const int Workspace::removeWindow(OpenboxWindow *w) {
113   if (! w) return -1;
114
115   stackingList->remove(w);
116
117   if (w->isFocused()) {
118     if (w->isTransient() && w->getTransientFor() &&
119         w->getTransientFor()->isVisible()) {
120       w->getTransientFor()->setInputFocus();
121     } else if (screen.isSloppyFocus()) {
122       screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0);
123     } else {
124       OpenboxWindow *top = stackingList->first();
125       if (! top || ! top->setInputFocus()) {
126         screen.getOpenbox().setFocusedWindow((OpenboxWindow *) 0);
127         XSetInputFocus(screen.getOpenbox().getXDisplay(),
128                        screen.getToolbar()->getWindowID(),
129                        RevertToParent, CurrentTime);
130       }
131     }
132   }
133   
134   if (lastfocus == w)
135     lastfocus = (OpenboxWindow *) 0;
136
137   windowList->remove(w->getWindowNumber());
138   clientmenu->remove(w->getWindowNumber());
139   clientmenu->update();
140
141   screen.updateNetizenWindowDel(w->getClientWindow());
142
143   LinkedListIterator<OpenboxWindow> it(windowList);
144   OpenboxWindow *bw = it.current();
145   for (int i = 0; bw; it++, i++, bw = it.current())
146     bw->setWindowNumber(i);
147
148   return windowList->count();
149 }
150
151
152 void Workspace::showAll(void) {
153   LinkedListIterator<OpenboxWindow> it(stackingList);
154   for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
155     bw->deiconify(False, False);
156 }
157
158
159 void Workspace::hideAll(void) {
160   LinkedList<OpenboxWindow> lst;
161
162   LinkedListIterator<OpenboxWindow> it(stackingList);
163   for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
164     lst.insert(bw, 0);
165
166   LinkedListIterator<OpenboxWindow> it2(&lst);
167   for (OpenboxWindow *bw = it2.current(); bw; it2++, bw = it2.current())
168     if (! bw->isStuck())
169       bw->withdraw();
170 }
171
172
173 void Workspace::removeAll(void) {
174   LinkedListIterator<OpenboxWindow> it(windowList);
175   for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current())
176     bw->iconify();
177 }
178
179
180 void Workspace::raiseWindow(OpenboxWindow *w) {
181   OpenboxWindow *win = (OpenboxWindow *) 0, *bottom = w;
182
183   while (bottom->isTransient() && bottom->getTransientFor())
184     bottom = bottom->getTransientFor();
185
186   int i = 1;
187   win = bottom;
188   while (win->hasTransient() && win->getTransient()) {
189     win = win->getTransient();
190
191     i++;
192   }
193
194   Window *nstack = new Window[i], *curr = nstack;
195   Workspace *wkspc;
196
197   win = bottom;
198   while (True) {
199     *(curr++) = win->getFrameWindow();
200     screen.updateNetizenWindowRaise(win->getClientWindow());
201
202     if (! win->isIconic()) {
203       wkspc = screen.getWorkspace(win->getWorkspaceNumber());
204       wkspc->stackingList->remove(win);
205       wkspc->stackingList->insert(win, 0);
206     }
207
208     if (! win->hasTransient() || ! win->getTransient())
209       break;
210
211     win = win->getTransient();
212   }
213
214   screen.raiseWindows(nstack, i);
215
216   delete [] nstack;
217 }
218
219
220 void Workspace::lowerWindow(OpenboxWindow *w) {
221   OpenboxWindow *win = (OpenboxWindow *) 0, *bottom = w;
222
223   while (bottom->isTransient() && bottom->getTransientFor())
224     bottom = bottom->getTransientFor();
225
226   int i = 1;
227   win = bottom;
228   while (win->hasTransient() && win->getTransient()) {
229     win = win->getTransient();
230
231     i++;
232   }
233
234   Window *nstack = new Window[i], *curr = nstack;
235   Workspace *wkspc;
236
237   while (True) {
238     *(curr++) = win->getFrameWindow();
239     screen.updateNetizenWindowLower(win->getClientWindow());
240
241     if (! win->isIconic()) {
242       wkspc = screen.getWorkspace(win->getWorkspaceNumber());
243       wkspc->stackingList->remove(win);
244       wkspc->stackingList->insert(win);
245     }
246
247     if (! win->getTransientFor())
248       break;
249
250     win = win->getTransientFor();
251   }
252
253   screen.getOpenbox().grab();
254
255   XLowerWindow(screen.getBaseDisplay().getXDisplay(), *nstack);
256   XRestackWindows(screen.getBaseDisplay().getXDisplay(), nstack, i);
257
258   screen.getOpenbox().ungrab();
259
260   delete [] nstack;
261 }
262
263
264 void Workspace::reconfigure(void) {
265   clientmenu->reconfigure();
266
267   LinkedListIterator<OpenboxWindow> it(windowList);
268   for (OpenboxWindow *bw = it.current(); bw; it++, bw = it.current()) {
269     if (bw->validateClient())
270       bw->reconfigure();
271   }
272 }
273
274
275 OpenboxWindow *Workspace::getWindow(int index) {
276   if ((index >= 0) && (index < windowList->count()))
277     return windowList->find(index);
278   else
279     return 0;
280 }
281
282
283 const int Workspace::getCount(void) {
284   return windowList->count();
285 }
286
287
288 void Workspace::update(void) {
289   clientmenu->update();
290   screen.getToolbar()->redrawWindowLabel(True);
291 }
292
293
294 Bool Workspace::isCurrent(void) {
295   return (id == screen.getCurrentWorkspaceID());
296 }
297
298
299 Bool Workspace::isLastWindow(OpenboxWindow *w) {
300   return (w == windowList->last());
301 }
302
303 void Workspace::setCurrent(void) {
304   screen.changeWorkspaceID(id);
305 }
306
307
308 void Workspace::setName(char *new_name) {
309   if (name)
310     delete [] name;
311
312   if (new_name) {
313     name = bstrdup(new_name);
314   } else {
315     name = new char[128];
316     sprintf(name, i18n->getMessage(WorkspaceSet, WorkspaceDefaultNameFormat,
317                                    "Workspace %d"), id + 1);
318   }
319   
320   clientmenu->setLabel(name);
321   clientmenu->update();
322 }
323
324
325 void Workspace::shutdown(void) {
326   while (windowList->count()) {
327     windowList->first()->restore();
328     delete windowList->first();
329   }
330 }
331
332 static rectList calcSpace(const OpenboxWindow &win, const rectList &spaces) {
333   rectList result;
334   rectList::const_iterator siter;
335   for(siter=spaces.begin(); siter!=spaces.end(); ++siter) {
336     if(win.getArea().Intersect(*siter)) {
337       //Check for space to the left of the window
338       if(win.getXFrame() > siter->x())
339         result.push_back(Rect(siter->x(), siter->y(),
340                               win.getXFrame() - siter->x() - 1,
341                               siter->h()));
342       //Check for space above the window
343       if(win.getYFrame() > siter->y())
344         result.push_back(Rect(siter->x(), siter->y(),
345                               siter->w(),
346                               win.getYFrame() - siter->y() - 1));
347       //Check for space to the right of the window
348       if((win.getXFrame()+win.getWidth()) <
349          (siter->x()+siter->w()))
350         result.push_back(Rect(win.getXFrame() + win.getWidth() + 1,
351                               siter->y(),
352                               siter->x() + siter->w() -
353                               win.getXFrame() - win.getWidth() - 1,
354                               siter->h()));
355       //Check for space below the window
356       if((win.getYFrame()+win.getHeight()) <
357          (siter->y()+siter->h()))
358         result.push_back(Rect(siter->x(),
359                               win.getYFrame() + win.getHeight() + 1,
360                               siter->w(),
361                               siter->y() + siter->h()-
362                               win.getYFrame() - win.getHeight() - 1));
363
364     }
365     else
366       result.push_back(*siter);
367   }
368   return result;
369 }
370
371 //BestFitPlacement finds the smallest free space that fits the window
372 //to be placed. It currentl ignores whether placement is right to left or top
373 //to bottom.
374 Point *Workspace::bestFitPlacement(const Size &win_size, const Rect &space)
375 {
376   const Rect *best;
377   rectList spaces;
378   LinkedListIterator<OpenboxWindow> it(windowList);
379   rectList::const_iterator siter;
380   spaces.push_back(space); //initially the entire screen is free
381   it.reset();
382   
383   //Find Free Spaces
384   for (OpenboxWindow *cur=it.current(); cur!=NULL; it++, cur=it.current())
385      spaces = calcSpace(*cur, spaces);
386   
387   //Find first space that fits the window
388   best = 0;
389   for (siter=spaces.begin(); siter!=spaces.end(); ++siter) {
390     if ((siter->w() >= win_size.w()) &&
391         (siter->h() >= win_size.h()))
392       best = siter;
393   }
394
395   if (best != 0)
396     return new Point(best->origin());
397   else
398     return new Point(200, 0);
399 }
400
401 inline Point *Workspace::rowSmartPlacement(const Size &win_size,
402                                            const Rect &space){
403   bool placed=false;
404   int test_x, test_y, place_x = 0, place_y = 0;
405   int start_pos = 0;
406   int change_y =
407      ((screen.getColPlacementDirection() == BScreen::TopBottom) ? 1 : -1);
408   int change_x =
409      ((screen.getRowPlacementDirection() == BScreen::LeftRight) ? 1 : -1);
410   int delta_x = 8, delta_y = 8;
411   LinkedListIterator<OpenboxWindow> it(windowList);
412
413   test_y = (screen.getColPlacementDirection() == BScreen::TopBottom) ?
414     start_pos : screen.getHeight() - win_size.h() - start_pos;
415
416   while(!placed &&
417         ((screen.getColPlacementDirection() == BScreen::BottomTop) ?
418          test_y > 0 : test_y + win_size.h() < (signed) space.h())) {
419      test_x = (screen.getRowPlacementDirection() == BScreen::LeftRight) ?
420               start_pos : space.w() - win_size.w() - start_pos;
421      while (!placed &&
422             ((screen.getRowPlacementDirection() == BScreen::RightLeft) ?
423              test_x > 0 : test_x + win_size.w() < (signed) space.w())) {
424         placed = true;
425     
426         it.reset();
427         for (OpenboxWindow *curr = it.current(); placed && curr;
428              it++, curr = it.current()) {
429            int curr_w = curr->getWidth() + (screen.getBorderWidth() * 4);
430            int curr_h =
431              ((curr->isShaded()) ? curr->getTitleHeight() : curr->getHeight()) +
432              (screen.getBorderWidth() * 4);
433    
434            if (curr->getXFrame() < test_x + win_size.w() &&
435                curr->getXFrame() + curr_w > test_x &&
436                curr->getYFrame() < test_y + win_size.h() &&
437                curr->getYFrame() + curr_h > test_y) {
438               placed = false;
439            }
440         }
441  
442         // Removed code for checking toolbar and slit
443         // The space passed in should not include either
444         
445         if (placed) {
446            place_x = test_x;
447            place_y = test_y;
448  
449            break;
450         }   
451         
452         test_x += (change_x * delta_x);
453      }
454
455      test_y += (change_y * delta_y);
456   }
457   return new Point(place_x, place_y);
458 }
459
460 void Workspace::placeWindow(OpenboxWindow *win) {
461   assert(win != NULL);
462
463   Bool placed = False;
464
465   const int win_w = win->getWidth() + (screen.getBorderWidth() * 4),
466     win_h = win->getHeight() + (screen.getBorderWidth() * 4),
467 #ifdef    SLIT
468     slit_x = screen.getSlit()->getX() - screen.getBorderWidth(),
469     slit_y = screen.getSlit()->getY() - screen.getBorderWidth(),
470     slit_w = screen.getSlit()->getWidth() +
471       (screen.getBorderWidth() * 4),
472     slit_h = screen.getSlit()->getHeight() +
473       (screen.getBorderWidth() * 4),
474 #endif // SLIT
475     toolbar_x = screen.getToolbar()->getX() - screen.getBorderWidth(),
476     toolbar_y = screen.getToolbar()->getY() - screen.getBorderWidth(),
477     toolbar_w = screen.getToolbar()->getWidth() +
478       (screen.getBorderWidth() * 4),
479     toolbar_h = screen.getToolbar()->getHeight() + 
480       (screen.getBorderWidth() * 4),
481     start_pos = 0,
482     change_y =
483       ((screen.getColPlacementDirection() == BScreen::TopBottom) ? 1 : -1),
484     change_x =
485       ((screen.getRowPlacementDirection() == BScreen::LeftRight) ? 1 : -1),
486     delta_x = 8, delta_y = 8;
487
488   int test_x, test_y, place_x = 0, place_y = 0;
489   LinkedListIterator<OpenboxWindow> it(windowList);
490
491   Rect space(0, 0,
492              screen.getWidth(),
493              screen.getHeight()
494             );
495   Size window_size(win_w, win_h);
496
497   switch (screen.getPlacementPolicy()) {
498   case BScreen::BestFitPlacement: {
499     Point *spot = bestFitPlacement(window_size, space);
500     if (spot != NULL) {
501       place_x=spot->x();
502       place_y=spot->y();
503       delete spot;
504       placed=true;
505     }
506     break;
507   }
508   case BScreen::RowSmartPlacement: {
509     Point *spot=rowSmartPlacement(window_size, space);
510     if (spot != NULL) {
511       place_x=spot->x();
512       place_y=spot->y();
513       delete spot;
514       placed=true;
515     }
516     break;
517   }
518
519   case BScreen::ColSmartPlacement: {
520     test_x = (screen.getRowPlacementDirection() == BScreen::LeftRight) ?
521       start_pos : screen.getWidth() - win_w - start_pos;
522
523     while (!placed &&
524            ((screen.getRowPlacementDirection() == BScreen::RightLeft) ?
525             test_x > 0 : test_x + win_w < (signed) screen.getWidth())) {
526       test_y = (screen.getColPlacementDirection() == BScreen::TopBottom) ?
527         start_pos : screen.getHeight() - win_h - start_pos;
528       
529       while (!placed &&
530              ((screen.getColPlacementDirection() == BScreen::BottomTop) ?
531               test_y > 0 : test_y + win_h < (signed) screen.getHeight())) {
532         placed = True;
533
534         it.reset();
535         for (OpenboxWindow *curr = it.current(); placed && curr;
536              it++, curr = it.current()) {
537           if (curr->isMaximizedFull()) // fully maximized, ignore it
538             continue;
539           int curr_w = curr->getWidth() + (screen.getBorderWidth() * 4);
540           int curr_h =
541             ((curr->isShaded()) ? curr->getTitleHeight() : curr->getHeight()) +
542             (screen.getBorderWidth() * 4);
543
544           if (curr->getXFrame() < test_x + win_w &&
545               curr->getXFrame() + curr_w > test_x &&
546               curr->getYFrame() < test_y + win_h &&
547               curr->getYFrame() + curr_h > test_y) {
548             placed = False;
549           }
550         }
551
552         if (placed &&
553             (toolbar_x < test_x + win_w &&
554              toolbar_x + toolbar_w > test_x &&
555              toolbar_y < test_y + win_h &&
556              toolbar_y + toolbar_h > test_y)
557 #ifdef    SLIT
558             ||
559             (slit_x < test_x + win_w &&
560              slit_x + slit_w > test_x &&
561              slit_y < test_y + win_h &&
562              slit_y + slit_h > test_y)
563 #endif // SLIT
564             )
565           placed = False;
566
567         if (placed) {
568           place_x = test_x;
569           place_y = test_y;
570
571           break;
572         }
573
574         test_y += (change_y * delta_y);
575       }
576
577       test_x += (change_x * delta_x);
578     }
579
580     break;
581   }
582   } // switch
583
584   if (! placed) {
585     if (((unsigned) cascade_x > (screen.getWidth() / 2)) ||
586         ((unsigned) cascade_y > (screen.getHeight() / 2)))
587       cascade_x = cascade_y = 32;
588
589     place_x = cascade_x;
590     place_y = cascade_y;
591
592     cascade_x += win->getTitleHeight();
593     cascade_y += win->getTitleHeight();
594   }
595   
596   if (place_x + win_w > (signed) screen.getWidth())
597     place_x = (((signed) screen.getWidth()) - win_w) / 2;
598   if (place_y + win_h > (signed) screen.getHeight())
599     place_y = (((signed) screen.getHeight()) - win_h) / 2;
600
601   win->configure(place_x, place_y, win->getWidth(), win->getHeight());
602 }