1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // Screen.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
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:
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
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.
24 #include "../config.h"
27 #include <X11/Xatom.h>
28 #include <X11/keysym.h>
32 #endif // HAVE_STDLIB_H
36 #endif // HAVE_STRING_H
40 #endif // HAVE_CTYPE_H
43 # include <sys/types.h>
45 #endif // HAVE_UNISTD_H
49 #endif // HAVE_DIRENT_H
53 #endif // HAVE_LOCALE_H
55 #ifdef HAVE_SYS_STAT_H
56 # include <sys/stat.h>
57 #endif // HAVE_SYS_STAT_H
61 #endif // HAVE_STDARG_H
72 #include "blackbox.hh"
73 #include "Clientmenu.hh"
76 #include "Iconmenu.hh"
80 #include "Rootmenu.hh"
84 #include "Workspace.hh"
85 #include "Workspacemenu.hh"
88 #ifndef FONT_ELEMENT_SIZE
89 #define FONT_ELEMENT_SIZE 50
90 #endif // FONT_ELEMENT_SIZE
93 static bool running
= True
;
95 static int anotherWMRunning(Display
*display
, XErrorEvent
*) {
96 fprintf(stderr
, i18n(ScreenSet
, ScreenAnotherWMRunning
,
97 "BScreen::BScreen: an error occured while querying the X server.\n"
98 " another window manager already running on display %s.\n"),
99 DisplayString(display
));
107 BScreen::BScreen(Blackbox
*bb
, unsigned int scrn
) : ScreenInfo(bb
, scrn
) {
109 screenstr
= "session.screen" + itostring(scrn
) + '.';
110 config
= blackbox
->getConfig();
111 xatom
= blackbox
->getXAtom();
113 event_mask
= ColormapChangeMask
| EnterWindowMask
| PropertyChangeMask
|
114 SubstructureRedirectMask
| ButtonPressMask
| ButtonReleaseMask
;
116 XErrorHandler old
= XSetErrorHandler((XErrorHandler
) anotherWMRunning
);
117 XSelectInput(getBaseDisplay()->getXDisplay(), getRootWindow(), event_mask
);
118 XSync(getBaseDisplay()->getXDisplay(), False
);
119 XSetErrorHandler((XErrorHandler
) old
);
122 if (! managed
) return;
124 fprintf(stderr
, i18n(ScreenSet
, ScreenManagingScreen
,
125 "BScreen::BScreen: managing screen %d "
126 "using visual 0x%lx, depth %d\n"),
127 getScreenNumber(), XVisualIDFromVisual(getVisual()),
132 resource
.mstyle
.t_font
= resource
.mstyle
.f_font
= resource
.tstyle
.font
=
133 resource
.wstyle
.font
= (BFont
*) 0;
137 xatom
->setSupported(this); // set-up netwm support
139 xatom
->setValue(getRootWindow(), XAtom::blackbox_pid
, XAtom::cardinal
,
140 (unsigned long) getpid());
141 #endif // HAVE_GETPID
142 unsigned long geometry
[] = { getWidth(),
144 xatom
->setValue(getRootWindow(), XAtom::net_desktop_geometry
,
145 XAtom::cardinal
, geometry
, 2);
146 unsigned long viewport
[] = {0,0};
147 xatom
->setValue(getRootWindow(), XAtom::net_desktop_viewport
,
148 XAtom::cardinal
, viewport
, 2);
151 XDefineCursor(blackbox
->getXDisplay(), getRootWindow(),
152 blackbox
->getSessionCursor());
154 // start off full screen, top left.
155 usableArea
.setSize(getWidth(), getHeight());
158 new BImageControl(blackbox
, this, True
, blackbox
->getColorsPerChannel(),
159 blackbox
->getCacheLife(), blackbox
->getCacheMax());
160 image_control
->installRootColormap();
161 root_colormap_installed
= True
;
167 gcv
.foreground
= WhitePixel(blackbox
->getXDisplay(), getScreenNumber())
168 ^ BlackPixel(blackbox
->getXDisplay(), getScreenNumber());
169 gcv
.function
= GXxor
;
170 gcv
.subwindow_mode
= IncludeInferiors
;
171 opGC
= XCreateGC(blackbox
->getXDisplay(), getRootWindow(),
172 GCForeground
| GCFunction
| GCSubwindowMode
, &gcv
);
174 const char *s
= i18n(ScreenSet
, ScreenPositionLength
,
175 "0: 0000 x 0: 0000");
176 geom_w
= resource
.wstyle
.font
->measureString(s
) + resource
.bevel_width
* 2;
177 geom_h
= resource
.wstyle
.font
->height() + resource
.bevel_width
* 2;
179 XSetWindowAttributes attrib
;
180 unsigned long mask
= CWBorderPixel
| CWColormap
| CWSaveUnder
;
181 attrib
.border_pixel
= getBorderColor()->pixel();
182 attrib
.colormap
= getColormap();
183 attrib
.save_under
= True
;
185 geom_window
= XCreateWindow(blackbox
->getXDisplay(), getRootWindow(),
186 0, 0, geom_w
, geom_h
, resource
.border_width
,
187 getDepth(), InputOutput
, getVisual(),
189 geom_visible
= False
;
191 BTexture
* texture
= &(resource
.wstyle
.l_focus
);
192 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
193 if (geom_pixmap
== ParentRelative
) {
194 texture
= &(resource
.wstyle
.t_focus
);
195 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
198 XSetWindowBackground(blackbox
->getXDisplay(), geom_window
,
199 texture
->color().pixel());
201 XSetWindowBackgroundPixmap(blackbox
->getXDisplay(),
202 geom_window
, geom_pixmap
);
204 workspacemenu
= new Workspacemenu(this);
205 iconmenu
= new Iconmenu(this);
206 configmenu
= new Configmenu(this);
208 Workspace
*wkspc
= (Workspace
*) 0;
209 if (resource
.workspaces
!= 0) {
210 for (unsigned int i
= 0; i
< resource
.workspaces
; ++i
) {
211 wkspc
= new Workspace(this, workspacesList
.size());
212 workspacesList
.push_back(wkspc
);
213 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu());
216 wkspc
= new Workspace(this, workspacesList
.size());
217 workspacesList
.push_back(wkspc
);
218 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu());
220 saveWorkspaceNames();
222 updateNetizenWorkspaceCount();
224 workspacemenu
->insert(i18n(IconSet
, IconIcons
, "Icons"), iconmenu
);
225 workspacemenu
->update();
227 current_workspace
= workspacesList
.front();
229 xatom
->setValue(getRootWindow(), XAtom::net_current_desktop
,
230 XAtom::cardinal
, 0); //first workspace
232 workspacemenu
->setItemSelected(2, True
);
234 toolbar
= new Toolbar(this);
236 slit
= new Slit(this);
240 raiseWindows(0, 0); // this also initializes the empty stacking list
243 updateClientList(); // initialize the client list, which will be empty
244 updateAvailableArea();
246 changeWorkspaceID(0);
248 unsigned int i
, j
, nchild
;
249 Window r
, p
, *children
;
250 XQueryTree(blackbox
->getXDisplay(), getRootWindow(), &r
, &p
,
253 // preen the window list of all icon windows... for better dockapp support
254 for (i
= 0; i
< nchild
; i
++) {
255 if (children
[i
] == None
) continue;
257 XWMHints
*wmhints
= XGetWMHints(blackbox
->getXDisplay(),
261 if ((wmhints
->flags
& IconWindowHint
) &&
262 (wmhints
->icon_window
!= children
[i
])) {
263 for (j
= 0; j
< nchild
; j
++) {
264 if (children
[j
] == wmhints
->icon_window
) {
275 // manage shown windows
276 for (i
= 0; i
< nchild
; ++i
) {
277 if (children
[i
] == None
|| (! blackbox
->validateWindow(children
[i
])))
280 XWindowAttributes attrib
;
281 if (XGetWindowAttributes(blackbox
->getXDisplay(), children
[i
], &attrib
)) {
282 if (attrib
.override_redirect
) continue;
284 if (attrib
.map_state
!= IsUnmapped
) {
285 manageWindow(children
[i
]);
292 // call this again just in case a window we found updates the Strut list
293 updateAvailableArea();
297 BScreen::~BScreen(void) {
298 if (! managed
) return;
300 if (geom_pixmap
!= None
)
301 image_control
->removeImage(geom_pixmap
);
303 if (geom_window
!= None
)
304 XDestroyWindow(blackbox
->getXDisplay(), geom_window
);
306 std::for_each(workspacesList
.begin(), workspacesList
.end(),
309 std::for_each(iconList
.begin(), iconList
.end(), PointerAssassin());
311 std::for_each(netizenList
.begin(), netizenList
.end(), PointerAssassin());
314 delete workspacemenu
;
319 delete image_control
;
321 if (resource
.wstyle
.font
)
322 delete resource
.wstyle
.font
;
323 if (resource
.mstyle
.t_font
)
324 delete resource
.mstyle
.t_font
;
325 if (resource
.mstyle
.f_font
)
326 delete resource
.mstyle
.f_font
;
327 if (resource
.tstyle
.font
)
328 delete resource
.tstyle
.font
;
330 XFreeGC(blackbox
->getXDisplay(), opGC
);
334 void BScreen::saveSloppyFocus(bool s
) {
335 resource
.sloppy_focus
= s
;
338 if (resource
.sloppy_focus
) {
339 fmodel
= "SloppyFocus";
340 if (resource
.auto_raise
) fmodel
+= " AutoRaise";
341 if (resource
.click_raise
) fmodel
+= " ClickRaise";
343 fmodel
= "ClickToFocus";
345 config
->setValue(screenstr
+ "focusModel", fmodel
);
349 void BScreen::saveAutoRaise(bool a
) {
350 resource
.auto_raise
= a
;
351 saveSloppyFocus(resource
.sloppy_focus
);
355 void BScreen::saveClickRaise(bool c
) {
356 resource
.click_raise
= c
;
357 saveSloppyFocus(resource
.sloppy_focus
);
361 void BScreen::saveImageDither(bool d
) {
362 image_control
->setDither(d
);
363 config
->setValue(screenstr
+ "imageDither", doImageDither());
367 void BScreen::saveOpaqueMove(bool o
) {
368 resource
.opaque_move
= o
;
369 config
->setValue(screenstr
+ "opaqueMove", resource
.opaque_move
);
373 void BScreen::saveFullMax(bool f
) {
374 resource
.full_max
= f
;
375 config
->setValue(screenstr
+ "fullMaximization", resource
.full_max
);
379 void BScreen::saveFocusNew(bool f
) {
380 resource
.focus_new
= f
;
381 config
->setValue(screenstr
+ "focusNewWindows", resource
.focus_new
);
385 void BScreen::saveFocusLast(bool f
) {
386 resource
.focus_last
= f
;
387 config
->setValue(screenstr
+ "focusLastWindow", resource
.focus_last
);
391 void BScreen::saveHideToolbar(bool h
) {
392 resource
.hide_toolbar
= h
;
393 if (resource
.hide_toolbar
)
394 toolbar
->unmapToolbar();
396 toolbar
->mapToolbar();
397 config
->setValue(screenstr
+ "hideToolbar", resource
.hide_toolbar
);
401 void BScreen::saveWindowToWindowSnap(bool s
) {
402 resource
.window_to_window_snap
= s
;
403 config
->setValue(screenstr
+ "windowToWindowSnap",
404 resource
.window_to_window_snap
);
408 void BScreen::saveWindowCornerSnap(bool s
) {
409 resource
.window_corner_snap
= s
;
410 config
->setValue(screenstr
+ "windowCornerSnap",
411 resource
.window_corner_snap
);
415 void BScreen::saveWorkspaces(unsigned int w
) {
416 resource
.workspaces
= w
;
417 config
->setValue(screenstr
+ "workspaces", resource
.workspaces
);
421 void BScreen::savePlacementPolicy(int p
) {
422 resource
.placement_policy
= p
;
423 const char *placement
;
424 switch (resource
.placement_policy
) {
425 case CascadePlacement
: placement
= "CascadePlacement"; break;
426 case ColSmartPlacement
: placement
= "ColSmartPlacement"; break;
427 case RowSmartPlacement
: default: placement
= "RowSmartPlacement"; break;
429 config
->setValue(screenstr
+ "windowPlacement", placement
);
433 void BScreen::saveEdgeSnapThreshold(int t
) {
434 resource
.edge_snap_threshold
= t
;
435 config
->setValue(screenstr
+ "edgeSnapThreshold",
436 resource
.edge_snap_threshold
);
440 void BScreen::saveRowPlacementDirection(int d
) {
441 resource
.row_direction
= d
;
442 config
->setValue(screenstr
+ "rowPlacementDirection",
443 resource
.row_direction
== LeftRight
?
444 "LeftToRight" : "RightToLeft");
448 void BScreen::saveColPlacementDirection(int d
) {
449 resource
.col_direction
= d
;
450 config
->setValue(screenstr
+ "colPlacementDirection",
451 resource
.col_direction
== TopBottom
?
452 "TopToBottom" : "BottomToTop");
457 void BScreen::saveStrftimeFormat(const std::string
& format
) {
458 resource
.strftime_format
= format
;
459 config
->setValue(screenstr
+ "strftimeFormat", resource
.strftime_format
);
462 #else // !HAVE_STRFTIME
464 void BScreen::saveDateFormat(int f
) {
465 resource
.date_format
= f
;
466 config
->setValue(screenstr
+ "dateFormat",
467 resource
.date_format
== B_EuropeanDate
?
468 "European" : "American");
472 void BScreen::saveClock24Hour(Bool c
) {
473 resource
.clock24hour
= c
;
474 config
->setValue(screenstr
+ "clockFormat", resource
.clock24hour
? 24 : 12);
476 #endif // HAVE_STRFTIME
479 void BScreen::saveWorkspaceNames() {
480 XAtom::StringVect nameList
;
481 unsigned long numnames
= (unsigned) -1;
485 xatom
->getValue(getRootWindow(), XAtom::net_desktop_names
, XAtom::utf8
,
486 numnames
, nameList
)) {
487 for (unsigned int i
= 0; i
< nameList
.size(); ++i
) {
488 if (i
> 0) names
+= ",";
489 names
+= nameList
[i
];
492 config
->setValue(screenstr
+ "workspaceNames", names
);
496 void BScreen::save_rc(void) {
497 saveSloppyFocus(resource
.sloppy_focus
);
498 saveAutoRaise(resource
.auto_raise
);
499 saveImageDither(doImageDither());
500 saveOpaqueMove(resource
.opaque_move
);
501 saveFullMax(resource
.full_max
);
502 saveFocusNew(resource
.focus_new
);
503 saveFocusLast(resource
.focus_last
);
504 saveHideToolbar(resource
.hide_toolbar
);
505 saveWindowToWindowSnap(resource
.window_to_window_snap
);
506 saveWindowCornerSnap(resource
.window_corner_snap
);
507 saveWorkspaces(resource
.workspaces
);
508 savePlacementPolicy(resource
.placement_policy
);
509 saveEdgeSnapThreshold(resource
.edge_snap_threshold
);
510 saveRowPlacementDirection(resource
.row_direction
);
511 saveColPlacementDirection(resource
.col_direction
);
513 saveStrftimeFormat(resource
.strftime_format
);
514 #else // !HAVE_STRFTIME
515 saveDateFormat(resource
.date_format
);
516 savwClock24Hour(resource
.clock24hour
);
517 #endif // HAVE_STRFTIME
524 void BScreen::load_rc(void) {
528 if (! config
->getValue(screenstr
+ "fullMaximization", resource
.full_max
))
529 resource
.full_max
= false;
531 if (! config
->getValue(screenstr
+ "focusNewWindows", resource
.focus_new
))
532 resource
.focus_new
= false;
534 if (! config
->getValue(screenstr
+ "focusLastWindow", resource
.focus_last
))
535 resource
.focus_last
= false;
537 if (! config
->getValue(screenstr
+ "workspaces", resource
.workspaces
))
538 resource
.workspaces
= 1;
540 if (! config
->getValue(screenstr
+ "opaqueMove", resource
.opaque_move
))
541 resource
.opaque_move
= false;
543 if (! config
->getValue(screenstr
+ "hideToolbar", resource
.hide_toolbar
))
544 resource
.hide_toolbar
= false;
546 if (! config
->getValue(screenstr
+ "windowToWindowSnap",
547 resource
.window_to_window_snap
))
548 resource
.window_to_window_snap
= true;
550 if (! config
->getValue(screenstr
+ "windowCornerSnap",
551 resource
.window_corner_snap
))
552 resource
.window_corner_snap
= true;
554 if (! config
->getValue(screenstr
+ "imageDither", b
))
556 image_control
->setDither(b
);
558 if (! config
->getValue(screenstr
+ "edgeSnapThreshold",
559 resource
.edge_snap_threshold
))
560 resource
.edge_snap_threshold
= 4;
562 if (config
->getValue(screenstr
+ "rowPlacementDirection", s
) &&
564 resource
.row_direction
= RightLeft
;
566 resource
.row_direction
= LeftRight
;
568 if (config
->getValue(screenstr
+ "colPlacementDirection", s
) &&
570 resource
.col_direction
= BottomTop
;
572 resource
.col_direction
= TopBottom
;
574 XAtom::StringVect workspaceNames
;
575 if (config
->getValue(screenstr
+ "workspaceNames", s
)) {
576 string::const_iterator it
= s
.begin(), end
= s
.end();
578 string::const_iterator tmp
= it
; // current string.begin()
579 it
= std::find(tmp
, end
, ','); // look for comma between tmp and end
580 workspaceNames
.push_back(string(tmp
, it
)); // s[tmp:it]
586 xatom
->setValue(getRootWindow(), XAtom::net_desktop_names
, XAtom::utf8
,
589 resource
.sloppy_focus
= true;
590 resource
.auto_raise
= false;
591 resource
.click_raise
= false;
592 if (config
->getValue(screenstr
+ "focusModel", s
)) {
593 if (s
.find("ClickToFocus") != string::npos
) {
594 resource
.sloppy_focus
= false;
597 if (s
.find("AutoRaise") != string::npos
)
598 resource
.auto_raise
= true;
599 if (s
.find("ClickRaise") != string::npos
)
600 resource
.click_raise
= true;
604 if (config
->getValue(screenstr
+ "windowPlacement", s
)) {
605 if (s
== "CascadePlacement")
606 resource
.placement_policy
= CascadePlacement
;
607 else if (s
== "ColSmartPlacement")
608 resource
.placement_policy
= ColSmartPlacement
;
609 else //if (s == "RowSmartPlacement")
610 resource
.placement_policy
= RowSmartPlacement
;
612 resource
.placement_policy
= RowSmartPlacement
;
615 if (config
->getValue(screenstr
+ "strftimeFormat", s
))
616 resource
.strftime_format
= s
;
618 resource
.strftime_format
= "%I:%M %p";
619 #else // !HAVE_STRFTIME
622 if (config
->getValue(screenstr
+ "dateFormat", s
) && s
== "European")
623 resource
.date_format
= B_EuropeanDate
;
625 resource
.date_format
= B_AmericanDate
;
627 if (! config
->getValue(screenstr
+ "clockFormat", l
))
629 resource
.clock24hour
= l
== 24;
630 #endif // HAVE_STRFTIME
634 void BScreen::reconfigure(void) {
641 gcv
.foreground
= WhitePixel(blackbox
->getXDisplay(),
643 gcv
.function
= GXinvert
;
644 gcv
.subwindow_mode
= IncludeInferiors
;
645 XChangeGC(blackbox
->getXDisplay(), opGC
,
646 GCForeground
| GCFunction
| GCSubwindowMode
, &gcv
);
648 const char *s
= i18n(ScreenSet
, ScreenPositionLength
,
649 "0: 0000 x 0: 0000");
651 geom_w
= resource
.wstyle
.font
->measureString(s
) + resource
.bevel_width
* 2;
652 geom_h
= resource
.wstyle
.font
->height() + resource
.bevel_width
* 2;
654 BTexture
* texture
= &(resource
.wstyle
.l_focus
);
655 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
656 if (geom_pixmap
== ParentRelative
) {
657 texture
= &(resource
.wstyle
.t_focus
);
658 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
661 XSetWindowBackground(blackbox
->getXDisplay(), geom_window
,
662 texture
->color().pixel());
664 XSetWindowBackgroundPixmap(blackbox
->getXDisplay(),
665 geom_window
, geom_pixmap
);
667 XSetWindowBorderWidth(blackbox
->getXDisplay(), geom_window
,
668 resource
.border_width
);
669 XSetWindowBorder(blackbox
->getXDisplay(), geom_window
,
670 resource
.border_color
.pixel());
672 workspacemenu
->reconfigure();
673 iconmenu
->reconfigure();
675 typedef std::vector
<int> SubList
;
676 SubList remember_subs
;
678 // save the current open menus
679 Basemenu
*menu
= rootmenu
;
681 while ((submenu
= menu
->getCurrentSubmenu()) >= 0) {
682 remember_subs
.push_back(submenu
);
683 menu
= menu
->find(submenu
)->submenu();
689 rootmenu
->reconfigure();
691 // reopen the saved menus
693 const SubList::iterator subs_end
= remember_subs
.end();
694 for (SubList::iterator it
= remember_subs
.begin(); it
!= subs_end
; ++it
) {
695 menu
->drawSubmenu(*it
);
696 menu
= menu
->find(*it
)->submenu();
701 configmenu
->reconfigure();
703 toolbar
->reconfigure();
707 std::for_each(workspacesList
.begin(), workspacesList
.end(),
708 std::mem_fun(&Workspace::reconfigure
));
710 BlackboxWindowList::iterator iit
= iconList
.begin();
711 for (; iit
!= iconList
.end(); ++iit
) {
712 BlackboxWindow
*bw
= *iit
;
713 if (bw
->validateClient())
717 image_control
->timeout();
721 void BScreen::rereadMenu(void) {
725 rootmenu
->reconfigure();
729 void BScreen::LoadStyle(void) {
730 Configuration
style(False
);
732 const char *sfile
= blackbox
->getStyleFilename();
734 style
.setFile(sfile
);
735 if (! style
.load()) {
736 style
.setFile(DEFAULTSTYLE
);
738 style
.create(); // hardcoded default values will be used.
744 if (config
->getValue("rootCommand", s
))
745 printf("config.rootCommand: %s\n", s
.c_str());
747 if (style
.getValue("rootCommand", s
))
748 printf("style.rootCommand: %s\n", s
.c_str());
750 // merge in the rc file
751 style
.merge(config
, True
);
753 printf("merged databases\n");
755 if (style
.getValue("rootCommand", s
))
756 printf("style.rootCommand: %s\n", s
.c_str());
758 if (style
.getValue("session.cacheMax", s
))
759 printf("session.cacheMax: %s\n", s
.c_str());
761 // load fonts/fontsets
762 if (resource
.wstyle
.font
)
763 delete resource
.wstyle
.font
;
764 if (resource
.tstyle
.font
)
765 delete resource
.tstyle
.font
;
766 if (resource
.mstyle
.f_font
)
767 delete resource
.mstyle
.f_font
;
768 if (resource
.mstyle
.t_font
)
769 delete resource
.mstyle
.t_font
;
770 resource
.wstyle
.font
= resource
.tstyle
.font
= resource
.mstyle
.f_font
=
771 resource
.mstyle
.t_font
= (BFont
*) 0;
773 resource
.wstyle
.font
= readDatabaseFont("window.font", style
);
774 resource
.tstyle
.font
= readDatabaseFont("toolbar.font", style
);
775 resource
.mstyle
.t_font
= readDatabaseFont("menu.title.font", style
);
776 resource
.mstyle
.f_font
= readDatabaseFont("menu.frame.font", style
);
778 // load window config
779 resource
.wstyle
.t_focus
=
780 readDatabaseTexture("window.title.focus", "white", style
);
781 resource
.wstyle
.t_unfocus
=
782 readDatabaseTexture("window.title.unfocus", "black", style
);
783 resource
.wstyle
.l_focus
=
784 readDatabaseTexture("window.label.focus", "white", style
);
785 resource
.wstyle
.l_unfocus
=
786 readDatabaseTexture("window.label.unfocus", "black", style
);
787 resource
.wstyle
.h_focus
=
788 readDatabaseTexture("window.handle.focus", "white", style
);
789 resource
.wstyle
.h_unfocus
=
790 readDatabaseTexture("window.handle.unfocus", "black", style
);
791 resource
.wstyle
.g_focus
=
792 readDatabaseTexture("window.grip.focus", "white", style
);
793 resource
.wstyle
.g_unfocus
=
794 readDatabaseTexture("window.grip.unfocus", "black", style
);
795 resource
.wstyle
.b_focus
=
796 readDatabaseTexture("window.button.focus", "white", style
);
797 resource
.wstyle
.b_unfocus
=
798 readDatabaseTexture("window.button.unfocus", "black", style
);
799 resource
.wstyle
.b_pressed
=
800 readDatabaseTexture("window.button.pressed", "black", style
);
801 resource
.wstyle
.f_focus
=
802 readDatabaseColor("window.frame.focusColor", "white", style
);
803 resource
.wstyle
.f_unfocus
=
804 readDatabaseColor("window.frame.unfocusColor", "black", style
);
805 resource
.wstyle
.l_text_focus
=
806 readDatabaseColor("window.label.focus.textColor", "black", style
);
807 resource
.wstyle
.l_text_unfocus
=
808 readDatabaseColor("window.label.unfocus.textColor", "white", style
);
809 resource
.wstyle
.b_pic_focus
=
810 readDatabaseColor("window.button.focus.picColor", "black", style
);
811 resource
.wstyle
.b_pic_unfocus
=
812 readDatabaseColor("window.button.unfocus.picColor", "white", style
);
814 resource
.wstyle
.justify
= LeftJustify
;
815 if (style
.getValue("window.justify", s
)) {
816 if (s
== "right" || s
== "Right")
817 resource
.wstyle
.justify
= RightJustify
;
818 else if (s
== "center" || s
== "Center")
819 resource
.wstyle
.justify
= CenterJustify
;
822 // load toolbar config
823 resource
.tstyle
.toolbar
=
824 readDatabaseTexture("toolbar", "black", style
);
825 resource
.tstyle
.label
=
826 readDatabaseTexture("toolbar.label", "black", style
);
827 resource
.tstyle
.window
=
828 readDatabaseTexture("toolbar.windowLabel", "black", style
);
829 resource
.tstyle
.button
=
830 readDatabaseTexture("toolbar.button", "white", style
);
831 resource
.tstyle
.pressed
=
832 readDatabaseTexture("toolbar.button.pressed", "black", style
);
833 resource
.tstyle
.clock
=
834 readDatabaseTexture("toolbar.clock", "black", style
);
835 resource
.tstyle
.l_text
=
836 readDatabaseColor("toolbar.label.textColor", "white", style
);
837 resource
.tstyle
.w_text
=
838 readDatabaseColor("toolbar.windowLabel.textColor", "white", style
);
839 resource
.tstyle
.c_text
=
840 readDatabaseColor("toolbar.clock.textColor", "white", style
);
841 resource
.tstyle
.b_pic
=
842 readDatabaseColor("toolbar.button.picColor", "black", style
);
844 resource
.tstyle
.justify
= LeftJustify
;
845 if (style
.getValue("toolbar.justify", s
)) {
846 if (s
== "right" || s
== "Right")
847 resource
.tstyle
.justify
= RightJustify
;
848 else if (s
== "center" || s
== "Center")
849 resource
.tstyle
.justify
= CenterJustify
;
853 resource
.mstyle
.title
=
854 readDatabaseTexture("menu.title", "white", style
);
855 resource
.mstyle
.frame
=
856 readDatabaseTexture("menu.frame", "black", style
);
857 resource
.mstyle
.hilite
=
858 readDatabaseTexture("menu.hilite", "white", style
);
859 resource
.mstyle
.t_text
=
860 readDatabaseColor("menu.title.textColor", "black", style
);
861 resource
.mstyle
.f_text
=
862 readDatabaseColor("menu.frame.textColor", "white", style
);
863 resource
.mstyle
.d_text
=
864 readDatabaseColor("menu.frame.disableColor", "black", style
);
865 resource
.mstyle
.h_text
=
866 readDatabaseColor("menu.hilite.textColor", "black", style
);
868 resource
.mstyle
.t_justify
= LeftJustify
;
869 if (style
.getValue("menu.title.justify", s
)) {
870 if (s
== "right" || s
== "Right")
871 resource
.mstyle
.t_justify
= RightJustify
;
872 else if (s
== "center" || s
== "Center")
873 resource
.mstyle
.t_justify
= CenterJustify
;
876 resource
.mstyle
.f_justify
= LeftJustify
;
877 if (style
.getValue("menu.frame.justify", s
)) {
878 if (s
== "right" || s
== "Right")
879 resource
.mstyle
.f_justify
= RightJustify
;
880 else if (s
== "center" || s
== "Center")
881 resource
.mstyle
.f_justify
= CenterJustify
;
884 resource
.mstyle
.bullet
= Basemenu::Triangle
;
885 if (style
.getValue("menu.bullet", s
)) {
886 if (s
== "empty" || s
== "Empty")
887 resource
.mstyle
.bullet
= Basemenu::Empty
;
888 else if (s
== "square" || s
== "Square")
889 resource
.mstyle
.bullet
= Basemenu::Square
;
890 else if (s
== "diamond" || s
== "Diamond")
891 resource
.mstyle
.bullet
= Basemenu::Diamond
;
894 resource
.mstyle
.bullet_pos
= Basemenu::Left
;
895 if (style
.getValue("menu.bullet.position", s
)) {
896 if (s
== "right" || s
== "Right")
897 resource
.mstyle
.bullet_pos
= Basemenu::Right
;
900 resource
.border_color
=
901 readDatabaseColor("borderColor", "black", style
);
903 // load bevel, border and handle widths
904 if (! style
.getValue("handleWidth", resource
.handle_width
) ||
905 resource
.handle_width
> (getWidth() / 2) || resource
.handle_width
== 0)
906 resource
.handle_width
= 6;
908 if (! style
.getValue("borderWidth", resource
.border_width
))
909 resource
.border_width
= 1;
911 if (! style
.getValue("bevelWidth", resource
.bevel_width
) ||
912 resource
.bevel_width
> (getWidth() / 2) || resource
.bevel_width
== 0)
913 resource
.bevel_width
= 3;
915 if (! style
.getValue("frameWidth", resource
.frame_width
) ||
916 resource
.frame_width
> (getWidth() / 2))
917 resource
.frame_width
= resource
.bevel_width
;
919 if (style
.getValue("rootCommand", s
))
920 bexec(s
, displayString());
924 void BScreen::addIcon(BlackboxWindow
*w
) {
927 w
->setWorkspace(BSENTINEL
);
928 w
->setWindowNumber(iconList
.size());
930 iconList
.push_back(w
);
932 const char* title
= w
->getIconTitle();
933 iconmenu
->insert(title
);
938 void BScreen::removeIcon(BlackboxWindow
*w
) {
943 iconmenu
->remove(w
->getWindowNumber());
946 BlackboxWindowList::iterator it
= iconList
.begin(),
947 end
= iconList
.end();
948 for (int i
= 0; it
!= end
; ++it
)
949 (*it
)->setWindowNumber(i
++);
953 BlackboxWindow
*BScreen::getIcon(unsigned int index
) {
954 if (index
< iconList
.size()) {
955 BlackboxWindowList::iterator it
= iconList
.begin();
956 for (; index
> 0; --index
, ++it
) ; /* increment to index */
960 return (BlackboxWindow
*) 0;
964 unsigned int BScreen::addWorkspace(void) {
965 Workspace
*wkspc
= new Workspace(this, workspacesList
.size());
966 workspacesList
.push_back(wkspc
);
967 saveWorkspaces(getWorkspaceCount());
969 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu(),
971 workspacemenu
->update();
973 toolbar
->reconfigure();
975 updateNetizenWorkspaceCount();
977 return workspacesList
.size();
981 unsigned int BScreen::removeLastWorkspace(void) {
982 if (workspacesList
.size() == 1)
985 Workspace
*wkspc
= workspacesList
.back();
987 if (current_workspace
->getID() == wkspc
->getID())
988 changeWorkspaceID(current_workspace
->getID() - 1);
992 workspacemenu
->remove(wkspc
->getID() + 2);
993 workspacemenu
->update();
995 workspacesList
.pop_back();
998 saveWorkspaces(getWorkspaceCount());
1000 toolbar
->reconfigure();
1002 updateNetizenWorkspaceCount();
1004 return workspacesList
.size();
1008 void BScreen::changeWorkspaceID(unsigned int id
) {
1009 if (! current_workspace
) return;
1011 if (id
!= current_workspace
->getID()) {
1012 BlackboxWindow
*focused
= blackbox
->getFocusedWindow();
1013 if (focused
&& focused
->getScreen() == this && ! focused
->isStuck()) {
1014 if (focused
->getWorkspaceNumber() != current_workspace
->getID()) {
1015 fprintf(stderr
, "%s is on the wrong workspace, aborting\n",
1016 focused
->getTitle());
1019 current_workspace
->setLastFocusedWindow(focused
);
1021 // if no window had focus, no need to store a last focus
1022 current_workspace
->setLastFocusedWindow((BlackboxWindow
*) 0);
1024 // when we switch workspaces, unfocus whatever was focused
1025 blackbox
->setFocusedWindow((BlackboxWindow
*) 0);
1027 current_workspace
->hideAll();
1028 workspacemenu
->setItemSelected(current_workspace
->getID() + 2, False
);
1030 current_workspace
= getWorkspace(id
);
1032 xatom
->setValue(getRootWindow(), XAtom::net_current_desktop
,
1033 XAtom::cardinal
, id
);
1035 workspacemenu
->setItemSelected(current_workspace
->getID() + 2, True
);
1036 toolbar
->redrawWorkspaceLabel(True
);
1038 current_workspace
->showAll();
1040 if (resource
.focus_last
&& current_workspace
->getLastFocusedWindow()) {
1041 XSync(blackbox
->getXDisplay(), False
);
1042 current_workspace
->getLastFocusedWindow()->setInputFocus();
1046 updateNetizenCurrentWorkspace();
1051 * Set the _NET_CLIENT_LIST root window property.
1053 void BScreen::updateClientList(void) {
1054 if (windowList
.size() > 0) {
1055 Window
*windows
= new Window
[windowList
.size()];
1056 Window
*win_it
= windows
;
1057 BlackboxWindowList::iterator it
= windowList
.begin();
1058 const BlackboxWindowList::iterator end
= windowList
.end();
1059 for (; it
!= end
; ++it
, ++win_it
)
1060 *win_it
= (*it
)->getClientWindow();
1061 xatom
->setValue(getRootWindow(), XAtom::net_client_list
, XAtom::window
,
1062 windows
, windowList
.size());
1065 xatom
->setValue(getRootWindow(), XAtom::net_client_list
, XAtom::window
,
1071 * Set the _NET_CLIENT_LIST_STACKING root window property.
1073 void BScreen::updateStackingList(void) {
1075 BlackboxWindowList stack_order
;
1078 * Get the atacking order from all of the workspaces.
1079 * We start with the current workspace so that the sticky windows will be
1080 * in the right order on the current workspace.
1081 * XXX: Do we need to have sticky windows in the list once for each workspace?
1083 getCurrentWorkspace()->appendStackOrder(stack_order
);
1084 for (unsigned int i
= 0; i
< getWorkspaceCount(); ++i
)
1085 if (i
!= getCurrentWorkspaceID())
1086 getWorkspace(i
)->appendStackOrder(stack_order
);
1088 if (stack_order
.size() > 0) {
1089 // set the client list atoms
1090 Window
*windows
= new Window
[stack_order
.size()];
1091 Window
*win_it
= windows
;
1092 BlackboxWindowList::iterator it
= stack_order
.begin();
1093 const BlackboxWindowList::iterator end
= stack_order
.end();
1094 for (; it
!= end
; ++it
, ++win_it
)
1095 *win_it
= (*it
)->getClientWindow();
1096 xatom
->setValue(getRootWindow(), XAtom::net_client_list_stacking
,
1097 XAtom::window
, windows
, stack_order
.size());
1100 xatom
->setValue(getRootWindow(), XAtom::net_client_list_stacking
,
1101 XAtom::window
, 0, 0);
1105 void BScreen::addSystrayWindow(Window window
) {
1106 systrayWindowList
.push_back(window
);
1107 xatom
->setValue(getRootWindow(), XAtom::kde_net_system_tray_windows
,
1109 &systrayWindowList
[0], systrayWindowList
.size());
1110 blackbox
->saveSystrayWindowSearch(window
, this);
1114 void BScreen::removeSystrayWindow(Window window
) {
1115 WindowList::iterator it
= systrayWindowList
.begin();
1116 const WindowList::iterator end
= systrayWindowList
.end();
1117 for (; it
!= end
; ++it
)
1118 if (*it
== window
) {
1119 systrayWindowList
.erase(it
);
1120 xatom
->setValue(getRootWindow(), XAtom::kde_net_system_tray_windows
,
1122 &systrayWindowList
[0], systrayWindowList
.size());
1123 blackbox
->removeSystrayWindowSearch(window
);
1129 void BScreen::addDesktopWindow(Window window
) {
1130 desktopWindowList
.push_back(window
);
1131 XLowerWindow(blackbox
->getXDisplay(), window
);
1132 XSelectInput(blackbox
->getXDisplay(), window
, StructureNotifyMask
);
1133 blackbox
->saveDesktopWindowSearch(window
, this);
1137 void BScreen::removeDesktopWindow(Window window
) {
1138 WindowList::iterator it
= desktopWindowList
.begin();
1139 const WindowList::iterator end
= desktopWindowList
.end();
1140 for (; it
!= end
; ++it
)
1141 if (*it
== window
) {
1142 desktopWindowList
.erase(it
);
1143 XSelectInput(blackbox
->getXDisplay(), window
, None
);
1144 blackbox
->removeDesktopWindowSearch(window
);
1150 void BScreen::manageWindow(Window w
) {
1151 new BlackboxWindow(blackbox
, w
, this);
1153 BlackboxWindow
*win
= blackbox
->searchWindow(w
);
1156 if (win
->isDesktop()) {
1157 // desktop windows cant do anything, so we remove all the normal window
1158 // stuff from them, they are only kept around so that we can keep them on
1159 // the bottom of the z-order
1161 addDesktopWindow(win
->getClientWindow());
1166 windowList
.push_back(win
);
1169 XMapRequestEvent mre
;
1171 if (blackbox
->isStartup()) win
->restoreAttributes();
1172 win
->mapRequestEvent(&mre
);
1176 void BScreen::unmanageWindow(BlackboxWindow
*w
, bool remap
) {
1179 if (w
->getWorkspaceNumber() != BSENTINEL
&&
1180 w
->getWindowNumber() != BSENTINEL
)
1181 getWorkspace(w
->getWorkspaceNumber())->removeWindow(w
);
1182 else if (w
->isIconic())
1185 windowList
.remove(w
);
1188 if (blackbox
->getFocusedWindow() == w
)
1189 blackbox
->setFocusedWindow((BlackboxWindow
*) 0);
1191 removeNetizen(w
->getClientWindow());
1194 some managed windows can also be window group controllers. when
1195 unmanaging such windows, we should also delete the window group.
1197 BWindowGroup
*group
= blackbox
->searchGroup(w
->getClientWindow());
1204 void BScreen::addNetizen(Netizen
*n
) {
1205 netizenList
.push_back(n
);
1207 n
->sendWorkspaceCount();
1208 n
->sendCurrentWorkspace();
1210 WorkspaceList::iterator it
= workspacesList
.begin();
1211 const WorkspaceList::iterator end
= workspacesList
.end();
1212 for (; it
!= end
; ++it
)
1213 (*it
)->sendWindowList(*n
);
1215 Window f
= ((blackbox
->getFocusedWindow()) ?
1216 blackbox
->getFocusedWindow()->getClientWindow() : None
);
1217 n
->sendWindowFocus(f
);
1221 void BScreen::removeNetizen(Window w
) {
1222 NetizenList::iterator it
= netizenList
.begin();
1223 for (; it
!= netizenList
.end(); ++it
) {
1224 if ((*it
)->getWindowID() == w
) {
1226 netizenList
.erase(it
);
1233 void BScreen::updateWorkArea(void) {
1234 if (workspacesList
.size() > 0) {
1235 unsigned long *dims
= new unsigned long[4 * workspacesList
.size()];
1236 for (unsigned int i
= 0, m
= workspacesList
.size(); i
< m
; ++i
) {
1237 // XXX: this could be different for each workspace
1238 const Rect
&area
= availableArea();
1239 dims
[(i
* 4) + 0] = area
.x();
1240 dims
[(i
* 4) + 1] = area
.y();
1241 dims
[(i
* 4) + 2] = area
.width();
1242 dims
[(i
* 4) + 3] = area
.height();
1244 xatom
->setValue(getRootWindow(), XAtom::net_workarea
, XAtom::cardinal
,
1245 dims
, 4 * workspacesList
.size());
1248 xatom
->setValue(getRootWindow(), XAtom::net_workarea
, XAtom::cardinal
,
1253 void BScreen::updateNetizenCurrentWorkspace(void) {
1254 std::for_each(netizenList
.begin(), netizenList
.end(),
1255 std::mem_fun(&Netizen::sendCurrentWorkspace
));
1259 void BScreen::updateNetizenWorkspaceCount(void) {
1260 xatom
->setValue(getRootWindow(), XAtom::net_number_of_desktops
,
1261 XAtom::cardinal
, workspacesList
.size());
1265 std::for_each(netizenList
.begin(), netizenList
.end(),
1266 std::mem_fun(&Netizen::sendWorkspaceCount
));
1270 void BScreen::updateNetizenWindowFocus(void) {
1271 Window f
= ((blackbox
->getFocusedWindow()) ?
1272 blackbox
->getFocusedWindow()->getClientWindow() : None
);
1274 xatom
->setValue(getRootWindow(), XAtom::net_active_window
,
1277 NetizenList::iterator it
= netizenList
.begin();
1278 for (; it
!= netizenList
.end(); ++it
)
1279 (*it
)->sendWindowFocus(f
);
1283 void BScreen::updateNetizenWindowAdd(Window w
, unsigned long p
) {
1284 NetizenList::iterator it
= netizenList
.begin();
1285 for (; it
!= netizenList
.end(); ++it
) {
1286 (*it
)->sendWindowAdd(w
, p
);
1291 void BScreen::updateNetizenWindowDel(Window w
) {
1292 NetizenList::iterator it
= netizenList
.begin();
1293 for (; it
!= netizenList
.end(); ++it
)
1294 (*it
)->sendWindowDel(w
);
1298 void BScreen::updateNetizenWindowRaise(Window w
) {
1299 NetizenList::iterator it
= netizenList
.begin();
1300 for (; it
!= netizenList
.end(); ++it
)
1301 (*it
)->sendWindowRaise(w
);
1305 void BScreen::updateNetizenWindowLower(Window w
) {
1306 NetizenList::iterator it
= netizenList
.begin();
1307 for (; it
!= netizenList
.end(); ++it
)
1308 (*it
)->sendWindowLower(w
);
1312 void BScreen::updateNetizenConfigNotify(XEvent
*e
) {
1313 NetizenList::iterator it
= netizenList
.begin();
1314 for (; it
!= netizenList
.end(); ++it
)
1315 (*it
)->sendConfigNotify(e
);
1319 void BScreen::raiseWindows(Window
*workspace_stack
, unsigned int num
) {
1320 // the 13 represents the number of blackbox windows such as menus
1321 Window
*session_stack
= new
1322 Window
[(num
+ workspacesList
.size() + rootmenuList
.size() + 13)];
1323 unsigned int i
= 0, k
= num
;
1325 XRaiseWindow(blackbox
->getXDisplay(), iconmenu
->getWindowID());
1326 *(session_stack
+ i
++) = iconmenu
->getWindowID();
1328 WorkspaceList::iterator wit
= workspacesList
.begin();
1329 const WorkspaceList::iterator w_end
= workspacesList
.end();
1330 for (; wit
!= w_end
; ++wit
)
1331 *(session_stack
+ i
++) = (*wit
)->getMenu()->getWindowID();
1333 *(session_stack
+ i
++) = workspacemenu
->getWindowID();
1335 *(session_stack
+ i
++) = configmenu
->getFocusmenu()->getWindowID();
1336 *(session_stack
+ i
++) = configmenu
->getPlacementmenu()->getWindowID();
1337 *(session_stack
+ i
++) = configmenu
->getWindowID();
1339 *(session_stack
+ i
++) = slit
->getMenu()->getDirectionmenu()->getWindowID();
1340 *(session_stack
+ i
++) = slit
->getMenu()->getPlacementmenu()->getWindowID();
1341 *(session_stack
+ i
++) = slit
->getMenu()->getWindowID();
1343 *(session_stack
+ i
++) =
1344 toolbar
->getMenu()->getPlacementmenu()->getWindowID();
1345 *(session_stack
+ i
++) = toolbar
->getMenu()->getWindowID();
1347 RootmenuList::iterator rit
= rootmenuList
.begin();
1348 for (; rit
!= rootmenuList
.end(); ++rit
)
1349 *(session_stack
+ i
++) = (*rit
)->getWindowID();
1350 *(session_stack
+ i
++) = rootmenu
->getWindowID();
1352 if (toolbar
->isOnTop())
1353 *(session_stack
+ i
++) = toolbar
->getWindowID();
1355 if (slit
->isOnTop())
1356 *(session_stack
+ i
++) = slit
->getWindowID();
1359 *(session_stack
+ i
++) = *(workspace_stack
+ k
);
1361 XRestackWindows(blackbox
->getXDisplay(), session_stack
, i
);
1363 delete [] session_stack
;
1365 updateStackingList();
1369 void BScreen::lowerDesktops(void) {
1370 if (desktopWindowList
.empty()) return;
1372 XLowerWindow(blackbox
->getXDisplay(), desktopWindowList
[0]);
1373 if (desktopWindowList
.size() > 1)
1374 XRestackWindows(blackbox
->getXDisplay(), &desktopWindowList
[0],
1375 desktopWindowList
.size());
1379 void BScreen::reassociateWindow(BlackboxWindow
*w
, unsigned int wkspc_id
,
1380 bool ignore_sticky
) {
1383 if (wkspc_id
== BSENTINEL
)
1384 wkspc_id
= current_workspace
->getID();
1386 if (w
->getWorkspaceNumber() == wkspc_id
)
1389 if (w
->isIconic()) {
1391 getWorkspace(wkspc_id
)->addWindow(w
);
1392 } else if (ignore_sticky
|| ! w
->isStuck()) {
1393 getWorkspace(w
->getWorkspaceNumber())->removeWindow(w
);
1394 getWorkspace(wkspc_id
)->addWindow(w
);
1399 void BScreen::propagateWindowName(const BlackboxWindow
*bw
) {
1400 if (bw
->isIconic()) {
1401 iconmenu
->changeItemLabel(bw
->getWindowNumber(), bw
->getIconTitle());
1405 Clientmenu
*clientmenu
= getWorkspace(bw
->getWorkspaceNumber())->getMenu();
1406 clientmenu
->changeItemLabel(bw
->getWindowNumber(), bw
->getTitle());
1407 clientmenu
->update();
1409 if (blackbox
->getFocusedWindow() == bw
)
1410 toolbar
->redrawWindowLabel(True
);
1415 void BScreen::nextFocus(void) {
1416 BlackboxWindow
*focused
= blackbox
->getFocusedWindow(),
1420 // if window is not on this screen, ignore it
1421 if (focused
->getScreen()->getScreenNumber() != getScreenNumber())
1422 focused
= (BlackboxWindow
*) 0;
1425 if (focused
&& current_workspace
->getCount() > 1) {
1426 // next is the next window to recieve focus, current is a place holder
1427 BlackboxWindow
*current
;
1430 next
= current_workspace
->getNextWindowInList(current
);
1431 } while(! next
->setInputFocus() && next
!= focused
);
1433 if (next
!= focused
)
1434 current_workspace
->raiseWindow(next
);
1435 } else if (current_workspace
->getCount() >= 1) {
1436 next
= current_workspace
->getTopWindowOnStack();
1438 current_workspace
->raiseWindow(next
);
1439 next
->setInputFocus();
1444 void BScreen::prevFocus(void) {
1445 BlackboxWindow
*focused
= blackbox
->getFocusedWindow(),
1449 // if window is not on this screen, ignore it
1450 if (focused
->getScreen()->getScreenNumber() != getScreenNumber())
1451 focused
= (BlackboxWindow
*) 0;
1454 if (focused
&& current_workspace
->getCount() > 1) {
1455 // next is the next window to recieve focus, current is a place holder
1456 BlackboxWindow
*current
;
1459 next
= current_workspace
->getPrevWindowInList(current
);
1460 } while(! next
->setInputFocus() && next
!= focused
);
1462 if (next
!= focused
)
1463 current_workspace
->raiseWindow(next
);
1464 } else if (current_workspace
->getCount() >= 1) {
1465 next
= current_workspace
->getTopWindowOnStack();
1467 current_workspace
->raiseWindow(next
);
1468 next
->setInputFocus();
1473 void BScreen::raiseFocus(void) {
1474 BlackboxWindow
*focused
= blackbox
->getFocusedWindow();
1478 // if on this Screen, raise it
1479 if (focused
->getScreen()->getScreenNumber() == getScreenNumber()) {
1480 Workspace
*workspace
= getWorkspace(focused
->getWorkspaceNumber());
1481 workspace
->raiseWindow(focused
);
1486 void BScreen::InitMenu(void) {
1488 rootmenuList
.clear();
1490 while (rootmenu
->getCount())
1491 rootmenu
->remove(0);
1493 rootmenu
= new Rootmenu(this);
1495 bool defaultMenu
= True
;
1497 FILE *menu_file
= (FILE *) 0;
1498 const char *menu_filename
= blackbox
->getMenuFilename();
1501 if (! (menu_file
= fopen(menu_filename
, "r")))
1502 perror(menu_filename
);
1503 if (! menu_file
) { // opening the menu file failed, try the default menu
1504 menu_filename
= DEFAULTMENU
;
1505 if (! (menu_file
= fopen(menu_filename
, "r")))
1506 perror(menu_filename
);
1510 if (feof(menu_file
)) {
1511 fprintf(stderr
, i18n(ScreenSet
, ScreenEmptyMenuFile
,
1512 "%s: Empty menu file"),
1515 char line
[1024], label
[1024];
1516 memset(line
, 0, 1024);
1517 memset(label
, 0, 1024);
1519 while (fgets(line
, 1024, menu_file
) && ! feof(menu_file
)) {
1520 if (line
[0] != '#') {
1521 int i
, key
= 0, index
= -1, len
= strlen(line
);
1523 for (i
= 0; i
< len
; i
++) {
1524 if (line
[i
] == '[') index
= 0;
1525 else if (line
[i
] == ']') break;
1526 else if (line
[i
] != ' ')
1528 key
+= tolower(line
[i
]);
1531 if (key
== 517) { // [begin]
1533 for (i
= index
; i
< len
; i
++) {
1534 if (line
[i
] == '(') index
= 0;
1535 else if (line
[i
] == ')') break;
1536 else if (index
++ >= 0) {
1537 if (line
[i
] == '\\' && i
< len
- 1) i
++;
1538 label
[index
- 1] = line
[i
];
1542 if (index
== -1) index
= 0;
1543 label
[index
] = '\0';
1545 rootmenu
->setLabel(label
);
1546 defaultMenu
= parseMenuFile(menu_file
, rootmenu
);
1548 blackbox
->addMenuTimestamp(menu_filename
);
1558 rootmenu
->setInternalMenu();
1559 rootmenu
->insert(i18n(ScreenSet
, Screenxterm
, "xterm"),
1561 i18n(ScreenSet
, Screenxterm
, "xterm"));
1562 rootmenu
->insert(i18n(ScreenSet
, ScreenRestart
, "Restart"),
1564 rootmenu
->insert(i18n(ScreenSet
, ScreenExit
, "Exit"),
1566 rootmenu
->setLabel(i18n(BasemenuSet
, BasemenuBlackboxMenu
,
1572 bool BScreen::parseMenuFile(FILE *file
, Rootmenu
*menu
) {
1573 char line
[1024], label
[1024], command
[1024];
1575 while (! feof(file
)) {
1576 memset(line
, 0, 1024);
1577 memset(label
, 0, 1024);
1578 memset(command
, 0, 1024);
1580 if (fgets(line
, 1024, file
)) {
1581 if (line
[0] != '#') {
1582 int i
, key
= 0, parse
= 0, index
= -1, line_length
= strlen(line
);
1584 // determine the keyword
1585 for (i
= 0; i
< line_length
; i
++) {
1586 if (line
[i
] == '[') parse
= 1;
1587 else if (line
[i
] == ']') break;
1588 else if (line
[i
] != ' ')
1590 key
+= tolower(line
[i
]);
1593 // get the label enclosed in ()'s
1596 for (i
= 0; i
< line_length
; i
++) {
1597 if (line
[i
] == '(') {
1600 } else if (line
[i
] == ')') break;
1601 else if (index
++ >= 0) {
1602 if (line
[i
] == '\\' && i
< line_length
- 1) i
++;
1603 label
[index
- 1] = line
[i
];
1608 label
[index
] = '\0';
1613 // get the command enclosed in {}'s
1616 for (i
= 0; i
< line_length
; i
++) {
1617 if (line
[i
] == '{') {
1620 } else if (line
[i
] == '}') break;
1621 else if (index
++ >= 0) {
1622 if (line
[i
] == '\\' && i
< line_length
- 1) i
++;
1623 command
[index
- 1] = line
[i
];
1628 command
[index
] = '\0';
1635 return ((menu
->getCount() == 0) ? True
: False
);
1642 menu
->insert(label
);
1647 if ((! *label
) && (! *command
)) {
1648 fprintf(stderr
, i18n(ScreenSet
, ScreenEXECError
,
1649 "BScreen::parseMenuFile: [exec] error, "
1650 "no menu label and/or command defined\n"));
1654 menu
->insert(label
, BScreen::Execute
, command
);
1660 fprintf(stderr
, i18n(ScreenSet
, ScreenEXITError
,
1661 "BScreen::parseMenuFile: [exit] error, "
1662 "no menu label defined\n"));
1666 menu
->insert(label
, BScreen::Exit
);
1672 if ((! *label
) || (! *command
)) {
1674 i18n(ScreenSet
, ScreenSTYLEError
,
1675 "BScreen::parseMenuFile: [style] error, "
1676 "no menu label and/or filename defined\n"));
1680 string style
= expandTilde(command
);
1682 menu
->insert(label
, BScreen::SetStyle
, style
.c_str());
1689 fprintf(stderr
, i18n(ScreenSet
, ScreenCONFIGError
,
1690 "BScreen::parseMenufile: [config] error, "
1691 "no label defined"));
1695 menu
->insert(label
, configmenu
);
1699 case 740: // include
1702 fprintf(stderr
, i18n(ScreenSet
, ScreenINCLUDEError
,
1703 "BScreen::parseMenuFile: [include] error, "
1704 "no filename defined\n"));
1708 string newfile
= expandTilde(label
);
1709 FILE *submenufile
= fopen(newfile
.c_str(), "r");
1713 if (fstat(fileno(submenufile
), &buf
) ||
1714 (! S_ISREG(buf
.st_mode
))) {
1716 i18n(ScreenSet
, ScreenINCLUDEErrorReg
,
1717 "BScreen::parseMenuFile: [include] error: "
1718 "'%s' is not a regular file\n"), newfile
.c_str());
1722 if (! feof(submenufile
)) {
1723 if (! parseMenuFile(submenufile
, menu
))
1724 blackbox
->addMenuTimestamp(newfile
);
1726 fclose(submenufile
);
1729 perror(newfile
.c_str());
1735 case 767: // submenu
1738 fprintf(stderr
, i18n(ScreenSet
, ScreenSUBMENUError
,
1739 "BScreen::parseMenuFile: [submenu] error, "
1740 "no menu label defined\n"));
1744 Rootmenu
*submenu
= new Rootmenu(this);
1747 submenu
->setLabel(command
);
1749 submenu
->setLabel(label
);
1751 parseMenuFile(file
, submenu
);
1753 menu
->insert(label
, submenu
);
1754 rootmenuList
.push_back(submenu
);
1759 case 773: // restart
1762 fprintf(stderr
, i18n(ScreenSet
, ScreenRESTARTError
,
1763 "BScreen::parseMenuFile: [restart] error, "
1764 "no menu label defined\n"));
1769 menu
->insert(label
, BScreen::RestartOther
, command
);
1771 menu
->insert(label
, BScreen::Restart
);
1776 case 845: // reconfig
1780 i18n(ScreenSet
, ScreenRECONFIGError
,
1781 "BScreen::parseMenuFile: [reconfig] error, "
1782 "no menu label defined\n"));
1786 menu
->insert(label
, BScreen::Reconfigure
);
1791 case 995: // stylesdir
1792 case 1113: // stylesmenu
1794 bool newmenu
= ((key
== 1113) ? True
: False
);
1796 if ((! *label
) || ((! *command
) && newmenu
)) {
1798 i18n(ScreenSet
, ScreenSTYLESDIRError
,
1799 "BScreen::parseMenuFile: [stylesdir/stylesmenu]"
1800 " error, no directory defined\n"));
1804 char *directory
= ((newmenu
) ? command
: label
);
1806 string stylesdir
= expandTilde(directory
);
1808 struct stat statbuf
;
1810 if (! stat(stylesdir
.c_str(), &statbuf
)) {
1811 if (S_ISDIR(statbuf
.st_mode
)) {
1812 Rootmenu
*stylesmenu
;
1815 stylesmenu
= new Rootmenu(this);
1819 DIR *d
= opendir(stylesdir
.c_str());
1821 std::vector
<string
> ls
;
1823 while((p
= readdir(d
)))
1824 ls
.push_back(p
->d_name
);
1828 std::sort(ls
.begin(), ls
.end());
1830 std::vector
<string
>::iterator it
= ls
.begin(),
1832 for (; it
!= end
; ++it
) {
1833 const string
& fname
= *it
;
1835 if (fname
[fname
.size()-1] == '~')
1838 string style
= stylesdir
;
1842 if ((! stat(style
.c_str(), &statbuf
)) &&
1843 S_ISREG(statbuf
.st_mode
))
1844 stylesmenu
->insert(fname
, BScreen::SetStyle
, style
);
1847 stylesmenu
->update();
1850 stylesmenu
->setLabel(label
);
1851 menu
->insert(label
, stylesmenu
);
1852 rootmenuList
.push_back(stylesmenu
);
1855 blackbox
->addMenuTimestamp(stylesdir
);
1858 i18n(ScreenSet
, ScreenSTYLESDIRErrorNotDir
,
1859 "BScreen::parseMenuFile:"
1860 " [stylesdir/stylesmenu] error, %s is not a"
1861 " directory\n"), stylesdir
.c_str());
1865 i18n(ScreenSet
, ScreenSTYLESDIRErrorNoExist
,
1866 "BScreen::parseMenuFile: [stylesdir/stylesmenu]"
1867 " error, %s does not exist\n"), stylesdir
.c_str());
1872 case 1090: // workspaces
1876 i18n(ScreenSet
, ScreenWORKSPACESError
,
1877 "BScreen:parseMenuFile: [workspaces] error, "
1878 "no menu label defined\n"));
1882 menu
->insert(label
, workspacemenu
);
1891 return ((menu
->getCount() == 0) ? True
: False
);
1895 void BScreen::shutdown(void) {
1896 XSelectInput(blackbox
->getXDisplay(), getRootWindow(), NoEventMask
);
1897 XSync(blackbox
->getXDisplay(), False
);
1899 while(! windowList
.empty())
1900 unmanageWindow(windowList
.front(), True
);
1906 void BScreen::showPosition(int x
, int y
) {
1907 if (! geom_visible
) {
1908 XMoveResizeWindow(blackbox
->getXDisplay(), geom_window
,
1909 (getWidth() - geom_w
) / 2,
1910 (getHeight() - geom_h
) / 2, geom_w
, geom_h
);
1911 XMapWindow(blackbox
->getXDisplay(), geom_window
);
1912 XRaiseWindow(blackbox
->getXDisplay(), geom_window
);
1914 geom_visible
= True
;
1919 sprintf(label
, i18n(ScreenSet
, ScreenPositionFormat
,
1920 "X: %4d x Y: %4d"), x
, y
);
1922 XClearWindow(blackbox
->getXDisplay(), geom_window
);
1924 resource
.wstyle
.font
->drawString(geom_window
,
1925 resource
.bevel_width
, resource
.bevel_width
,
1926 resource
.wstyle
.l_text_focus
,
1931 void BScreen::showGeometry(unsigned int gx
, unsigned int gy
) {
1932 if (! geom_visible
) {
1933 XMoveResizeWindow(blackbox
->getXDisplay(), geom_window
,
1934 (getWidth() - geom_w
) / 2,
1935 (getHeight() - geom_h
) / 2, geom_w
, geom_h
);
1936 XMapWindow(blackbox
->getXDisplay(), geom_window
);
1937 XRaiseWindow(blackbox
->getXDisplay(), geom_window
);
1939 geom_visible
= True
;
1944 sprintf(label
, i18n(ScreenSet
, ScreenGeometryFormat
,
1945 "W: %4d x H: %4d"), gx
, gy
);
1947 XClearWindow(blackbox
->getXDisplay(), geom_window
);
1949 resource
.wstyle
.font
->drawString(geom_window
,
1950 resource
.bevel_width
, resource
.bevel_width
,
1951 resource
.wstyle
.l_text_focus
,
1956 void BScreen::hideGeometry(void) {
1958 XUnmapWindow(blackbox
->getXDisplay(), geom_window
);
1959 geom_visible
= False
;
1964 void BScreen::addStrut(Strut
*strut
) {
1965 strutList
.push_back(strut
);
1969 void BScreen::removeStrut(Strut
*strut
) {
1970 strutList
.remove(strut
);
1974 const Rect
& BScreen::availableArea(void) const {
1976 return getRect(); // return the full screen
1981 void BScreen::updateAvailableArea(void) {
1982 Rect old_area
= usableArea
;
1983 usableArea
= getRect(); // reset to full screen
1985 /* these values represent offsets from the screen edge
1986 * we look for the biggest offset on each edge and then apply them
1988 * do not be confused by the similarity to the names of Rect's members
1990 unsigned int current_left
= 0, current_right
= 0, current_top
= 0,
1993 StrutList::const_iterator it
= strutList
.begin(), end
= strutList
.end();
1995 for(; it
!= end
; ++it
) {
1997 if (strut
->left
> current_left
)
1998 current_left
= strut
->left
;
1999 if (strut
->top
> current_top
)
2000 current_top
= strut
->top
;
2001 if (strut
->right
> current_right
)
2002 current_right
= strut
->right
;
2003 if (strut
->bottom
> current_bottom
)
2004 current_bottom
= strut
->bottom
;
2007 usableArea
.setPos(current_left
, current_top
);
2008 usableArea
.setSize(usableArea
.width() - (current_left
+ current_right
),
2009 usableArea
.height() - (current_top
+ current_bottom
));
2011 if (old_area
!= usableArea
) {
2012 BlackboxWindowList::iterator it
= windowList
.begin(),
2013 end
= windowList
.end();
2014 for (; it
!= end
; ++it
)
2015 if ((*it
)->isMaximized()) (*it
)->remaximize();
2022 Workspace
* BScreen::getWorkspace(unsigned int index
) {
2023 assert(index
< workspacesList
.size());
2024 return workspacesList
[index
];
2028 void BScreen::buttonPressEvent(const XButtonEvent
*xbutton
) {
2029 if (xbutton
->button
== 1) {
2030 if (! isRootColormapInstalled())
2031 image_control
->installRootColormap();
2033 if (workspacemenu
->isVisible())
2034 workspacemenu
->hide();
2036 if (rootmenu
->isVisible())
2038 } else if (xbutton
->button
== 2) {
2039 int mx
= xbutton
->x_root
- (workspacemenu
->getWidth() / 2);
2040 int my
= xbutton
->y_root
- (workspacemenu
->getTitleHeight() / 2);
2045 if (mx
+ workspacemenu
->getWidth() > getWidth())
2046 mx
= getWidth() - workspacemenu
->getWidth() - getBorderWidth();
2048 if (my
+ workspacemenu
->getHeight() > getHeight())
2049 my
= getHeight() - workspacemenu
->getHeight() - getBorderWidth();
2051 workspacemenu
->move(mx
, my
);
2053 if (! workspacemenu
->isVisible()) {
2054 workspacemenu
->removeParent();
2055 workspacemenu
->show();
2057 } else if (xbutton
->button
== 3) {
2058 int mx
= xbutton
->x_root
- (rootmenu
->getWidth() / 2);
2059 int my
= xbutton
->y_root
- (rootmenu
->getTitleHeight() / 2);
2064 if (mx
+ rootmenu
->getWidth() > getWidth())
2065 mx
= getWidth() - rootmenu
->getWidth() - getBorderWidth();
2067 if (my
+ rootmenu
->getHeight() > getHeight())
2068 my
= getHeight() - rootmenu
->getHeight() - getBorderWidth();
2070 rootmenu
->move(mx
, my
);
2072 if (! rootmenu
->isVisible()) {
2073 blackbox
->checkMenu();
2077 } else if (xbutton
->button
== 4) {
2078 if (getCurrentWorkspaceID() >= getWorkspaceCount() - 1)
2079 changeWorkspaceID(0);
2081 changeWorkspaceID(getCurrentWorkspaceID() + 1);
2083 } else if (xbutton
->button
== 5) {
2084 if (getCurrentWorkspaceID() == 0)
2085 changeWorkspaceID(getWorkspaceCount() - 1);
2087 changeWorkspaceID(getCurrentWorkspaceID() - 1);
2092 void BScreen::toggleFocusModel(FocusModel model
) {
2093 std::for_each(windowList
.begin(), windowList
.end(),
2094 std::mem_fun(&BlackboxWindow::ungrabButtons
));
2096 if (model
== SloppyFocus
) {
2097 saveSloppyFocus(True
);
2099 // we're cheating here to save writing the config file 3 times
2100 resource
.auto_raise
= False
;
2101 resource
.click_raise
= False
;
2102 saveSloppyFocus(False
);
2105 std::for_each(windowList
.begin(), windowList
.end(),
2106 std::mem_fun(&BlackboxWindow::grabButtons
));
2110 BTexture
BScreen::readDatabaseTexture(const string
&rname
,
2111 const string
&default_color
,
2112 const Configuration
&style
) {
2116 if (style
.getValue(rname
, s
))
2117 texture
= BTexture(s
);
2119 texture
.setTexture(BTexture::Solid
| BTexture::Flat
);
2121 // associate this texture with this screen
2122 texture
.setDisplay(getBaseDisplay(), getScreenNumber());
2123 texture
.setImageControl(image_control
);
2125 if (texture
.texture() & BTexture::Solid
) {
2126 texture
.setColor(readDatabaseColor(rname
+ ".color",
2127 default_color
, style
));
2128 texture
.setColorTo(readDatabaseColor(rname
+ ".colorTo",
2129 default_color
, style
));
2130 } else if (texture
.texture() & BTexture::Gradient
) {
2131 texture
.setColor(readDatabaseColor(rname
+ ".color",
2132 default_color
, style
));
2133 texture
.setColorTo(readDatabaseColor(rname
+ ".colorTo",
2134 default_color
, style
));
2141 BColor
BScreen::readDatabaseColor(const string
&rname
,
2142 const string
&default_color
,
2143 const Configuration
&style
) {
2146 if (style
.getValue(rname
, s
))
2147 color
= BColor(s
, getBaseDisplay(), getScreenNumber());
2149 color
= BColor(default_color
, getBaseDisplay(), getScreenNumber());
2154 BFont
*BScreen::readDatabaseFont(const string
&rname
,
2155 const Configuration
&style
) {
2159 style
.getValue(rname
, s
); // if this fails, a blank string will be used,
2160 // which will cause the fallback font to load.
2162 BFont
*b
= new BFont(blackbox
->getXDisplay(), this, s
);
2164 exit(2); // can't continue without a font