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.
25 # include "../config.h"
26 #endif // HAVE_CONFIG_H
29 #include <X11/Xatom.h>
30 #include <X11/keysym.h>
39 #endif // HAVE_STDLIB_H
43 #endif // HAVE_STRING_H
47 #endif // HAVE_CTYPE_H
50 # include <sys/types.h>
52 #endif // HAVE_UNISTD_H
56 #endif // HAVE_DIRENT_H
60 #endif // HAVE_LOCALE_H
62 #ifdef HAVE_SYS_STAT_H
63 # include <sys/stat.h>
64 #endif // HAVE_SYS_STAT_H
68 #endif // HAVE_STDARG_H
76 #include "blackbox.hh"
77 #include "Clientmenu.hh"
79 #include "Iconmenu.hh"
83 #include "Rootmenu.hh"
87 #include "Workspace.hh"
88 #include "Workspacemenu.hh"
90 #ifndef FONT_ELEMENT_SIZE
91 #define FONT_ELEMENT_SIZE 50
92 #endif // FONT_ELEMENT_SIZE
95 static bool running
= True
;
97 static int anotherWMRunning(Display
*display
, XErrorEvent
*) {
98 fprintf(stderr
, i18n(ScreenSet
, ScreenAnotherWMRunning
,
99 "BScreen::BScreen: an error occured while querying the X server.\n"
100 " another window manager already running on display %s.\n"),
101 DisplayString(display
));
109 BScreen::BScreen(Blackbox
*bb
, unsigned int scrn
) : ScreenInfo(bb
, scrn
) {
111 screenstr
= (string
)"session.screen" + itostring(scrn
) + '.';
112 config
= blackbox
->getConfig();
114 event_mask
= ColormapChangeMask
| EnterWindowMask
| PropertyChangeMask
|
115 SubstructureRedirectMask
| ButtonPressMask
| ButtonReleaseMask
;
117 XErrorHandler old
= XSetErrorHandler((XErrorHandler
) anotherWMRunning
);
118 XSelectInput(getBaseDisplay()->getXDisplay(), getRootWindow(), event_mask
);
119 XSync(getBaseDisplay()->getXDisplay(), False
);
120 XSetErrorHandler((XErrorHandler
) old
);
123 if (! managed
) return;
125 fprintf(stderr
, i18n(ScreenSet
, ScreenManagingScreen
,
126 "BScreen::BScreen: managing screen %d "
127 "using visual 0x%lx, depth %d\n"),
128 getScreenNumber(), XVisualIDFromVisual(getVisual()),
133 resource
.mstyle
.t_fontset
= resource
.mstyle
.f_fontset
=
134 resource
.tstyle
.fontset
= resource
.wstyle
.fontset
= (XFontSet
) 0;
135 resource
.mstyle
.t_font
= resource
.mstyle
.f_font
= resource
.tstyle
.font
=
136 resource
.wstyle
.font
= (XFontStruct
*) 0;
139 pid_t bpid
= getpid();
141 XChangeProperty(blackbox
->getXDisplay(), getRootWindow(),
142 blackbox
->getBlackboxPidAtom(), XA_CARDINAL
,
143 sizeof(pid_t
) * 8, PropModeReplace
,
144 (unsigned char *) &bpid
, 1);
145 #endif // HAVE_GETPID
147 XDefineCursor(blackbox
->getXDisplay(), getRootWindow(),
148 blackbox
->getSessionCursor());
150 // start off full screen, top left.
151 usableArea
.setSize(getWidth(), getHeight());
154 new BImageControl(blackbox
, this, True
, blackbox
->getColorsPerChannel(),
155 blackbox
->getCacheLife(), blackbox
->getCacheMax());
156 image_control
->installRootColormap();
157 root_colormap_installed
= True
;
163 unsigned long gc_value_mask
= GCForeground
;
164 if (! i18n
.multibyte()) gc_value_mask
|= GCFont
;
166 gcv
.foreground
= WhitePixel(blackbox
->getXDisplay(), getScreenNumber())
167 ^ BlackPixel(blackbox
->getXDisplay(), getScreenNumber());
168 gcv
.function
= GXxor
;
169 gcv
.subwindow_mode
= IncludeInferiors
;
170 opGC
= XCreateGC(blackbox
->getXDisplay(), getRootWindow(),
171 GCForeground
| GCFunction
| GCSubwindowMode
, &gcv
);
173 const char *s
= i18n(ScreenSet
, ScreenPositionLength
,
174 "0: 0000 x 0: 0000");
177 if (i18n
.multibyte()) {
178 XRectangle ink
, logical
;
179 XmbTextExtents(resource
.wstyle
.fontset
, s
, l
, &ink
, &logical
);
180 geom_w
= logical
.width
;
182 geom_h
= resource
.wstyle
.fontset_extents
->max_ink_extent
.height
;
184 geom_h
= resource
.wstyle
.font
->ascent
+
185 resource
.wstyle
.font
->descent
;
187 geom_w
= XTextWidth(resource
.wstyle
.font
, s
, l
);
190 geom_w
+= (resource
.bevel_width
* 2);
191 geom_h
+= (resource
.bevel_width
* 2);
193 XSetWindowAttributes attrib
;
194 unsigned long mask
= CWBorderPixel
| CWColormap
| CWSaveUnder
;
195 attrib
.border_pixel
= getBorderColor()->pixel();
196 attrib
.colormap
= getColormap();
197 attrib
.save_under
= True
;
199 geom_window
= XCreateWindow(blackbox
->getXDisplay(), getRootWindow(),
200 0, 0, geom_w
, geom_h
, resource
.border_width
,
201 getDepth(), InputOutput
, getVisual(),
203 geom_visible
= False
;
205 BTexture
* texture
= &(resource
.wstyle
.l_focus
);
206 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
207 if (geom_pixmap
== ParentRelative
) {
208 texture
= &(resource
.wstyle
.t_focus
);
209 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
212 XSetWindowBackground(blackbox
->getXDisplay(), geom_window
,
213 texture
->color().pixel());
215 XSetWindowBackgroundPixmap(blackbox
->getXDisplay(),
216 geom_window
, geom_pixmap
);
218 workspacemenu
= new Workspacemenu(this);
219 iconmenu
= new Iconmenu(this);
220 configmenu
= new Configmenu(this);
222 Workspace
*wkspc
= (Workspace
*) 0;
223 if (resource
.workspaces
!= 0) {
224 for (unsigned int i
= 0; i
< resource
.workspaces
; ++i
) {
225 wkspc
= new Workspace(this, workspacesList
.size());
226 workspacesList
.push_back(wkspc
);
227 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu());
230 wkspc
= new Workspace(this, workspacesList
.size());
231 workspacesList
.push_back(wkspc
);
232 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu());
235 workspacemenu
->insert(i18n(IconSet
, IconIcons
, "Icons"), iconmenu
);
236 workspacemenu
->update();
238 current_workspace
= workspacesList
.front();
239 workspacemenu
->setItemSelected(2, True
);
241 toolbar
= new Toolbar(this);
243 slit
= new Slit(this);
250 updateAvailableArea();
252 changeWorkspaceID(0);
254 unsigned int i
, j
, nchild
;
255 Window r
, p
, *children
;
256 XQueryTree(blackbox
->getXDisplay(), getRootWindow(), &r
, &p
,
259 // preen the window list of all icon windows... for better dockapp support
260 for (i
= 0; i
< nchild
; i
++) {
261 if (children
[i
] == None
) continue;
263 XWMHints
*wmhints
= XGetWMHints(blackbox
->getXDisplay(),
267 if ((wmhints
->flags
& IconWindowHint
) &&
268 (wmhints
->icon_window
!= children
[i
])) {
269 for (j
= 0; j
< nchild
; j
++) {
270 if (children
[j
] == wmhints
->icon_window
) {
281 // manage shown windows
282 for (i
= 0; i
< nchild
; ++i
) {
283 if (children
[i
] == None
|| (! blackbox
->validateWindow(children
[i
])))
286 XWindowAttributes attrib
;
287 if (XGetWindowAttributes(blackbox
->getXDisplay(), children
[i
], &attrib
)) {
288 if (attrib
.override_redirect
) continue;
290 if (attrib
.map_state
!= IsUnmapped
) {
291 manageWindow(children
[i
]);
298 // call this again just in case a window we found updates the Strut list
299 updateAvailableArea();
303 BScreen::~BScreen(void) {
304 if (! managed
) return;
306 if (geom_pixmap
!= None
)
307 image_control
->removeImage(geom_pixmap
);
309 if (geom_window
!= None
)
310 XDestroyWindow(blackbox
->getXDisplay(), geom_window
);
312 std::for_each(workspacesList
.begin(), workspacesList
.end(),
315 std::for_each(iconList
.begin(), iconList
.end(), PointerAssassin());
317 std::for_each(netizenList
.begin(), netizenList
.end(), PointerAssassin());
320 delete workspacemenu
;
325 delete image_control
;
327 if (resource
.wstyle
.fontset
)
328 XFreeFontSet(blackbox
->getXDisplay(), resource
.wstyle
.fontset
);
329 if (resource
.mstyle
.t_fontset
)
330 XFreeFontSet(blackbox
->getXDisplay(), resource
.mstyle
.t_fontset
);
331 if (resource
.mstyle
.f_fontset
)
332 XFreeFontSet(blackbox
->getXDisplay(), resource
.mstyle
.f_fontset
);
333 if (resource
.tstyle
.fontset
)
334 XFreeFontSet(blackbox
->getXDisplay(), resource
.tstyle
.fontset
);
336 if (resource
.wstyle
.font
)
337 XFreeFont(blackbox
->getXDisplay(), resource
.wstyle
.font
);
338 if (resource
.mstyle
.t_font
)
339 XFreeFont(blackbox
->getXDisplay(), resource
.mstyle
.t_font
);
340 if (resource
.mstyle
.f_font
)
341 XFreeFont(blackbox
->getXDisplay(), resource
.mstyle
.f_font
);
342 if (resource
.tstyle
.font
)
343 XFreeFont(blackbox
->getXDisplay(), resource
.tstyle
.font
);
345 XFreeGC(blackbox
->getXDisplay(), opGC
);
349 void BScreen::removeWorkspaceNames(void) {
350 workspaceNames
.clear();
353 void BScreen::saveSloppyFocus(bool s
) {
354 resource
.sloppy_focus
= s
;
357 if (resource
.sloppy_focus
) {
358 fmodel
= "SloppyFocus";
359 if (resource
.auto_raise
) fmodel
+= " AutoRaise";
360 if (resource
.click_raise
) fmodel
+= " ClickRaise";
362 fmodel
= "ClickToFocus";
364 config
->setValue(screenstr
+ "focusModel", fmodel
);
368 void BScreen::saveAutoRaise(bool a
) {
369 resource
.auto_raise
= a
;
370 saveSloppyFocus(resource
.sloppy_focus
);
374 void BScreen::saveClickRaise(bool c
) {
375 resource
.click_raise
= c
;
376 saveSloppyFocus(resource
.sloppy_focus
);
380 void BScreen::saveImageDither(bool d
) {
381 image_control
->setDither(d
);
382 config
->setValue(screenstr
+ "imageDither", doImageDither());
386 void BScreen::saveOpaqueMove(bool o
) {
387 resource
.opaque_move
= o
;
388 config
->setValue(screenstr
+ "opaqueMove", resource
.opaque_move
);
392 void BScreen::saveFullMax(bool f
) {
393 resource
.full_max
= f
;
394 config
->setValue(screenstr
+ "fullMaximization", resource
.full_max
);
398 void BScreen::saveFocusNew(bool f
) {
399 resource
.focus_new
= f
;
400 config
->setValue(screenstr
+ "focusNewWindows", resource
.focus_new
);
404 void BScreen::saveFocusLast(bool f
) {
405 resource
.focus_last
= f
;
406 config
->setValue(screenstr
+ "focusLastWindow", resource
.focus_last
);
410 void BScreen::saveWorkspaces(unsigned int w
) {
411 resource
.workspaces
= w
;
412 config
->setValue(screenstr
+ "workspaces", resource
.workspaces
);
416 void BScreen::savePlacementPolicy(int p
) {
417 resource
.placement_policy
= p
;
418 const char *placement
;
419 switch (resource
.placement_policy
) {
420 case CascadePlacement
: placement
= "CascadePlacement"; break;
421 case ColSmartPlacement
: placement
= "ColSmartPlacement"; break;
422 case RowSmartPlacement
: default: placement
= "RowSmartPlacement"; break;
424 config
->setValue(screenstr
+ "windowPlacement", placement
);
428 void BScreen::saveEdgeSnapThreshold(int t
) {
429 resource
.edge_snap_threshold
= t
;
430 config
->setValue(screenstr
+ "edgeSnapThreshold",
431 resource
.edge_snap_threshold
);
435 void BScreen::saveRowPlacementDirection(int d
) {
436 resource
.row_direction
= d
;
437 config
->setValue(screenstr
+ "rowPlacementDirection",
438 resource
.row_direction
== LeftRight
?
439 "LeftToRight" : "RightToLeft");
443 void BScreen::saveColPlacementDirection(int d
) {
444 resource
.col_direction
= d
;
445 config
->setValue(screenstr
+ "colPlacementDirection",
446 resource
.col_direction
== TopBottom
?
447 "TopToBottom" : "BottomToTop");
452 void BScreen::saveStrftimeFormat(const std::string
& format
) {
453 resource
.strftime_format
= format
;
454 config
->setValue(screenstr
+ "strftimeFormat", resource
.strftime_format
);
457 #else // !HAVE_STRFTIME
459 void BScreen::saveDateFormat(int f
) {
460 resource
.date_format
= f
;
461 config
->setValue(screenstr
+ "dateFormat",
462 resource
.date_format
== B_EuropeanDate
?
463 "European" : "American");
467 void BScreen::saveClock24Hour(Bool c
) {
468 resource
.clock24hour
= c
;
469 config
->setValue(screenstr
+ "clockFormat", resource
.clock24hour
? 24 : 12);
471 #endif // HAVE_STRFTIME
474 void BScreen::saveWorkspaceNames() {
475 string save_string
= getWorkspace(0)->getName();
476 for (unsigned int i
= 1; i
< getWorkspaceCount(); ++i
)
477 save_string
+= ',' + getWorkspace(i
)->getName();
478 config
->setValue(screenstr
+ "workspaceNames", save_string
);
482 void BScreen::save_rc(void) {
483 saveSloppyFocus(resource
.sloppy_focus
);
484 saveAutoRaise(resource
.auto_raise
);
485 saveImageDither(doImageDither());
486 saveOpaqueMove(resource
.opaque_move
);
487 saveFullMax(resource
.full_max
);
488 saveFocusNew(resource
.focus_new
);
489 saveFocusLast(resource
.focus_last
);
490 saveWorkspaces(resource
.workspaces
);
491 savePlacementPolicy(resource
.placement_policy
);
492 saveEdgeSnapThreshold(resource
.edge_snap_threshold
);
493 saveRowPlacementDirection(resource
.row_direction
);
494 saveColPlacementDirection(resource
.col_direction
);
496 saveStrftimeFormat(resource
.strftime_format
);
497 #else // !HAVE_STRFTIME
498 saveDateFormat(resource
.date_format
);
499 savwClock24Hour(resource
.clock24hour
);
500 #endif // HAVE_STRFTIME
507 void BScreen::load_rc(void) {
511 if (! config
->getValue(screenstr
+ "fullMaximization", resource
.full_max
))
512 resource
.full_max
= false;
514 if (! config
->getValue(screenstr
+ "focusNewWindows", resource
.focus_new
))
515 resource
.focus_new
= false;
517 if (! config
->getValue(screenstr
+ "focusLastWindow", resource
.focus_last
))
518 resource
.focus_last
= false;
520 if (! config
->getValue(screenstr
+ "workspaces", resource
.workspaces
))
521 resource
.workspaces
= 1;
523 if (! config
->getValue(screenstr
+ "opaqueMove", resource
.opaque_move
))
524 resource
.opaque_move
= false;
526 if (! config
->getValue(screenstr
+ "imageDither", b
))
528 image_control
->setDither(b
);
530 if (! config
->getValue(screenstr
+ "edgeSnapThreshold",
531 resource
.edge_snap_threshold
))
532 resource
.edge_snap_threshold
= 4;
534 if (config
->getValue(screenstr
+ "rowPlacementDirection", s
) &&
536 resource
.row_direction
= RightLeft
;
538 resource
.row_direction
= LeftRight
;
540 if (config
->getValue(screenstr
+ "colPlacementDirection", s
) &&
542 resource
.col_direction
= BottomTop
;
544 resource
.col_direction
= TopBottom
;
546 removeWorkspaceNames();
547 if (config
->getValue(screenstr
+ "workspaceNames", s
)) {
548 string::const_iterator it
= s
.begin(), end
= s
.end();
550 string::const_iterator tmp
= it
; // current string.begin()
551 it
= std::find(tmp
, end
, ','); // look for comma between tmp and end
552 addWorkspaceName(string(tmp
, it
)); // s[tmp:it]
559 resource
.sloppy_focus
= true;
560 resource
.auto_raise
= false;
561 resource
.click_raise
= false;
562 if (config
->getValue(screenstr
+ "focusModel", s
)) {
563 if (s
.find("ClickToFocus") != string::npos
) {
564 resource
.sloppy_focus
= false;
567 if (s
.find("AutoRaise") != string::npos
)
568 resource
.auto_raise
= true;
569 if (s
.find("ClickRaise") != string::npos
)
570 resource
.click_raise
= true;
574 if (config
->getValue(screenstr
+ "windowPlacement", s
)) {
575 if (s
== "CascadePlacement")
576 resource
.placement_policy
= CascadePlacement
;
577 else if (s
== "ColSmartPlacement")
578 resource
.placement_policy
= ColSmartPlacement
;
579 else //if (s == "RowSmartPlacement")
580 resource
.placement_policy
= RowSmartPlacement
;
582 resource
.placement_policy
= RowSmartPlacement
;
585 if (config
->getValue(screenstr
+ "strftimeFormat", s
))
586 resource
.strftime_format
= s
;
588 resource
.strftime_format
= "%I:%M %p";
589 #else // !HAVE_STRFTIME
592 if (config
->getValue(screenstr
+ "dateFormat", s
) && s
== "European")
593 resource
.date_format
= B_EuropeanDate
;
595 resource
.date_format
= B_AmericanDate
;
597 if (! config
->getValue(screenstr
+ "clockFormat", l
))
599 resource
.clock24hour
= l
== 24;
600 #endif // HAVE_STRFTIME
604 void BScreen::reconfigure(void) {
611 unsigned long gc_value_mask
= GCForeground
;
612 if (! i18n
.multibyte()) gc_value_mask
|= GCFont
;
614 gcv
.foreground
= WhitePixel(blackbox
->getXDisplay(),
616 gcv
.function
= GXinvert
;
617 gcv
.subwindow_mode
= IncludeInferiors
;
618 XChangeGC(blackbox
->getXDisplay(), opGC
,
619 GCForeground
| GCFunction
| GCSubwindowMode
, &gcv
);
621 const char *s
= i18n(ScreenSet
, ScreenPositionLength
,
622 "0: 0000 x 0: 0000");
625 if (i18n
.multibyte()) {
626 XRectangle ink
, logical
;
627 XmbTextExtents(resource
.wstyle
.fontset
, s
, l
, &ink
, &logical
);
628 geom_w
= logical
.width
;
630 geom_h
= resource
.wstyle
.fontset_extents
->max_ink_extent
.height
;
632 geom_w
= XTextWidth(resource
.wstyle
.font
, s
, l
);
634 geom_h
= resource
.wstyle
.font
->ascent
+ resource
.wstyle
.font
->descent
;
637 geom_w
+= (resource
.bevel_width
* 2);
638 geom_h
+= (resource
.bevel_width
* 2);
640 BTexture
* texture
= &(resource
.wstyle
.l_focus
);
641 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
642 if (geom_pixmap
== ParentRelative
) {
643 texture
= &(resource
.wstyle
.t_focus
);
644 geom_pixmap
= texture
->render(geom_w
, geom_h
, geom_pixmap
);
647 XSetWindowBackground(blackbox
->getXDisplay(), geom_window
,
648 texture
->color().pixel());
650 XSetWindowBackgroundPixmap(blackbox
->getXDisplay(),
651 geom_window
, geom_pixmap
);
653 XSetWindowBorderWidth(blackbox
->getXDisplay(), geom_window
,
654 resource
.border_width
);
655 XSetWindowBorder(blackbox
->getXDisplay(), geom_window
,
656 resource
.border_color
.pixel());
658 workspacemenu
->reconfigure();
659 iconmenu
->reconfigure();
661 int remember_sub
= rootmenu
->getCurrentSubmenu();
664 rootmenu
->reconfigure();
665 rootmenu
->drawSubmenu(remember_sub
);
667 configmenu
->reconfigure();
669 toolbar
->reconfigure();
673 std::for_each(workspacesList
.begin(), workspacesList
.end(),
674 std::mem_fun(&Workspace::reconfigure
));
676 BlackboxWindowList::iterator iit
= iconList
.begin();
677 for (; iit
!= iconList
.end(); ++iit
) {
678 BlackboxWindow
*bw
= *iit
;
679 if (bw
->validateClient())
683 image_control
->timeout();
687 void BScreen::rereadMenu(void) {
691 rootmenu
->reconfigure();
695 void BScreen::LoadStyle(void) {
698 const char *sfile
= blackbox
->getStyleFilename();
700 style
.setFile(sfile
);
701 if (! style
.load()) {
702 style
.setFile(DEFAULTSTYLE
);
704 style
.create(); // hardcoded default values will be used.
710 // load fonts/fontsets
711 if (resource
.wstyle
.fontset
)
712 XFreeFontSet(blackbox
->getXDisplay(), resource
.wstyle
.fontset
);
713 if (resource
.tstyle
.fontset
)
714 XFreeFontSet(blackbox
->getXDisplay(), resource
.tstyle
.fontset
);
715 if (resource
.mstyle
.f_fontset
)
716 XFreeFontSet(blackbox
->getXDisplay(), resource
.mstyle
.f_fontset
);
717 if (resource
.mstyle
.t_fontset
)
718 XFreeFontSet(blackbox
->getXDisplay(), resource
.mstyle
.t_fontset
);
719 resource
.wstyle
.fontset
= 0;
720 resource
.tstyle
.fontset
= 0;
721 resource
.mstyle
.f_fontset
= 0;
722 resource
.mstyle
.t_fontset
= 0;
723 if (resource
.wstyle
.font
)
724 XFreeFont(blackbox
->getXDisplay(), resource
.wstyle
.font
);
725 if (resource
.tstyle
.font
)
726 XFreeFont(blackbox
->getXDisplay(), resource
.tstyle
.font
);
727 if (resource
.mstyle
.f_font
)
728 XFreeFont(blackbox
->getXDisplay(), resource
.mstyle
.f_font
);
729 if (resource
.mstyle
.t_font
)
730 XFreeFont(blackbox
->getXDisplay(), resource
.mstyle
.t_font
);
731 resource
.wstyle
.font
= 0;
732 resource
.tstyle
.font
= 0;
733 resource
.mstyle
.f_font
= 0;
734 resource
.mstyle
.t_font
= 0;
736 if (i18n
.multibyte()) {
737 resource
.wstyle
.fontset
= readDatabaseFontSet("window.font", style
);
738 resource
.tstyle
.fontset
= readDatabaseFontSet("toolbar.font", style
);
739 resource
.mstyle
.t_fontset
= readDatabaseFontSet("menu.title.font", style
);
740 resource
.mstyle
.f_fontset
= readDatabaseFontSet("menu.frame.font", style
);
742 resource
.mstyle
.t_fontset_extents
=
743 XExtentsOfFontSet(resource
.mstyle
.t_fontset
);
744 resource
.mstyle
.f_fontset_extents
=
745 XExtentsOfFontSet(resource
.mstyle
.f_fontset
);
746 resource
.tstyle
.fontset_extents
=
747 XExtentsOfFontSet(resource
.tstyle
.fontset
);
748 resource
.wstyle
.fontset_extents
=
749 XExtentsOfFontSet(resource
.wstyle
.fontset
);
751 resource
.wstyle
.font
= readDatabaseFont("window.font", style
);
752 resource
.tstyle
.font
= readDatabaseFont("toolbar.font", style
);
753 resource
.mstyle
.t_font
= readDatabaseFont("menu.title.font", style
);
754 resource
.mstyle
.f_font
= readDatabaseFont("menu.frame.font", style
);
757 // load window config
758 resource
.wstyle
.t_focus
=
759 readDatabaseTexture("window.title.focus", "white", style
);
760 resource
.wstyle
.t_unfocus
=
761 readDatabaseTexture("window.title.unfocus", "black", style
);
762 resource
.wstyle
.l_focus
=
763 readDatabaseTexture("window.label.focus", "white", style
);
764 resource
.wstyle
.l_unfocus
=
765 readDatabaseTexture("window.label.unfocus", "black", style
);
766 resource
.wstyle
.h_focus
=
767 readDatabaseTexture("window.handle.focus", "white", style
);
768 resource
.wstyle
.h_unfocus
=
769 readDatabaseTexture("window.handle.unfocus", "black", style
);
770 resource
.wstyle
.g_focus
=
771 readDatabaseTexture("window.grip.focus", "white", style
);
772 resource
.wstyle
.g_unfocus
=
773 readDatabaseTexture("window.grip.unfocus", "black", style
);
774 resource
.wstyle
.b_focus
=
775 readDatabaseTexture("window.button.focus", "white", style
);
776 resource
.wstyle
.b_unfocus
=
777 readDatabaseTexture("window.button.unfocus", "black", style
);
778 resource
.wstyle
.b_pressed
=
779 readDatabaseTexture("window.button.pressed", "black", style
);
780 resource
.wstyle
.f_focus
=
781 readDatabaseColor("window.frame.focusColor", "white", style
);
782 resource
.wstyle
.f_unfocus
=
783 readDatabaseColor("window.frame.unfocusColor", "black", style
);
784 resource
.wstyle
.l_text_focus
=
785 readDatabaseColor("window.label.focus.textColor", "black", style
);
786 resource
.wstyle
.l_text_unfocus
=
787 readDatabaseColor("window.label.unfocus.textColor", "white", style
);
788 resource
.wstyle
.b_pic_focus
=
789 readDatabaseColor("window.button.focus.picColor", "black", style
);
790 resource
.wstyle
.b_pic_unfocus
=
791 readDatabaseColor("window.button.unfocus.picColor", "white", style
);
793 resource
.wstyle
.justify
= LeftJustify
;
794 if (style
.getValue("window.justify", s
)) {
795 if (s
== "right" || s
== "Right")
796 resource
.wstyle
.justify
= RightJustify
;
797 else if (s
== "center" || s
== "Center")
798 resource
.wstyle
.justify
= CenterJustify
;
801 // load toolbar config
802 resource
.tstyle
.toolbar
=
803 readDatabaseTexture("toolbar", "black", style
);
804 resource
.tstyle
.label
=
805 readDatabaseTexture("toolbar.label", "black", style
);
806 resource
.tstyle
.window
=
807 readDatabaseTexture("toolbar.windowLabel", "black", style
);
808 resource
.tstyle
.button
=
809 readDatabaseTexture("toolbar.button", "white", style
);
810 resource
.tstyle
.pressed
=
811 readDatabaseTexture("toolbar.button.pressed", "black", style
);
812 resource
.tstyle
.clock
=
813 readDatabaseTexture("toolbar.clock", "black", style
);
814 resource
.tstyle
.l_text
=
815 readDatabaseColor("toolbar.label.textColor", "white", style
);
816 resource
.tstyle
.w_text
=
817 readDatabaseColor("toolbar.windowLabel.textColor", "white", style
);
818 resource
.tstyle
.c_text
=
819 readDatabaseColor("toolbar.clock.textColor", "white", style
);
820 resource
.tstyle
.b_pic
=
821 readDatabaseColor("toolbar.button.picColor", "black", style
);
823 resource
.tstyle
.justify
= LeftJustify
;
824 if (style
.getValue("toolbar.justify", s
)) {
825 if (s
== "right" || s
== "Right")
826 resource
.tstyle
.justify
= RightJustify
;
827 else if (s
== "center" || s
== "Center")
828 resource
.tstyle
.justify
= CenterJustify
;
832 resource
.mstyle
.title
=
833 readDatabaseTexture("menu.title", "white", style
);
834 resource
.mstyle
.frame
=
835 readDatabaseTexture("menu.frame", "black", style
);
836 resource
.mstyle
.hilite
=
837 readDatabaseTexture("menu.hilite", "white", style
);
838 resource
.mstyle
.t_text
=
839 readDatabaseColor("menu.title.textColor", "black", style
);
840 resource
.mstyle
.f_text
=
841 readDatabaseColor("menu.frame.textColor", "white", style
);
842 resource
.mstyle
.d_text
=
843 readDatabaseColor("menu.frame.disableColor", "black", style
);
844 resource
.mstyle
.h_text
=
845 readDatabaseColor("menu.hilite.textColor", "black", style
);
847 resource
.mstyle
.t_justify
= LeftJustify
;
848 if (style
.getValue("menu.title.justify", s
)) {
849 if (s
== "right" || s
== "Right")
850 resource
.mstyle
.t_justify
= RightJustify
;
851 else if (s
== "center" || s
== "Center")
852 resource
.mstyle
.t_justify
= CenterJustify
;
855 resource
.mstyle
.f_justify
= LeftJustify
;
856 if (style
.getValue("menu.frame.justify", s
)) {
857 if (s
== "right" || s
== "Right")
858 resource
.mstyle
.f_justify
= RightJustify
;
859 else if (s
== "center" || s
== "Center")
860 resource
.mstyle
.f_justify
= CenterJustify
;
863 resource
.mstyle
.bullet
= Basemenu::Triangle
;
864 if (style
.getValue("menu.bullet", s
)) {
865 if (s
== "empty" || s
== "Empty")
866 resource
.mstyle
.bullet
= Basemenu::Empty
;
867 else if (s
== "square" || s
== "Square")
868 resource
.mstyle
.bullet
= Basemenu::Square
;
869 else if (s
== "diamond" || s
== "Diamond")
870 resource
.mstyle
.bullet
= Basemenu::Diamond
;
873 resource
.mstyle
.bullet_pos
= Basemenu::Left
;
874 if (style
.getValue("menu.bullet.position", s
)) {
875 if (s
== "right" || s
== "Right")
876 resource
.mstyle
.bullet_pos
= Basemenu::Right
;
879 resource
.border_color
=
880 readDatabaseColor("borderColor", "black", style
);
882 // load bevel, border and handle widths
883 if (! style
.getValue("handleWidth", resource
.handle_width
) ||
884 resource
.handle_width
> (getWidth() / 2) || resource
.handle_width
== 0)
885 resource
.handle_width
= 6;
887 if (! style
.getValue("borderWidth", resource
.border_width
))
888 resource
.border_width
= 1;
890 if (! style
.getValue("bevelWidth", resource
.bevel_width
) ||
891 resource
.bevel_width
> (getWidth() / 2) || resource
.bevel_width
== 0)
892 resource
.bevel_width
= 3;
894 if (! style
.getValue("frameWidth", resource
.frame_width
) ||
895 resource
.frame_width
> (getWidth() / 2))
896 resource
.frame_width
= resource
.bevel_width
;
898 if (style
.getValue("rootCommand", s
))
899 bexec(s
, displayString());
903 void BScreen::addIcon(BlackboxWindow
*w
) {
906 w
->setWorkspace(BSENTINEL
);
907 w
->setWindowNumber(iconList
.size());
909 iconList
.push_back(w
);
911 const char* title
= w
->getIconTitle();
912 iconmenu
->insert(title
);
917 void BScreen::removeIcon(BlackboxWindow
*w
) {
922 iconmenu
->remove(w
->getWindowNumber());
925 BlackboxWindowList::iterator it
= iconList
.begin(),
926 end
= iconList
.end();
927 for (int i
= 0; it
!= end
; ++it
)
928 (*it
)->setWindowNumber(i
++);
932 BlackboxWindow
*BScreen::getIcon(unsigned int index
) {
933 if (index
< iconList
.size()) {
934 BlackboxWindowList::iterator it
= iconList
.begin();
935 for (; index
> 0; --index
, ++it
) ; /* increment to index */
939 return (BlackboxWindow
*) 0;
943 unsigned int BScreen::addWorkspace(void) {
944 Workspace
*wkspc
= new Workspace(this, workspacesList
.size());
945 workspacesList
.push_back(wkspc
);
946 saveWorkspaces(getWorkspaceCount() + 1);
947 saveWorkspaceNames();
949 workspacemenu
->insert(wkspc
->getName(), wkspc
->getMenu(),
951 workspacemenu
->update();
953 toolbar
->reconfigure();
955 updateNetizenWorkspaceCount();
957 return workspacesList
.size();
961 unsigned int BScreen::removeLastWorkspace(void) {
962 if (workspacesList
.size() == 1)
965 Workspace
*wkspc
= workspacesList
.back();
967 if (current_workspace
->getID() == wkspc
->getID())
968 changeWorkspaceID(current_workspace
->getID() - 1);
972 workspacemenu
->remove(wkspc
->getID() + 2);
973 workspacemenu
->update();
975 workspacesList
.pop_back();
978 saveWorkspaces(getWorkspaceCount() - 1);
979 saveWorkspaceNames();
981 toolbar
->reconfigure();
983 updateNetizenWorkspaceCount();
985 return workspacesList
.size();
989 void BScreen::changeWorkspaceID(unsigned int id
) {
990 if (! current_workspace
) return;
992 if (id
!= current_workspace
->getID()) {
993 current_workspace
->hideAll();
995 workspacemenu
->setItemSelected(current_workspace
->getID() + 2, False
);
997 if (blackbox
->getFocusedWindow() &&
998 blackbox
->getFocusedWindow()->getScreen() == this &&
999 (! blackbox
->getFocusedWindow()->isStuck())) {
1000 current_workspace
->setLastFocusedWindow(blackbox
->getFocusedWindow());
1001 blackbox
->setFocusedWindow((BlackboxWindow
*) 0);
1004 current_workspace
= getWorkspace(id
);
1006 workspacemenu
->setItemSelected(current_workspace
->getID() + 2, True
);
1007 toolbar
->redrawWorkspaceLabel(True
);
1009 current_workspace
->showAll();
1011 if (resource
.focus_last
&& current_workspace
->getLastFocusedWindow()) {
1012 XSync(blackbox
->getXDisplay(), False
);
1013 current_workspace
->getLastFocusedWindow()->setInputFocus();
1017 updateNetizenCurrentWorkspace();
1021 void BScreen::manageWindow(Window w
) {
1022 new BlackboxWindow(blackbox
, w
, this);
1024 BlackboxWindow
*win
= blackbox
->searchWindow(w
);
1028 windowList
.push_back(win
);
1030 XMapRequestEvent mre
;
1032 win
->restoreAttributes();
1033 win
->mapRequestEvent(&mre
);
1037 void BScreen::unmanageWindow(BlackboxWindow
*w
, bool remap
) {
1040 if (w
->getWorkspaceNumber() != BSENTINEL
&&
1041 w
->getWindowNumber() != BSENTINEL
)
1042 getWorkspace(w
->getWorkspaceNumber())->removeWindow(w
);
1043 else if (w
->isIconic())
1046 windowList
.remove(w
);
1048 if (blackbox
->getFocusedWindow() == w
)
1049 blackbox
->setFocusedWindow((BlackboxWindow
*) 0);
1051 removeNetizen(w
->getClientWindow());
1057 void BScreen::addNetizen(Netizen
*n
) {
1058 netizenList
.push_back(n
);
1060 n
->sendWorkspaceCount();
1061 n
->sendCurrentWorkspace();
1063 WorkspaceList::iterator it
= workspacesList
.begin();
1064 const WorkspaceList::iterator end
= workspacesList
.end();
1065 for (; it
!= end
; ++it
)
1066 (*it
)->sendWindowList(*n
);
1068 Window f
= ((blackbox
->getFocusedWindow()) ?
1069 blackbox
->getFocusedWindow()->getClientWindow() : None
);
1070 n
->sendWindowFocus(f
);
1074 void BScreen::removeNetizen(Window w
) {
1075 NetizenList::iterator it
= netizenList
.begin();
1076 for (; it
!= netizenList
.end(); ++it
) {
1077 if ((*it
)->getWindowID() == w
) {
1079 netizenList
.erase(it
);
1086 void BScreen::updateNetizenCurrentWorkspace(void) {
1087 std::for_each(netizenList
.begin(), netizenList
.end(),
1088 std::mem_fun(&Netizen::sendCurrentWorkspace
));
1092 void BScreen::updateNetizenWorkspaceCount(void) {
1093 std::for_each(netizenList
.begin(), netizenList
.end(),
1094 std::mem_fun(&Netizen::sendWorkspaceCount
));
1098 void BScreen::updateNetizenWindowFocus(void) {
1099 Window f
= ((blackbox
->getFocusedWindow()) ?
1100 blackbox
->getFocusedWindow()->getClientWindow() : None
);
1101 NetizenList::iterator it
= netizenList
.begin();
1102 for (; it
!= netizenList
.end(); ++it
)
1103 (*it
)->sendWindowFocus(f
);
1107 void BScreen::updateNetizenWindowAdd(Window w
, unsigned long p
) {
1108 NetizenList::iterator it
= netizenList
.begin();
1109 for (; it
!= netizenList
.end(); ++it
) {
1110 (*it
)->sendWindowAdd(w
, p
);
1115 void BScreen::updateNetizenWindowDel(Window w
) {
1116 NetizenList::iterator it
= netizenList
.begin();
1117 for (; it
!= netizenList
.end(); ++it
)
1118 (*it
)->sendWindowDel(w
);
1122 void BScreen::updateNetizenWindowRaise(Window w
) {
1123 NetizenList::iterator it
= netizenList
.begin();
1124 for (; it
!= netizenList
.end(); ++it
)
1125 (*it
)->sendWindowRaise(w
);
1129 void BScreen::updateNetizenWindowLower(Window w
) {
1130 NetizenList::iterator it
= netizenList
.begin();
1131 for (; it
!= netizenList
.end(); ++it
)
1132 (*it
)->sendWindowLower(w
);
1136 void BScreen::updateNetizenConfigNotify(XEvent
*e
) {
1137 NetizenList::iterator it
= netizenList
.begin();
1138 for (; it
!= netizenList
.end(); ++it
)
1139 (*it
)->sendConfigNotify(e
);
1143 void BScreen::raiseWindows(Window
*workspace_stack
, unsigned int num
) {
1145 Window
*session_stack
= new
1146 Window
[(num
+ workspacesList
.size() + rootmenuList
.size() + 13)];
1147 unsigned int i
= 0, k
= num
;
1149 XRaiseWindow(blackbox
->getXDisplay(), iconmenu
->getWindowID());
1150 *(session_stack
+ i
++) = iconmenu
->getWindowID();
1152 WorkspaceList::iterator wit
= workspacesList
.begin();
1153 const WorkspaceList::iterator w_end
= workspacesList
.end();
1154 for (; wit
!= w_end
; ++wit
)
1155 *(session_stack
+ i
++) = (*wit
)->getMenu()->getWindowID();
1157 *(session_stack
+ i
++) = workspacemenu
->getWindowID();
1159 *(session_stack
+ i
++) = configmenu
->getFocusmenu()->getWindowID();
1160 *(session_stack
+ i
++) = configmenu
->getPlacementmenu()->getWindowID();
1161 *(session_stack
+ i
++) = configmenu
->getWindowID();
1163 *(session_stack
+ i
++) = slit
->getMenu()->getDirectionmenu()->getWindowID();
1164 *(session_stack
+ i
++) = slit
->getMenu()->getPlacementmenu()->getWindowID();
1165 *(session_stack
+ i
++) = slit
->getMenu()->getWindowID();
1167 *(session_stack
+ i
++) =
1168 toolbar
->getMenu()->getPlacementmenu()->getWindowID();
1169 *(session_stack
+ i
++) = toolbar
->getMenu()->getWindowID();
1171 RootmenuList::iterator rit
= rootmenuList
.begin();
1172 for (; rit
!= rootmenuList
.end(); ++rit
)
1173 *(session_stack
+ i
++) = (*rit
)->getWindowID();
1174 *(session_stack
+ i
++) = rootmenu
->getWindowID();
1176 if (toolbar
->isOnTop())
1177 *(session_stack
+ i
++) = toolbar
->getWindowID();
1179 if (slit
->isOnTop())
1180 *(session_stack
+ i
++) = slit
->getWindowID();
1183 *(session_stack
+ i
++) = *(workspace_stack
+ k
);
1185 XRestackWindows(blackbox
->getXDisplay(), session_stack
, i
);
1187 delete [] session_stack
;
1191 void BScreen::addWorkspaceName(const string
& name
) {
1192 workspaceNames
.push_back(name
);
1197 * I would love to kill this function and the accompanying workspaceNames
1198 * list. However, we have a chicken and egg situation. The names are read
1199 * in during load_rc() which happens before the workspaces are created.
1200 * The current solution is to read the names into a list, then use the list
1201 * later for constructing the workspaces. It is only used during initial
1204 const string
BScreen::getNameOfWorkspace(unsigned int id
) {
1205 if (id
< workspaceNames
.size())
1206 return workspaceNames
[id
];
1211 void BScreen::reassociateWindow(BlackboxWindow
*w
, unsigned int wkspc_id
,
1212 bool ignore_sticky
) {
1215 if (wkspc_id
== BSENTINEL
)
1216 wkspc_id
= current_workspace
->getID();
1218 if (w
->getWorkspaceNumber() == wkspc_id
)
1221 if (w
->isIconic()) {
1223 getWorkspace(wkspc_id
)->addWindow(w
);
1224 } else if (ignore_sticky
|| ! w
->isStuck()) {
1225 getWorkspace(w
->getWorkspaceNumber())->removeWindow(w
);
1226 getWorkspace(wkspc_id
)->addWindow(w
);
1231 void BScreen::propagateWindowName(const BlackboxWindow
*bw
) {
1232 if (bw
->isIconic()) {
1233 iconmenu
->changeItemLabel(bw
->getWindowNumber(), bw
->getIconTitle());
1237 Clientmenu
*clientmenu
= getWorkspace(bw
->getWorkspaceNumber())->getMenu();
1238 clientmenu
->changeItemLabel(bw
->getWindowNumber(), bw
->getTitle());
1239 clientmenu
->update();
1241 if (blackbox
->getFocusedWindow() == bw
)
1242 toolbar
->redrawWindowLabel(True
);
1247 void BScreen::nextFocus(void) {
1248 BlackboxWindow
*focused
= blackbox
->getFocusedWindow(),
1252 // if window is not on this screen, ignore it
1253 if (focused
->getScreen()->getScreenNumber() != getScreenNumber())
1254 focused
= (BlackboxWindow
*) 0;
1257 if (focused
&& current_workspace
->getCount() > 1) {
1258 // next is the next window to recieve focus, current is a place holder
1259 BlackboxWindow
*current
;
1262 next
= current_workspace
->getNextWindowInList(current
);
1263 } while(! next
->setInputFocus() && next
!= focused
);
1265 if (next
!= focused
)
1266 current_workspace
->raiseWindow(next
);
1267 } else if (current_workspace
->getCount() >= 1) {
1268 next
= current_workspace
->getTopWindowOnStack();
1270 current_workspace
->raiseWindow(next
);
1271 next
->setInputFocus();
1276 void BScreen::prevFocus(void) {
1277 BlackboxWindow
*focused
= blackbox
->getFocusedWindow(),
1281 // if window is not on this screen, ignore it
1282 if (focused
->getScreen()->getScreenNumber() != getScreenNumber())
1283 focused
= (BlackboxWindow
*) 0;
1286 if (focused
&& current_workspace
->getCount() > 1) {
1287 // next is the next window to recieve focus, current is a place holder
1288 BlackboxWindow
*current
;
1291 next
= current_workspace
->getPrevWindowInList(current
);
1292 } while(! next
->setInputFocus() && next
!= focused
);
1294 if (next
!= focused
)
1295 current_workspace
->raiseWindow(next
);
1296 } else if (current_workspace
->getCount() >= 1) {
1297 next
= current_workspace
->getTopWindowOnStack();
1299 current_workspace
->raiseWindow(next
);
1300 next
->setInputFocus();
1305 void BScreen::raiseFocus(void) {
1306 BlackboxWindow
*focused
= blackbox
->getFocusedWindow();
1310 // if on this Screen, raise it
1311 if (focused
->getScreen()->getScreenNumber() == getScreenNumber()) {
1312 Workspace
*workspace
= getWorkspace(focused
->getWorkspaceNumber());
1313 workspace
->raiseWindow(focused
);
1318 void BScreen::InitMenu(void) {
1320 rootmenuList
.clear();
1322 while (rootmenu
->getCount())
1323 rootmenu
->remove(0);
1325 rootmenu
= new Rootmenu(this);
1327 bool defaultMenu
= True
;
1329 FILE *menu_file
= (FILE *) 0;
1330 const char *menu_filename
= blackbox
->getMenuFilename();
1333 if (! (menu_file
= fopen(menu_filename
, "r")))
1334 perror(menu_filename
);
1335 if (! menu_file
) { // opening the menu file failed, try the default menu
1336 menu_filename
= DEFAULTMENU
;
1337 if (! (menu_file
= fopen(menu_filename
, "r")))
1338 perror(menu_filename
);
1342 if (feof(menu_file
)) {
1343 fprintf(stderr
, i18n(ScreenSet
, ScreenEmptyMenuFile
,
1344 "%s: Empty menu file"),
1347 char line
[1024], label
[1024];
1348 memset(line
, 0, 1024);
1349 memset(label
, 0, 1024);
1351 while (fgets(line
, 1024, menu_file
) && ! feof(menu_file
)) {
1352 if (line
[0] != '#') {
1353 int i
, key
= 0, index
= -1, len
= strlen(line
);
1355 for (i
= 0; i
< len
; i
++) {
1356 if (line
[i
] == '[') index
= 0;
1357 else if (line
[i
] == ']') break;
1358 else if (line
[i
] != ' ')
1360 key
+= tolower(line
[i
]);
1363 if (key
== 517) { // [begin]
1365 for (i
= index
; i
< len
; i
++) {
1366 if (line
[i
] == '(') index
= 0;
1367 else if (line
[i
] == ')') break;
1368 else if (index
++ >= 0) {
1369 if (line
[i
] == '\\' && i
< len
- 1) i
++;
1370 label
[index
- 1] = line
[i
];
1374 if (index
== -1) index
= 0;
1375 label
[index
] = '\0';
1377 rootmenu
->setLabel(label
);
1378 defaultMenu
= parseMenuFile(menu_file
, rootmenu
);
1380 blackbox
->addMenuTimestamp(menu_filename
);
1390 rootmenu
->setInternalMenu();
1391 rootmenu
->insert(i18n(ScreenSet
, Screenxterm
, "xterm"),
1393 i18n(ScreenSet
, Screenxterm
, "xterm"));
1394 rootmenu
->insert(i18n(ScreenSet
, ScreenRestart
, "Restart"),
1396 rootmenu
->insert(i18n(ScreenSet
, ScreenExit
, "Exit"),
1398 rootmenu
->setLabel(i18n(BasemenuSet
, BasemenuBlackboxMenu
,
1404 bool BScreen::parseMenuFile(FILE *file
, Rootmenu
*menu
) {
1405 char line
[1024], label
[1024], command
[1024];
1407 while (! feof(file
)) {
1408 memset(line
, 0, 1024);
1409 memset(label
, 0, 1024);
1410 memset(command
, 0, 1024);
1412 if (fgets(line
, 1024, file
)) {
1413 if (line
[0] != '#') {
1414 int i
, key
= 0, parse
= 0, index
= -1, line_length
= strlen(line
);
1416 // determine the keyword
1417 for (i
= 0; i
< line_length
; i
++) {
1418 if (line
[i
] == '[') parse
= 1;
1419 else if (line
[i
] == ']') break;
1420 else if (line
[i
] != ' ')
1422 key
+= tolower(line
[i
]);
1425 // get the label enclosed in ()'s
1428 for (i
= 0; i
< line_length
; i
++) {
1429 if (line
[i
] == '(') {
1432 } else if (line
[i
] == ')') break;
1433 else if (index
++ >= 0) {
1434 if (line
[i
] == '\\' && i
< line_length
- 1) i
++;
1435 label
[index
- 1] = line
[i
];
1440 label
[index
] = '\0';
1445 // get the command enclosed in {}'s
1448 for (i
= 0; i
< line_length
; i
++) {
1449 if (line
[i
] == '{') {
1452 } else if (line
[i
] == '}') break;
1453 else if (index
++ >= 0) {
1454 if (line
[i
] == '\\' && i
< line_length
- 1) i
++;
1455 command
[index
- 1] = line
[i
];
1460 command
[index
] = '\0';
1467 return ((menu
->getCount() == 0) ? True
: False
);
1474 menu
->insert(label
);
1479 if ((! *label
) && (! *command
)) {
1480 fprintf(stderr
, i18n(ScreenSet
, ScreenEXECError
,
1481 "BScreen::parseMenuFile: [exec] error, "
1482 "no menu label and/or command defined\n"));
1486 menu
->insert(label
, BScreen::Execute
, command
);
1492 fprintf(stderr
, i18n(ScreenSet
, ScreenEXITError
,
1493 "BScreen::parseMenuFile: [exit] error, "
1494 "no menu label defined\n"));
1498 menu
->insert(label
, BScreen::Exit
);
1504 if ((! *label
) || (! *command
)) {
1506 i18n(ScreenSet
, ScreenSTYLEError
,
1507 "BScreen::parseMenuFile: [style] error, "
1508 "no menu label and/or filename defined\n"));
1512 string style
= expandTilde(command
);
1514 menu
->insert(label
, BScreen::SetStyle
, style
.c_str());
1521 fprintf(stderr
, i18n(ScreenSet
, ScreenCONFIGError
,
1522 "BScreen::parseMenufile: [config] error, "
1523 "no label defined"));
1527 menu
->insert(label
, configmenu
);
1531 case 740: // include
1534 fprintf(stderr
, i18n(ScreenSet
, ScreenINCLUDEError
,
1535 "BScreen::parseMenuFile: [include] error, "
1536 "no filename defined\n"));
1540 string newfile
= expandTilde(label
);
1541 FILE *submenufile
= fopen(newfile
.c_str(), "r");
1545 if (fstat(fileno(submenufile
), &buf
) ||
1546 (! S_ISREG(buf
.st_mode
))) {
1548 i18n(ScreenSet
, ScreenINCLUDEErrorReg
,
1549 "BScreen::parseMenuFile: [include] error: "
1550 "'%s' is not a regular file\n"), newfile
.c_str());
1554 if (! feof(submenufile
)) {
1555 if (! parseMenuFile(submenufile
, menu
))
1556 blackbox
->addMenuTimestamp(newfile
);
1558 fclose(submenufile
);
1561 perror(newfile
.c_str());
1567 case 767: // submenu
1570 fprintf(stderr
, i18n(ScreenSet
, ScreenSUBMENUError
,
1571 "BScreen::parseMenuFile: [submenu] error, "
1572 "no menu label defined\n"));
1576 Rootmenu
*submenu
= new Rootmenu(this);
1579 submenu
->setLabel(command
);
1581 submenu
->setLabel(label
);
1583 parseMenuFile(file
, submenu
);
1585 menu
->insert(label
, submenu
);
1586 rootmenuList
.push_back(submenu
);
1591 case 773: // restart
1594 fprintf(stderr
, i18n(ScreenSet
, ScreenRESTARTError
,
1595 "BScreen::parseMenuFile: [restart] error, "
1596 "no menu label defined\n"));
1601 menu
->insert(label
, BScreen::RestartOther
, command
);
1603 menu
->insert(label
, BScreen::Restart
);
1608 case 845: // reconfig
1612 i18n(ScreenSet
, ScreenRECONFIGError
,
1613 "BScreen::parseMenuFile: [reconfig] error, "
1614 "no menu label defined\n"));
1618 menu
->insert(label
, BScreen::Reconfigure
);
1623 case 995: // stylesdir
1624 case 1113: // stylesmenu
1626 bool newmenu
= ((key
== 1113) ? True
: False
);
1628 if ((! *label
) || ((! *command
) && newmenu
)) {
1630 i18n(ScreenSet
, ScreenSTYLESDIRError
,
1631 "BScreen::parseMenuFile: [stylesdir/stylesmenu]"
1632 " error, no directory defined\n"));
1636 char *directory
= ((newmenu
) ? command
: label
);
1638 string stylesdir
= expandTilde(directory
);
1640 struct stat statbuf
;
1642 if (! stat(stylesdir
.c_str(), &statbuf
)) {
1643 if (S_ISDIR(statbuf
.st_mode
)) {
1644 Rootmenu
*stylesmenu
;
1647 stylesmenu
= new Rootmenu(this);
1651 DIR *d
= opendir(stylesdir
.c_str());
1653 std::vector
<string
> ls
;
1655 while((p
= readdir(d
)))
1656 ls
.push_back(p
->d_name
);
1660 std::sort(ls
.begin(), ls
.end());
1662 std::vector
<string
>::iterator it
= ls
.begin(),
1664 for (; it
!= end
; ++it
) {
1665 const string
& fname
= *it
;
1667 if (fname
[fname
.size()-1] == '~')
1670 string style
= stylesdir
;
1674 if ((! stat(style
.c_str(), &statbuf
)) &&
1675 S_ISREG(statbuf
.st_mode
))
1676 stylesmenu
->insert(fname
, BScreen::SetStyle
, style
);
1679 stylesmenu
->update();
1682 stylesmenu
->setLabel(label
);
1683 menu
->insert(label
, stylesmenu
);
1684 rootmenuList
.push_back(stylesmenu
);
1687 blackbox
->addMenuTimestamp(stylesdir
);
1690 i18n(ScreenSet
, ScreenSTYLESDIRErrorNotDir
,
1691 "BScreen::parseMenuFile:"
1692 " [stylesdir/stylesmenu] error, %s is not a"
1693 " directory\n"), stylesdir
.c_str());
1697 i18n(ScreenSet
, ScreenSTYLESDIRErrorNoExist
,
1698 "BScreen::parseMenuFile: [stylesdir/stylesmenu]"
1699 " error, %s does not exist\n"), stylesdir
.c_str());
1704 case 1090: // workspaces
1708 i18n(ScreenSet
, ScreenWORKSPACESError
,
1709 "BScreen:parseMenuFile: [workspaces] error, "
1710 "no menu label defined\n"));
1714 menu
->insert(label
, workspacemenu
);
1723 return ((menu
->getCount() == 0) ? True
: False
);
1727 void BScreen::shutdown(void) {
1728 XSelectInput(blackbox
->getXDisplay(), getRootWindow(), NoEventMask
);
1729 XSync(blackbox
->getXDisplay(), False
);
1731 while(! windowList
.empty())
1732 unmanageWindow(windowList
.front(), True
);
1738 void BScreen::showPosition(int x
, int y
) {
1739 if (! geom_visible
) {
1740 XMoveResizeWindow(blackbox
->getXDisplay(), geom_window
,
1741 (getWidth() - geom_w
) / 2,
1742 (getHeight() - geom_h
) / 2, geom_w
, geom_h
);
1743 XMapWindow(blackbox
->getXDisplay(), geom_window
);
1744 XRaiseWindow(blackbox
->getXDisplay(), geom_window
);
1746 geom_visible
= True
;
1751 sprintf(label
, i18n(ScreenSet
, ScreenPositionFormat
,
1752 "X: %4d x Y: %4d"), x
, y
);
1754 XClearWindow(blackbox
->getXDisplay(), geom_window
);
1756 BPen
pen(resource
.wstyle
.l_text_focus
, resource
.wstyle
.font
);
1757 if (i18n
.multibyte()) {
1758 XmbDrawString(blackbox
->getXDisplay(), geom_window
,
1759 resource
.wstyle
.fontset
, pen
.gc(),
1760 resource
.bevel_width
, resource
.bevel_width
-
1761 resource
.wstyle
.fontset_extents
->max_ink_extent
.y
,
1762 label
, strlen(label
));
1764 XDrawString(blackbox
->getXDisplay(), geom_window
,
1765 pen
.gc(), resource
.bevel_width
,
1766 resource
.wstyle
.font
->ascent
+ resource
.bevel_width
,
1767 label
, strlen(label
));
1772 void BScreen::showGeometry(unsigned int gx
, unsigned int gy
) {
1773 if (! geom_visible
) {
1774 XMoveResizeWindow(blackbox
->getXDisplay(), geom_window
,
1775 (getWidth() - geom_w
) / 2,
1776 (getHeight() - geom_h
) / 2, geom_w
, geom_h
);
1777 XMapWindow(blackbox
->getXDisplay(), geom_window
);
1778 XRaiseWindow(blackbox
->getXDisplay(), geom_window
);
1780 geom_visible
= True
;
1785 sprintf(label
, i18n(ScreenSet
, ScreenGeometryFormat
,
1786 "W: %4d x H: %4d"), gx
, gy
);
1788 XClearWindow(blackbox
->getXDisplay(), geom_window
);
1790 BPen
pen(resource
.wstyle
.l_text_focus
, resource
.wstyle
.font
);
1791 if (i18n
.multibyte()) {
1792 XmbDrawString(blackbox
->getXDisplay(), geom_window
,
1793 resource
.wstyle
.fontset
, pen
.gc(),
1794 resource
.bevel_width
, resource
.bevel_width
-
1795 resource
.wstyle
.fontset_extents
->max_ink_extent
.y
,
1796 label
, strlen(label
));
1798 XDrawString(blackbox
->getXDisplay(), geom_window
,
1799 pen
.gc(), resource
.bevel_width
,
1800 resource
.wstyle
.font
->ascent
+
1801 resource
.bevel_width
, label
, strlen(label
));
1806 void BScreen::hideGeometry(void) {
1808 XUnmapWindow(blackbox
->getXDisplay(), geom_window
);
1809 geom_visible
= False
;
1814 void BScreen::addStrut(Strut
*strut
) {
1815 strutList
.push_back(strut
);
1819 void BScreen::removeStrut(Strut
*strut
) {
1820 strutList
.remove(strut
);
1824 const Rect
& BScreen::availableArea(void) const {
1826 return getRect(); // return the full screen
1831 void BScreen::updateAvailableArea(void) {
1832 Rect old_area
= usableArea
;
1833 usableArea
= getRect(); // reset to full screen
1835 /* these values represent offsets from the screen edge
1836 * we look for the biggest offset on each edge and then apply them
1838 * do not be confused by the similarity to the names of Rect's members
1840 unsigned int current_left
= 0, current_right
= 0, current_top
= 0,
1843 StrutList::const_iterator it
= strutList
.begin(), end
= strutList
.end();
1845 for(; it
!= end
; ++it
) {
1847 if (strut
->left
> current_left
)
1848 current_left
= strut
->left
;
1849 if (strut
->top
> current_top
)
1850 current_top
= strut
->top
;
1851 if (strut
->right
> current_right
)
1852 current_right
= strut
->right
;
1853 if (strut
->bottom
> current_bottom
)
1854 current_bottom
= strut
->bottom
;
1857 usableArea
.setPos(current_left
, current_top
);
1858 usableArea
.setSize(usableArea
.width() - (current_left
+ current_right
),
1859 usableArea
.height() - (current_top
+ current_bottom
));
1861 if (old_area
!= usableArea
) {
1862 BlackboxWindowList::iterator it
= windowList
.begin(),
1863 end
= windowList
.end();
1864 for (; it
!= end
; ++it
)
1865 if ((*it
)->isMaximized()) (*it
)->remaximize();
1870 Workspace
* BScreen::getWorkspace(unsigned int index
) {
1871 assert(index
< workspacesList
.size());
1872 return workspacesList
[index
];
1876 void BScreen::buttonPressEvent(XButtonEvent
*xbutton
) {
1877 if (xbutton
->button
== 1) {
1878 if (! isRootColormapInstalled())
1879 image_control
->installRootColormap();
1881 if (workspacemenu
->isVisible())
1882 workspacemenu
->hide();
1884 if (rootmenu
->isVisible())
1886 } else if (xbutton
->button
== 2) {
1887 int mx
= xbutton
->x_root
- (workspacemenu
->getWidth() / 2);
1888 int my
= xbutton
->y_root
- (workspacemenu
->getTitleHeight() / 2);
1893 if (mx
+ workspacemenu
->getWidth() > getWidth())
1894 mx
= getWidth() - workspacemenu
->getWidth() - getBorderWidth();
1896 if (my
+ workspacemenu
->getHeight() > getHeight())
1897 my
= getHeight() - workspacemenu
->getHeight() - getBorderWidth();
1899 workspacemenu
->move(mx
, my
);
1901 if (! workspacemenu
->isVisible()) {
1902 workspacemenu
->removeParent();
1903 workspacemenu
->show();
1905 } else if (xbutton
->button
== 3) {
1906 int mx
= xbutton
->x_root
- (rootmenu
->getWidth() / 2);
1907 int my
= xbutton
->y_root
- (rootmenu
->getTitleHeight() / 2);
1912 if (mx
+ rootmenu
->getWidth() > getWidth())
1913 mx
= getWidth() - rootmenu
->getWidth() - getBorderWidth();
1915 if (my
+ rootmenu
->getHeight() > getHeight())
1916 my
= getHeight() - rootmenu
->getHeight() - getBorderWidth();
1918 rootmenu
->move(mx
, my
);
1920 if (! rootmenu
->isVisible()) {
1921 blackbox
->checkMenu();
1928 void BScreen::toggleFocusModel(FocusModel model
) {
1929 if (model
== SloppyFocus
) {
1930 saveSloppyFocus(True
);
1932 saveSloppyFocus(False
);
1933 saveAutoRaise(False
);
1934 saveClickRaise(False
);
1941 void BScreen::updateFocusModel()
1943 std::for_each(workspacesList
.begin(), workspacesList
.end(),
1944 std::mem_fun(&Workspace::updateFocusModel
));
1948 BTexture
BScreen::readDatabaseTexture(const string
&rname
,
1949 const string
&default_color
,
1950 Configuration
&style
) {
1954 if (style
.getValue(rname
, s
))
1955 texture
= BTexture(s
);
1957 texture
.setTexture(BTexture::Solid
| BTexture::Flat
);
1959 // associate this texture with this screen
1960 texture
.setDisplay(getBaseDisplay(), getScreenNumber());
1961 texture
.setImageControl(image_control
);
1963 if (texture
.texture() & BTexture::Solid
) {
1964 texture
.setColor(readDatabaseColor(rname
+ ".color",
1965 default_color
, style
));
1966 texture
.setColorTo(readDatabaseColor(rname
+ ".colorTo",
1967 default_color
, style
));
1968 } else if (texture
.texture() & BTexture::Gradient
) {
1969 texture
.setColor(readDatabaseColor(rname
+ ".color",
1970 default_color
, style
));
1971 texture
.setColorTo(readDatabaseColor(rname
+ ".colorTo",
1972 default_color
, style
));
1979 BColor
BScreen::readDatabaseColor(const string
&rname
,
1980 const string
&default_color
,
1981 Configuration
&style
) {
1984 if (style
.getValue(rname
, s
))
1985 color
= BColor(s
, getBaseDisplay(), getScreenNumber());
1987 color
= BColor(default_color
, getBaseDisplay(), getScreenNumber());
1992 XFontSet
BScreen::readDatabaseFontSet(const string
&rname
,
1993 Configuration
&style
) {
1994 char *defaultFont
= "fixed";
1996 bool load_default
= True
;
1998 XFontSet fontset
= 0;
1999 if (style
.getValue(rname
, s
) && (fontset
= createFontSet(s
)))
2000 load_default
= False
;
2003 fontset
= createFontSet(defaultFont
);
2007 i18n(ScreenSet
, ScreenDefaultFontLoadFail
,
2008 "BScreen::setCurrentStyle(): couldn't load default font.\n"));
2017 XFontStruct
*BScreen::readDatabaseFont(const string
&rname
,
2018 Configuration
&style
) {
2019 char *defaultFont
= "fixed";
2021 bool load_default
= False
;
2023 XFontStruct
*font
= 0;
2024 if (style
.getValue(rname
, s
)) {
2025 if ((font
= XLoadQueryFont(blackbox
->getXDisplay(), s
.c_str())) == NULL
) {
2027 i18n(ScreenSet
, ScreenFontLoadFail
,
2028 "BScreen::setCurrentStyle(): couldn't load font '%s'\n"),
2031 load_default
= True
;
2034 load_default
= True
;
2038 font
= XLoadQueryFont(blackbox
->getXDisplay(), defaultFont
);
2041 i18n(ScreenSet
, ScreenDefaultFontLoadFail
,
2042 "BScreen::setCurrentStyle(): couldn't load default font.\n"));
2051 #ifndef HAVE_STRCASESTR
2052 static const char * strcasestr(const char *str
, const char *ptn
) {
2053 const char *s2
, *p2
;
2054 for(; *str
; str
++) {
2055 for(s2
=str
,p2
=ptn
; ; s2
++,p2
++) {
2056 if (! *p2
) return str
;
2057 if (toupper(*s2
) != toupper(*p2
)) break;
2062 #endif // HAVE_STRCASESTR
2065 static const char *getFontElement(const char *pattern
, char *buf
,
2071 va_start(va
, bufsiz
);
2073 buf
[bufsiz
-2] = '*';
2074 while((v
= va_arg(va
, char *)) != NULL
) {
2075 p
= strcasestr(pattern
, v
);
2077 strncpy(buf
, p
+1, bufsiz
-2);
2078 p2
= strchr(buf
, '-');
2085 strncpy(buf
, "*", bufsiz
);
2090 static const char *getFontSize(const char *pattern
, int *size
) {
2092 const char *p2
=NULL
;
2095 for (p
=pattern
; 1; p
++) {
2097 if (p2
!=NULL
&& n
>1 && n
<72) {
2098 *size
= n
; return p2
+1;
2100 *size
= 16; return NULL
;
2102 } else if (*p
=='-') {
2103 if (n
>1 && n
<72 && p2
!=NULL
) {
2108 } else if (*p
>='0' && *p
<='9' && p2
!=NULL
) {
2118 XFontSet
BScreen::createFontSet(const string
&fontname
) {
2120 char **missing
, *def
= "-";
2121 int nmissing
, pixel_size
= 0, buf_size
= 0;
2122 char weight
[FONT_ELEMENT_SIZE
], slant
[FONT_ELEMENT_SIZE
];
2124 fs
= XCreateFontSet(blackbox
->getXDisplay(),
2125 fontname
.c_str(), &missing
, &nmissing
, &def
);
2126 if (fs
&& (! nmissing
))
2129 const char *nfontname
= fontname
.c_str();
2130 #ifdef HAVE_SETLOCALE
2132 if (nmissing
) XFreeStringList(missing
);
2134 setlocale(LC_CTYPE
, "C");
2135 fs
= XCreateFontSet(blackbox
->getXDisplay(), fontname
.c_str(),
2136 &missing
, &nmissing
, &def
);
2137 setlocale(LC_CTYPE
, "");
2139 #endif // HAVE_SETLOCALE
2142 XFontStruct
**fontstructs
;
2144 XFontsOfFontSet(fs
, &fontstructs
, &fontnames
);
2145 nfontname
= fontnames
[0];
2148 getFontElement(nfontname
, weight
, FONT_ELEMENT_SIZE
,
2149 "-medium-", "-bold-", "-demibold-", "-regular-", NULL
);
2150 getFontElement(nfontname
, slant
, FONT_ELEMENT_SIZE
,
2151 "-r-", "-i-", "-o-", "-ri-", "-ro-", NULL
);
2152 getFontSize(nfontname
, &pixel_size
);
2154 if (! strcmp(weight
, "*"))
2155 strncpy(weight
, "medium", FONT_ELEMENT_SIZE
);
2156 if (! strcmp(slant
, "*"))
2157 strncpy(slant
, "r", FONT_ELEMENT_SIZE
);
2160 else if (pixel_size
> 97)
2163 buf_size
= strlen(nfontname
) + (FONT_ELEMENT_SIZE
* 2) + 64;
2164 char *pattern2
= new char[buf_size
];
2167 "-*-*-%s-%s-*-*-%d-*-*-*-*-*-*-*,"
2168 "-*-*-*-*-*-*-%d-*-*-*-*-*-*-*,*",
2169 nfontname
, weight
, slant
, pixel_size
, pixel_size
);
2170 nfontname
= pattern2
;
2173 XFreeStringList(missing
);
2175 XFreeFontSet(blackbox
->getXDisplay(), fs
);
2177 fs
= XCreateFontSet(blackbox
->getXDisplay(), nfontname
, &missing
,