1 // openbox.cc for Openbox
2 // Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
3 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
23 // stupid macros needed to access some functions in version 2 of the GNU C
30 # include "../config.h"
31 #endif // HAVE_CONFIG_H
34 #include <X11/Xutil.h>
35 #include <X11/Xresource.h>
36 #include <X11/Xatom.h>
37 #include <X11/keysym.h>
40 #include <X11/extensions/shape.h>
46 #include "Clientmenu.h"
56 #include "Workspace.h"
57 #include "Workspacemenu.h"
65 #endif // HAVE_STDIO_H
69 #endif // HAVE_STDLIB_H
73 #endif // HAVE_STRING_H
76 # include <sys/types.h>
78 #endif // HAVE_UNISTD_H
80 #ifdef HAVE_SYS_PARAM_H
81 # include <sys/param.h>
82 #endif // HAVE_SYS_PARAM_H
85 #define MAXPATHLEN 255
88 #ifdef HAVE_SYS_SELECT_H
89 # include <sys/select.h>
90 #endif // HAVE_SYS_SELECT_H
94 #endif // HAVE_SIGNAL_H
96 #ifdef HAVE_SYS_SIGNAL_H
97 # include <sys/signal.h>
98 #endif // HAVE_SYS_SIGNAL_H
100 #ifdef HAVE_SYS_STAT_H
101 # include <sys/types.h>
102 # include <sys/stat.h>
103 #endif // HAVE_SYS_STAT_H
105 #ifdef TIME_WITH_SYS_TIME
106 # include <sys/time.h>
108 #else // !TIME_WITH_SYS_TIME
109 # ifdef HAVE_SYS_TIME_H
110 # include <sys/time.h>
111 # else // !HAVE_SYS_TIME_H
113 # endif // HAVE_SYS_TIME_H
114 #endif // TIME_WITH_SYS_TIME
118 #endif // HAVE_LIBGEN_H
120 #ifndef HAVE_BASENAME
121 static inline char *basename (char *s
) {
124 while (*s
) if (*s
++ == '/') save
= s
;
128 #endif // HAVE_BASENAME
131 // X event scanner for enter/leave notifies - adapted from twm
132 typedef struct scanargs
{
134 Bool leave
, inferior
, enter
;
137 static Bool
queueScanner(Display
*, XEvent
*e
, char *args
) {
138 if ((e
->type
== LeaveNotify
) &&
139 (e
->xcrossing
.window
== ((scanargs
*) args
)->w
) &&
140 (e
->xcrossing
.mode
== NotifyNormal
)) {
141 ((scanargs
*) args
)->leave
= True
;
142 ((scanargs
*) args
)->inferior
= (e
->xcrossing
.detail
== NotifyInferior
);
143 } else if ((e
->type
== EnterNotify
) &&
144 (e
->xcrossing
.mode
== NotifyUngrab
)) {
145 ((scanargs
*) args
)->enter
= True
;
154 Openbox::Openbox(int m_argc
, char **m_argv
, char *dpy_name
, char *rc
)
155 : BaseDisplay(m_argv
[0], dpy_name
) {
158 if (! XSupportsLocale())
159 fprintf(stderr
, "X server does not support locale\n");
161 if (XSetLocaleModifiers("") == NULL
)
162 fprintf(stderr
, "cannot set locale modifiers\n");
168 char *homedir
= getenv("HOME");
170 rc_file
= new char[strlen(homedir
) + strlen("/.openbox/rc") + 1];
171 sprintf(rc_file
, "%s/.openbox", homedir
);
173 // try to make sure the ~/.openbox directory exists
174 mkdir(rc_file
, S_IREAD
| S_IWRITE
| S_IEXEC
| S_IRGRP
| S_IWGRP
| S_IXGRP
|
175 S_IROTH
| S_IWOTH
| S_IXOTH
);
177 sprintf(rc_file
, "%s/.openbox/rc", homedir
);
179 rc_file
= bstrdup(rc
);
181 config
.setFile(rc_file
);
185 resource
.menu_file
= resource
.style_file
= NULL
;
186 resource
.titlebar_layout
= NULL
;
187 resource
.auto_raise_delay
.tv_sec
= resource
.auto_raise_delay
.tv_usec
= 0;
189 masked_window
= NULL
;
192 windowSearchList
= new LinkedList
<WindowSearch
>;
193 menuSearchList
= new LinkedList
<MenuSearch
>;
196 slitSearchList
= new LinkedList
<SlitSearch
>;
199 toolbarSearchList
= new LinkedList
<ToolbarSearch
>;
200 groupSearchList
= new LinkedList
<WindowSearch
>;
202 menuTimestamps
= new LinkedList
<MenuTimestamp
>;
207 openbox_pid
= XInternAtom(getXDisplay(), "_BLACKBOX_PID", False
);
208 #endif // HAVE_GETPID
210 screenList
= new LinkedList
<BScreen
>;
211 for (int i
= 0; i
< getNumberOfScreens(); i
++) {
212 BScreen
*screen
= new BScreen(*this, i
, config
);
214 if (! screen
->isScreenManaged()) {
219 screenList
->insert(screen
);
222 if (! screenList
->count()) {
224 i18n
->getMessage(openboxSet
, openboxNoManagableScreens
,
225 "Openbox::Openbox: no managable screens found, aborting.\n"));
228 focused_screen
= screenList
->first();
230 // save current settings and default values
233 XSynchronize(getXDisplay(), False
);
234 XSync(getXDisplay(), False
);
236 reconfigure_wait
= reread_menu_wait
= False
;
238 timer
= new BTimer(*this, *this);
239 timer
->setTimeout(0);
240 timer
->fireOnce(True
);
246 Openbox::~Openbox() {
247 while (screenList
->count())
248 delete screenList
->remove(0);
250 while (menuTimestamps
->count()) {
251 MenuTimestamp
*ts
= menuTimestamps
->remove(0);
254 delete [] ts
->filename
;
259 if (resource
.menu_file
)
260 delete [] resource
.menu_file
;
262 if (resource
.style_file
)
263 delete [] resource
.style_file
;
265 if (resource
.titlebar_layout
)
266 delete [] resource
.titlebar_layout
;
271 delete menuTimestamps
;
273 delete windowSearchList
;
274 delete menuSearchList
;
275 delete toolbarSearchList
;
276 delete groupSearchList
;
281 delete slitSearchList
;
286 void Openbox::process_event(XEvent
*e
) {
287 if ((masked
== e
->xany
.window
&& masked_window
) &&
288 (e
->type
== MotionNotify
)) {
289 last_time
= e
->xmotion
.time
;
290 masked_window
->motionNotifyEvent(&e
->xmotion
);
296 // strip the lock key modifiers
297 e
->xbutton
.state
&= ~(NumLockMask
| ScrollLockMask
| LockMask
);
299 last_time
= e
->xbutton
.time
;
301 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
302 Basemenu
*menu
= (Basemenu
*) 0;
305 Slit
*slit
= (Slit
*) 0;
308 Toolbar
*tbar
= (Toolbar
*) 0;
310 if ((win
= searchWindow(e
->xbutton
.window
))) {
311 win
->buttonPressEvent(&e
->xbutton
);
313 if (e
->xbutton
.button
== 1)
314 win
->installColormap(True
);
315 } else if ((menu
= searchMenu(e
->xbutton
.window
))) {
316 menu
->buttonPressEvent(&e
->xbutton
);
319 } else if ((slit
= searchSlit(e
->xbutton
.window
))) {
320 slit
->buttonPressEvent(&e
->xbutton
);
323 } else if ((tbar
= searchToolbar(e
->xbutton
.window
))) {
324 tbar
->buttonPressEvent(&e
->xbutton
);
326 LinkedListIterator
<BScreen
> it(screenList
);
327 BScreen
*screen
= it
.current();
328 for (; screen
; it
++, screen
= it
.current()) {
329 if (e
->xbutton
.window
== screen
->getRootWindow()) {
330 if (e
->xbutton
.button
== 1) {
331 if (! screen
->isRootColormapInstalled())
332 screen
->getImageControl()->installRootColormap();
334 if (screen
->getWorkspacemenu()->isVisible())
335 screen
->getWorkspacemenu()->hide();
337 if (screen
->getRootmenu()->isVisible())
338 screen
->getRootmenu()->hide();
339 } else if (e
->xbutton
.button
== 2) {
340 int mx
= e
->xbutton
.x_root
-
341 (screen
->getWorkspacemenu()->getWidth() / 2);
342 int my
= e
->xbutton
.y_root
-
343 (screen
->getWorkspacemenu()->getTitleHeight() / 2);
348 if (mx
+ screen
->getWorkspacemenu()->getWidth() >
350 mx
= screen
->size().w() -
351 screen
->getWorkspacemenu()->getWidth() -
352 screen
->getBorderWidth();
354 if (my
+ screen
->getWorkspacemenu()->getHeight() >
356 my
= screen
->size().h() -
357 screen
->getWorkspacemenu()->getHeight() -
358 screen
->getBorderWidth();
360 screen
->getWorkspacemenu()->move(mx
, my
);
362 if (! screen
->getWorkspacemenu()->isVisible()) {
363 screen
->getWorkspacemenu()->removeParent();
364 screen
->getWorkspacemenu()->show();
366 } else if (e
->xbutton
.button
== 3) {
367 int mx
= e
->xbutton
.x_root
-
368 (screen
->getRootmenu()->getWidth() / 2);
369 int my
= e
->xbutton
.y_root
-
370 (screen
->getRootmenu()->getTitleHeight() / 2);
375 if (mx
+ screen
->getRootmenu()->getWidth() > screen
->size().w())
376 mx
= screen
->size().w() -
377 screen
->getRootmenu()->getWidth() -
378 screen
->getBorderWidth();
380 if (my
+ screen
->getRootmenu()->getHeight() > screen
->size().h())
381 my
= screen
->size().h() -
382 screen
->getRootmenu()->getHeight() -
383 screen
->getBorderWidth();
385 screen
->getRootmenu()->move(mx
, my
);
387 if (! screen
->getRootmenu()->isVisible()) {
389 screen
->getRootmenu()->show();
391 } else if (e
->xbutton
.button
== 4) {
392 if ((screen
->getCurrentWorkspaceID() + 1) >
393 screen
->getWorkspaceCount() - 1)
394 screen
->changeWorkspaceID(0);
396 screen
->changeWorkspaceID(screen
->getCurrentWorkspaceID() + 1);
397 } else if (e
->xbutton
.button
== 5) {
398 if ((screen
->getCurrentWorkspaceID() - 1) < 0)
399 screen
->changeWorkspaceID(screen
->getWorkspaceCount() - 1);
401 screen
->changeWorkspaceID(screen
->getCurrentWorkspaceID() - 1);
410 case ButtonRelease
: {
411 // strip the lock key modifiers
412 e
->xbutton
.state
&= ~(NumLockMask
| ScrollLockMask
| LockMask
);
414 last_time
= e
->xbutton
.time
;
416 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
417 Basemenu
*menu
= (Basemenu
*) 0;
418 Toolbar
*tbar
= (Toolbar
*) 0;
420 if ((win
= searchWindow(e
->xbutton
.window
)))
421 win
->buttonReleaseEvent(&e
->xbutton
);
422 else if ((menu
= searchMenu(e
->xbutton
.window
)))
423 menu
->buttonReleaseEvent(&e
->xbutton
);
424 else if ((tbar
= searchToolbar(e
->xbutton
.window
)))
425 tbar
->buttonReleaseEvent(&e
->xbutton
);
430 case ConfigureRequest
: {
431 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
434 Slit
*slit
= (Slit
*) 0;
437 if ((win
= searchWindow(e
->xconfigurerequest
.window
))) {
438 win
->configureRequestEvent(&e
->xconfigurerequest
);
441 } else if ((slit
= searchSlit(e
->xconfigurerequest
.window
))) {
442 slit
->configureRequestEvent(&e
->xconfigurerequest
);
448 if (validateWindow(e
->xconfigurerequest
.window
)) {
451 xwc
.x
= e
->xconfigurerequest
.x
;
452 xwc
.y
= e
->xconfigurerequest
.y
;
453 xwc
.width
= e
->xconfigurerequest
.width
;
454 xwc
.height
= e
->xconfigurerequest
.height
;
455 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
456 xwc
.sibling
= e
->xconfigurerequest
.above
;
457 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
459 XConfigureWindow(getXDisplay(), e
->xconfigurerequest
.window
,
460 e
->xconfigurerequest
.value_mask
, &xwc
);
472 i18n
->getMessage(openboxSet
, openboxMapRequest
,
473 "Openbox::process_event(): MapRequest for 0x%lx\n"),
474 e
->xmaprequest
.window
);
477 OpenboxWindow
*win
= searchWindow(e
->xmaprequest
.window
);
480 win
= new OpenboxWindow(*this, e
->xmaprequest
.window
);
482 if ((win
= searchWindow(e
->xmaprequest
.window
)))
483 win
->mapRequestEvent(&e
->xmaprequest
);
489 OpenboxWindow
*win
= searchWindow(e
->xmap
.window
);
492 win
->mapNotifyEvent(&e
->xmap
);
498 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
501 Slit
*slit
= (Slit
*) 0;
504 if ((win
= searchWindow(e
->xunmap
.window
))) {
505 win
->unmapNotifyEvent(&e
->xunmap
);
507 } else if ((slit
= searchSlit(e
->xunmap
.window
))) {
508 slit
->removeClient(e
->xunmap
.window
);
516 case DestroyNotify
: {
517 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
520 Slit
*slit
= (Slit
*) 0;
523 if ((win
= searchWindow(e
->xdestroywindow
.window
))) {
524 win
->destroyNotifyEvent(&e
->xdestroywindow
);
526 } else if ((slit
= searchSlit(e
->xdestroywindow
.window
))) {
527 slit
->removeClient(e
->xdestroywindow
.window
, False
);
535 // strip the lock key modifiers
536 e
->xbutton
.state
&= ~(NumLockMask
| ScrollLockMask
| LockMask
);
538 last_time
= e
->xmotion
.time
;
540 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
541 Basemenu
*menu
= (Basemenu
*) 0;
543 if ((win
= searchWindow(e
->xmotion
.window
)))
544 win
->motionNotifyEvent(&e
->xmotion
);
545 else if ((menu
= searchMenu(e
->xmotion
.window
)))
546 menu
->motionNotifyEvent(&e
->xmotion
);
551 case PropertyNotify
: {
552 last_time
= e
->xproperty
.time
;
554 if (e
->xproperty
.state
!= PropertyDelete
) {
555 OpenboxWindow
*win
= searchWindow(e
->xproperty
.window
);
558 win
->propertyNotifyEvent(e
->xproperty
.atom
);
565 last_time
= e
->xcrossing
.time
;
567 BScreen
*screen
= (BScreen
*) 0;
568 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
569 Basemenu
*menu
= (Basemenu
*) 0;
570 Toolbar
*tbar
= (Toolbar
*) 0;
573 Slit
*slit
= (Slit
*) 0;
576 if (e
->xcrossing
.mode
== NotifyGrab
) break;
580 sa
.w
= e
->xcrossing
.window
;
581 sa
.enter
= sa
.leave
= False
;
582 XCheckIfEvent(getXDisplay(), &dummy
, queueScanner
, (char *) &sa
);
584 if ((e
->xcrossing
.window
== e
->xcrossing
.root
) &&
585 (screen
= searchScreen(e
->xcrossing
.window
))) {
586 screen
->getImageControl()->installRootColormap();
587 } else if ((win
= searchWindow(e
->xcrossing
.window
))) {
588 if (win
->getScreen()->sloppyFocus() &&
589 (! win
->isFocused()) && (! no_focus
)) {
592 if (((! sa
.leave
) || sa
.inferior
) && win
->isVisible() &&
593 win
->setInputFocus())
594 win
->installColormap(True
);
598 } else if ((menu
= searchMenu(e
->xcrossing
.window
))) {
599 menu
->enterNotifyEvent(&e
->xcrossing
);
600 } else if ((tbar
= searchToolbar(e
->xcrossing
.window
))) {
601 tbar
->enterNotifyEvent(&e
->xcrossing
);
603 } else if ((slit
= searchSlit(e
->xcrossing
.window
))) {
604 slit
->enterNotifyEvent(&e
->xcrossing
);
611 last_time
= e
->xcrossing
.time
;
613 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
614 Basemenu
*menu
= (Basemenu
*) 0;
615 Toolbar
*tbar
= (Toolbar
*) 0;
618 Slit
*slit
= (Slit
*) 0;
621 if ((menu
= searchMenu(e
->xcrossing
.window
)))
622 menu
->leaveNotifyEvent(&e
->xcrossing
);
623 else if ((win
= searchWindow(e
->xcrossing
.window
)))
624 win
->installColormap(False
);
625 else if ((tbar
= searchToolbar(e
->xcrossing
.window
)))
626 tbar
->leaveNotifyEvent(&e
->xcrossing
);
628 else if ((slit
= searchSlit(e
->xcrossing
.window
)))
629 slit
->leaveNotifyEvent(&e
->xcrossing
);
636 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
637 Basemenu
*menu
= (Basemenu
*) 0;
638 Toolbar
*tbar
= (Toolbar
*) 0;
640 if ((win
= searchWindow(e
->xexpose
.window
)))
641 win
->exposeEvent(&e
->xexpose
);
642 else if ((menu
= searchMenu(e
->xexpose
.window
)))
643 menu
->exposeEvent(&e
->xexpose
);
644 else if ((tbar
= searchToolbar(e
->xexpose
.window
)))
645 tbar
->exposeEvent(&e
->xexpose
);
651 Toolbar
*tbar
= searchToolbar(e
->xkey
.window
);
653 if (tbar
&& tbar
->isEditing())
654 tbar
->keyPressEvent(&e
->xkey
);
659 case ColormapNotify
: {
660 BScreen
*screen
= searchScreen(e
->xcolormap
.window
);
663 screen
->setRootColormapInstalled((e
->xcolormap
.state
==
664 ColormapInstalled
) ? True
: False
);
670 if (e
->xfocus
.mode
== NotifyUngrab
|| e
->xfocus
.detail
== NotifyPointer
)
673 OpenboxWindow
*win
= searchWindow(e
->xfocus
.window
);
674 if (win
&& !win
->isFocused())
683 case ClientMessage
: {
684 if (e
->xclient
.format
== 32) {
685 if (e
->xclient
.message_type
== getWMChangeStateAtom()) {
686 OpenboxWindow
*win
= searchWindow(e
->xclient
.window
);
687 if (! win
|| ! win
->validateClient()) return;
689 if (e
->xclient
.data
.l
[0] == IconicState
)
691 if (e
->xclient
.data
.l
[0] == NormalState
)
693 } else if (e
->xclient
.message_type
== getOpenboxChangeWorkspaceAtom()) {
694 BScreen
*screen
= searchScreen(e
->xclient
.window
);
696 if (screen
&& e
->xclient
.data
.l
[0] >= 0 &&
697 e
->xclient
.data
.l
[0] < screen
->getWorkspaceCount())
698 screen
->changeWorkspaceID(e
->xclient
.data
.l
[0]);
699 } else if (e
->xclient
.message_type
== getOpenboxChangeWindowFocusAtom()) {
700 OpenboxWindow
*win
= searchWindow(e
->xclient
.window
);
702 if (win
&& win
->isVisible() && win
->setInputFocus())
703 win
->installColormap(True
);
704 } else if (e
->xclient
.message_type
== getOpenboxCycleWindowFocusAtom()) {
705 BScreen
*screen
= searchScreen(e
->xclient
.window
);
708 if (! e
->xclient
.data
.l
[0])
713 } else if (e
->xclient
.message_type
== getOpenboxChangeAttributesAtom()) {
714 OpenboxWindow
*win
= searchWindow(e
->xclient
.window
);
716 if (win
&& win
->validateClient()) {
718 net
.flags
= e
->xclient
.data
.l
[0];
719 net
.attrib
= e
->xclient
.data
.l
[1];
720 net
.workspace
= e
->xclient
.data
.l
[2];
721 net
.stack
= e
->xclient
.data
.l
[3];
722 net
.decoration
= e
->xclient
.data
.l
[4];
724 win
->changeOpenboxHints(&net
);
735 if (e
->type
== getShapeEventBase()) {
736 XShapeEvent
*shape_event
= (XShapeEvent
*) e
;
737 OpenboxWindow
*win
= (OpenboxWindow
*) 0;
739 if ((win
= searchWindow(e
->xany
.window
)) ||
740 (shape_event
->kind
!= ShapeBounding
))
741 win
->shapeEvent(shape_event
);
750 Bool
Openbox::handleSignal(int sig
) {
776 BScreen
*Openbox::searchScreen(Window window
) {
777 LinkedListIterator
<BScreen
> it(screenList
);
779 for (BScreen
*curr
= it
.current(); curr
; it
++, curr
= it
.current()) {
780 if (curr
->getRootWindow() == window
) {
785 return (BScreen
*) 0;
789 OpenboxWindow
*Openbox::searchWindow(Window window
) {
790 LinkedListIterator
<WindowSearch
> it(windowSearchList
);
792 for (WindowSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
793 if (tmp
->getWindow() == window
) {
794 return tmp
->getData();
798 return (OpenboxWindow
*) 0;
802 OpenboxWindow
*Openbox::searchGroup(Window window
, OpenboxWindow
*win
) {
803 OpenboxWindow
*w
= (OpenboxWindow
*) 0;
804 LinkedListIterator
<WindowSearch
> it(groupSearchList
);
806 for (WindowSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
807 if (tmp
->getWindow() == window
) {
809 if (w
->getClientWindow() != win
->getClientWindow())
814 return (OpenboxWindow
*) 0;
818 Basemenu
*Openbox::searchMenu(Window window
) {
819 LinkedListIterator
<MenuSearch
> it(menuSearchList
);
821 for (MenuSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
822 if (tmp
->getWindow() == window
)
823 return tmp
->getData();
826 return (Basemenu
*) 0;
830 Toolbar
*Openbox::searchToolbar(Window window
) {
831 LinkedListIterator
<ToolbarSearch
> it(toolbarSearchList
);
833 for (ToolbarSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
834 if (tmp
->getWindow() == window
)
835 return tmp
->getData();
838 return (Toolbar
*) 0;
843 Slit
*Openbox::searchSlit(Window window
) {
844 LinkedListIterator
<SlitSearch
> it(slitSearchList
);
846 for (SlitSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
847 if (tmp
->getWindow() == window
)
848 return tmp
->getData();
856 void Openbox::saveWindowSearch(Window window
, OpenboxWindow
*data
) {
857 windowSearchList
->insert(new WindowSearch(window
, data
));
861 void Openbox::saveGroupSearch(Window window
, OpenboxWindow
*data
) {
862 groupSearchList
->insert(new WindowSearch(window
, data
));
866 void Openbox::saveMenuSearch(Window window
, Basemenu
*data
) {
867 menuSearchList
->insert(new MenuSearch(window
, data
));
871 void Openbox::saveToolbarSearch(Window window
, Toolbar
*data
) {
872 toolbarSearchList
->insert(new ToolbarSearch(window
, data
));
877 void Openbox::saveSlitSearch(Window window
, Slit
*data
) {
878 slitSearchList
->insert(new SlitSearch(window
, data
));
883 void Openbox::removeWindowSearch(Window window
) {
884 LinkedListIterator
<WindowSearch
> it(windowSearchList
);
885 for (WindowSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
886 if (tmp
->getWindow() == window
) {
887 windowSearchList
->remove(tmp
);
895 void Openbox::removeGroupSearch(Window window
) {
896 LinkedListIterator
<WindowSearch
> it(groupSearchList
);
897 for (WindowSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
898 if (tmp
->getWindow() == window
) {
899 groupSearchList
->remove(tmp
);
907 void Openbox::removeMenuSearch(Window window
) {
908 LinkedListIterator
<MenuSearch
> it(menuSearchList
);
909 for (MenuSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
910 if (tmp
->getWindow() == window
) {
911 menuSearchList
->remove(tmp
);
919 void Openbox::removeToolbarSearch(Window window
) {
920 LinkedListIterator
<ToolbarSearch
> it(toolbarSearchList
);
921 for (ToolbarSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
922 if (tmp
->getWindow() == window
) {
923 toolbarSearchList
->remove(tmp
);
932 void Openbox::removeSlitSearch(Window window
) {
933 LinkedListIterator
<SlitSearch
> it(slitSearchList
);
934 for (SlitSearch
*tmp
= it
.current(); tmp
; it
++, tmp
= it
.current()) {
935 if (tmp
->getWindow() == window
) {
936 slitSearchList
->remove(tmp
);
945 void Openbox::restart(const char *prog
) {
949 execlp(prog
, prog
, NULL
);
953 // fall back in case the above execlp doesn't work
954 execvp(argv
[0], argv
);
955 execvp(basename(argv
[0]), argv
);
959 void Openbox::shutdown() {
960 BaseDisplay::shutdown();
962 XSetInputFocus(getXDisplay(), PointerRoot
, None
, CurrentTime
);
964 LinkedListIterator
<BScreen
> it(screenList
);
965 for (BScreen
*s
= it
.current(); s
; it
++, s
= it
.current())
968 XSync(getXDisplay(), False
);
972 void Openbox::save() {
973 config
.setAutoSave(false);
975 // save all values as they are so that the defaults will be written to the rc
978 config
.setValue("session.menuFile", getMenuFilename());
979 config
.setValue("session.colorsPerChannel",
980 resource
.colors_per_channel
);
981 config
.setValue("session.styleFile", resource
.style_file
);
982 config
.setValue("session.titlebarLayout", resource
.titlebar_layout
);
983 config
.setValue("session.doubleClickInterval",
984 (long)resource
.double_click_interval
);
985 config
.setValue("session.autoRaiseDelay",
986 ((resource
.auto_raise_delay
.tv_sec
* 1000) +
987 (resource
.auto_raise_delay
.tv_usec
/ 1000)));
988 config
.setValue("session.cacheLife", (long)resource
.cache_life
/ 60000);
989 config
.setValue("session.cacheMax", (long)resource
.cache_max
);
991 LinkedListIterator
<BScreen
> it(screenList
);
992 for (BScreen
*s
= it
.current(); s
!= NULL
; it
++, s
= it
.current()) {
994 s
->getToolbar()->save();
996 s
->getSlit()->save();
1000 config
.setAutoSave(true);
1004 void Openbox::load() {
1011 if (resource
.menu_file
)
1012 delete [] resource
.menu_file
;
1013 if (config
.getValue("session.menuFile", "Session.MenuFile", s
))
1014 resource
.menu_file
= bstrdup(s
.c_str());
1016 resource
.menu_file
= bstrdup(DEFAULTMENU
);
1018 if (config
.getValue("session.colorsPerChannel", "Session.ColorsPerChannel",
1020 resource
.colors_per_channel
= (l
< 2 ? 2 : (l
> 6 ? 6 : l
)); // >= 2, <= 6
1022 resource
.colors_per_channel
= 4;
1024 if (resource
.style_file
)
1025 delete [] resource
.style_file
;
1026 if (config
.getValue("session.styleFile", "Session.StyleFile", s
))
1027 resource
.style_file
= bstrdup(s
.c_str());
1029 resource
.style_file
= bstrdup(DEFAULTSTYLE
);
1031 if (resource
.titlebar_layout
)
1032 delete [] resource
.titlebar_layout
;
1033 if (config
.getValue("session.titlebarLayout", "Session.TitlebarLayout", s
))
1034 resource
.titlebar_layout
= bstrdup(s
.c_str());
1036 resource
.titlebar_layout
= bstrdup("ILMC");
1038 if (config
.getValue("session.doubleClickInterval",
1039 "Session.DoubleClickInterval", l
))
1040 resource
.double_click_interval
= l
;
1042 resource
.double_click_interval
= 250;
1044 if (!config
.getValue("session.autoRaiseDelay", "Session.AutoRaiseDelay", l
))
1045 resource
.auto_raise_delay
.tv_usec
= l
;
1047 resource
.auto_raise_delay
.tv_usec
= 400;
1048 resource
.auto_raise_delay
.tv_sec
= resource
.auto_raise_delay
.tv_usec
/ 1000;
1049 resource
.auto_raise_delay
.tv_usec
-=
1050 (resource
.auto_raise_delay
.tv_sec
* 1000);
1051 resource
.auto_raise_delay
.tv_usec
*= 1000;
1053 if (config
.getValue("session.cacheLife", "Session.CacheLife", l
))
1054 resource
.cache_life
= l
;
1056 resource
.cache_life
= 51;
1057 resource
.cache_life
*= 60000;
1059 if (config
.getValue("session.cacheMax", "Session.CacheMax", l
))
1060 resource
.cache_max
= l
;
1062 resource
.cache_max
= 200;
1066 void Openbox::reconfigure() {
1067 reconfigure_wait
= True
;
1069 if (! timer
->isTiming()) timer
->start();
1073 void Openbox::real_reconfigure() {
1078 for (int i
= 0, n
= menuTimestamps
->count(); i
< n
; i
++) {
1079 MenuTimestamp
*ts
= menuTimestamps
->remove(0);
1083 delete [] ts
->filename
;
1089 LinkedListIterator
<BScreen
> it(screenList
);
1090 for (BScreen
*screen
= it
.current(); screen
; it
++, screen
= it
.current()) {
1091 screen
->reconfigure();
1098 void Openbox::checkMenu() {
1099 Bool reread
= False
;
1100 LinkedListIterator
<MenuTimestamp
> it(menuTimestamps
);
1101 for (MenuTimestamp
*tmp
= it
.current(); tmp
&& (! reread
);
1102 it
++, tmp
= it
.current()) {
1105 if (! stat(tmp
->filename
, &buf
)) {
1106 if (tmp
->timestamp
!= buf
.st_ctime
)
1113 if (reread
) rereadMenu();
1117 void Openbox::rereadMenu() {
1118 reread_menu_wait
= True
;
1120 if (! timer
->isTiming()) timer
->start();
1124 void Openbox::real_rereadMenu() {
1125 for (int i
= 0, n
= menuTimestamps
->count(); i
< n
; i
++) {
1126 MenuTimestamp
*ts
= menuTimestamps
->remove(0);
1130 delete [] ts
->filename
;
1136 LinkedListIterator
<BScreen
> it(screenList
);
1137 for (BScreen
*screen
= it
.current(); screen
; it
++, screen
= it
.current())
1138 screen
->rereadMenu();
1142 void Openbox::setStyleFilename(const char *filename
) {
1143 if (resource
.style_file
)
1144 delete [] resource
.style_file
;
1146 resource
.style_file
= bstrdup(filename
);
1147 config
.setValue("session.styleFile", resource
.style_file
);
1151 void Openbox::setMenuFilename(const char *filename
) {
1154 LinkedListIterator
<MenuTimestamp
> it(menuTimestamps
);
1155 for (MenuTimestamp
*tmp
= it
.current(); tmp
&& (! found
);
1156 it
++, tmp
= it
.current()) {
1157 if (! strcmp(tmp
->filename
, filename
)) found
= True
;
1162 if (! stat(filename
, &buf
)) {
1163 MenuTimestamp
*ts
= new MenuTimestamp
;
1165 ts
->filename
= bstrdup(filename
);
1166 ts
->timestamp
= buf
.st_ctime
;
1168 menuTimestamps
->insert(ts
);
1174 void Openbox::timeout() {
1175 if (reconfigure_wait
)
1178 if (reread_menu_wait
)
1181 reconfigure_wait
= reread_menu_wait
= False
;
1185 OpenboxWindow
*Openbox::focusedWindow() {
1186 if (focused_screen
== (BScreen
*) 0)
1187 return (OpenboxWindow
*) 0;
1188 return focused_screen
->getCurrentWorkspace()->focusedWindow();
1192 void Openbox::focusWindow(OpenboxWindow
*win
) {
1193 BScreen
*old_screen
= (BScreen
*) 0;
1194 Toolbar
*old_tbar
= (Toolbar
*) 0, *tbar
= (Toolbar
*) 0;
1195 Workspace
*old_wkspc
= (Workspace
*) 0, *wkspc
= (Workspace
*) 0;
1197 OpenboxWindow
*old_win
= focusedWindow();
1198 if (old_win
!= (OpenboxWindow
*) 0) {
1199 old_screen
= old_win
->getScreen();
1200 old_wkspc
= old_screen
->getWorkspace(old_win
->getWorkspaceNumber());
1201 old_tbar
= old_screen
->getToolbar();
1203 old_win
->setFocusFlag(False
);
1204 old_wkspc
->focusWindow((OpenboxWindow
*) 0);
1207 if (win
&& !win
->isIconic()) {
1208 focused_screen
= win
->getScreen();
1209 tbar
= focused_screen
->getToolbar();
1210 wkspc
= focused_screen
->getWorkspace(win
->getWorkspaceNumber());
1211 win
->setFocusFlag(true);
1212 wkspc
->focusWindow(win
);
1215 tbar
->redrawWindowLabel(true);
1216 focused_screen
->updateNetizenWindowFocus();
1218 // focused_window = (OpenboxWindow *) 0;
1221 if (old_tbar
&& old_tbar
!= tbar
)
1222 old_tbar
->redrawWindowLabel(true);
1223 if (old_screen
&& old_screen
!= focused_screen
)
1224 old_screen
->updateNetizenWindowFocus();