aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-07-06added more apps to fbgmmathias1-7/+12
2005-07-05respect border size in the MoveTo action, especially at the right and lowermathias2-2/+4
border of the screen.
2005-07-05added kcommander, Valknut, dcgui-qt, quickdc, asami, amsn to fbgmmathias2-4/+8
2005-07-04cleaning, change getCount to numberOfWorkspacesfluxgen3-22/+22
2005-07-04cleaning, change getCount to numberOfWorkspacesfluxgen4-12/+27
2005-07-04cleaning, change getCount to numberOfWorkspacefluxgen8-65/+46
2005-06-30Fix #1223780, fbgm updatedmathias2-2/+7
- added gnome-alsamixer - use "kfmclient openProfile filemanagement" for konqueror as filebrowser
2005-06-30if we check the time only ever second we can get into trouble, eg:mathias2-3/+7
assume its 12:34:56.99, displaying 12:34:56 takes some time and so its already 12:34:57 when we display 12:34:56. to fix that i set the time to check the clock to 0.01 seconds. that shouldnt hurt much since we only redraw the clock when the string has changed. a more complex approach would be to analyze the strftime-string and set the timeout accordingly. but i dont know if its really worth the effort and beeing a bit off schedule can happen too, just not as often as if you are in seconds mode.
2005-06-28Add missing ``template <>`` befor ThemeItem<Font>::setDefaultValue.grubert1-1/+1
2005-06-28- Fix for toggling the toolbar doesnt update strut (thanx C. Monti)mathias2-25/+19
- Little reordering of ToolbarMenu items, more important ones to the top and "edit current ws" out... maybe we should think of another way of providing menus for the tools .. submenus?
2005-06-23minor fix for window menufluxgen1-2/+4
2005-06-23added forgotten _FBNLS;mathias1-0/+1
2005-06-23updatefluxgen1-0/+9
2005-06-23moved window menu from FluxboxWindow to BScreenfluxgen1-2/+6
2005-06-23added showSubmenu in MenuItemfluxgen3-3/+11
2005-06-23moved window menu from FluxboxWindow to BScreenfluxgen16-283/+303
2005-06-23new filesfluxgen4-1/+83
2005-06-19fix handling of shaded and iconic windows, particularly on restartsimonb2-44/+47
2005-06-19revert 4055, caused crashes plus it should be done differentlysimonb2-12/+18
2005-06-19change fbwinframe to use containersimonb5-269/+269
move a few frame ops to have most code in Container
2005-06-18updated changesmathias1-1/+1
2005-06-18fbgm used non-portable grep - option (-m) which is now replaced bymathias2-6/+9
grep | head -n 1
2005-06-18Fixes #1116965, shadwd windows on restart:mathias2-16/+14
shaded icons behaved badly on restart, they went into a real stupid state: somehow shaded, but at the same time iconic, so you werent able to unshade, resize them properly. i fixed that by applying NormalState on shutdowntime (see FluxboxWindow::restore(), unshading a shaded frame to get good window dimensions and on init() i mark the window initialized and connect it to Fluxbox::attachSignals() a bit later.
2005-06-18Screen.cc: not used codemathias2-5/+1
fbgm.in: added amarok
2005-06-17*.font.shadow.x and *.font.shadow.x were not correctly read or better,mathias2-3/+11
misinterpreted. so the shadow'ed text was written direct underneath the normal text .. and hence invisible.
2005-06-16little typo which prevented shadowcolor beeing setmathias1-1/+1
2005-06-15Enhanced MoveTo, fixes #1074568mathias4-14/+93
MoveTo <int|*> <int|*> <Reference Corner> - * means "use current value" - Reference Corner is one of: - UpperLeft, Upper, UpperRight - Left, Right - LowerLeft, Lower, Right examples: MoveTo 0 * Left -> snap to left workspace edge MoveTo * 0 Lower -> snap to lower workspace edge MoveTo 0 0 UpperRight -> snap to upper right workspace corner TODO: perhaps add some "aliases" to make it more userfriendly
2005-06-15fixes #1198192, added vlc to fbgmmathias2-1/+3
2005-06-15Fixes #1213003, SendToWorkspace shouldnt followmathias4-2/+61
SendToWorkspace and the rest are putting the window onto the new workspace silently, TakeToWorkspace warps to the new workspace with the window.
2005-06-15Fixes #1216020, *.font.effect wont get cleared if not defined in stylemathias2-1/+18
2005-06-08most used items should appear ontop of a menu. so i reordered themathias2-22/+45
workspacemenu a bit to fit that idea.
2005-06-07Fixed justification in WorkspaceNameTool #1213262, values were set after themathias2-4/+9
render() call was made.
2005-06-04added -screen to -helpmathias1-0/+1
2005-06-03Add fullscreen command.grubert1-0/+1
2005-06-03- Usage of xft-fonts is prefered, except a font-description starts with '-'mathias18-280/+239
- Removed "antialias"-option completly, to enable/disable "antialias" use either <fontname>:antialias=<bool> in the style or use Xft.antialias: <bool> in your .Xdefaults - Added new styleresources: *.font.effect: <halo|shadow> *.font.shadow.x : <int> - shadow x offset *.font.shadow.y : <int> - shadow y offset *.font.shadow.color : <color> - color of shadow *.font.halo.color : <color> - color of halo - Removed 'shadow' and 'halo' options from fontdefinitions: !! Style authors have to update their styles !! - Simplified XmbFontImp to not try all possible fonts to match locale - Style authors may specify multiple fonts: <font1>|<font2>|<font3> if loading of font1 fails, fluxbox probes <font2>, etc. The last font is "fixed". Hints for style authors: - if xft tries to load a font it will _ALWAYS_ return a valid font, it doesnt have to look like the one you want to have, read more about it: http://fontconfig.org/fontconfig-user.html - export XFT_DEBUG=1 before running fluxbox helps to see which fonts are picked. eg: *.font: Verdana,Arial-12:antialias=true|-artwiz-snap-*- if fluxbox is compiled with xft this will NEVER try to load "-artwiz-snap-*-" since xft gives for sure a font, most likely Verdana or Arial but noone knows. So, if fluxbox has no xft support the first fontpattern fails and fluxbox tries the next one, which might be successful. if everything fails, it will use "fixed" - Added caching of fonts, fonts are only loaded once. - Fixed #1090902 (slow utf8 start)
2005-06-03deleted the "fallback"-code, which was one of the reasons for slowing downmathias1-44/+2
fluxbox in utf8-locales: if no fontset is found up to this point its because of a) no such font b) not supported locale if we try our best and enhance the basename-list and add some more generic patterns the xserver will give us a valid fontset .. which is good coz we have something to work with but which is BAD coz we return a valid fontset as if we have found the font the user wants .. so, every fallback in higher level code will fail coz we find a valid fontset by any meaning here. if no fontset can be found, the "fixed"-fontset should be there already.
2005-06-02updated changesmathias1-0/+12
2005-06-02* patch from vadim <suhanov_vadim@mail.ru>:mathias1-0/+5
"_BLACKBOX_NOTIFY_WINDOW_ADD was emited before _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING lists updates."
2005-06-02* patch from vadim <suhanov_vadim@mail.ru>:mathias1-1/+1
"when i iconify some window it disappears from _NET_CLIENT_LIST until Ewmh::updateClientLis are been called again."
2005-06-02* _NET_WM_STATE_HIDDEN is now used correctly -> if the window goes iconic, thismathias2-12/+33
state is set... what about moving it outside of the visible area? we need to think about this. * mixing _NET_WM_STATE_HIDDEN and _NET_WM_STATE_SKIP_TASKBAR is solved, we dont do this anymore * we dont use _NET_WM_STATE_SKIP_PAGER .. so we shouldnt delete it, thats handled now correctly -> look at the *State() - functions
2005-05-27fix for dest dir, thanks php-coderfluxgen1-0/+2
2005-05-27fix for dest dir, thanks php-coderfluxgen1-0/+14
2005-05-27be_BY translation by Kirill A. Shutemov k.shutemov at sam-solutions dot netfluxgen1-1/+5
2005-05-27be_BY translation by Kirill A. Shutemov k.shutemov at sam-solutions dot netfluxgen1-0/+1
2005-05-27be_BY translation by Kirill A. Shutemov k.shutemov at sam-solutions dot netfluxgen1-1/+1
2005-05-27be_BY translation by Kirill A. Shutemov k.shutemov at sam-solutions dot netfluxgen2-0/+290
2005-05-20updatefluxgen1-0/+8
2005-05-20added the ability to use keycode in keys filefluxgen1-2/+20
2005-05-18locale pathfluxgen22-106/+128
2005-05-18updatefluxgen1-0/+5