summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-09-12check for errno while parsing the deco maskMathias Gumz1-4/+9
2009-08-08allow navigating multi-column menus with left and right arrowsMark Tiefenbruck2-4/+23
2009-08-08more fixes for fluxconf mangling the keys fileMark Tiefenbruck1-0/+7
2009-07-24make autohide only show the border or 1 pixel if borderlessMark Tiefenbruck2-34/+28
2009-06-28allow matching screen number in ClientPatternMark Tiefenbruck2-1/+14
2009-06-28hide the menu when you click on a windowMark Tiefenbruck1-2/+1
2009-06-28change default toolbar tools to:Mark Tiefenbruck3-28/+8
prevworkspace, workspacename, nextworkspace, iconbar, systemtray, clock
2009-06-28make Raise/LowerLayer accept integer argument for number of layers, default 2Mark Tiefenbruck4-15/+33
2009-06-28fix changing iconbar alignment and button width from init fileMark Tiefenbruck2-1/+6
2009-06-28allow 'Ctrl' and 'Alt' as modifiers in keys fileMark Tiefenbruck1-0/+2
2009-06-28allow "lower" as a reference point for MoveTo, etc.Mark Tiefenbruck1-1/+1
2009-06-28previous fix for reverting iconbar to relative broke external tabsMark Tiefenbruck3-22/+32
2009-06-28change default toolbar head from 0 to 1Mark Tiefenbruck1-1/+1
2009-06-28add window menu and alt-tab to error case for keys fileMark Tiefenbruck1-0/+3
2009-06-28revert to relative iconbar alignment when too many windows are openMark Tiefenbruck1-23/+16
2009-06-25use current workspace in ClientPattern when client has no FbWindowMark Tiefenbruck1-6/+5
2009-05-26Merge branch 'mousefocus'Jim Ramsay5-3/+55
2009-05-26Allow 'background: unset'Jim Ramsay1-0/+4
When a user sets 'background: none' it really means "Do not let themes touch the background I have already set with fbsetbg" -> It does still actually call fbsetbeg to re-assert the proper background. This new value 'unset' is for users who will use an alternate method to set their background (root-tail, xscreensaver, or whatever). It instructs fluxbox to *never* run fbsetbg.
2009-05-26Error on incomplete MacroCmd key commandJim Ramsay1-7/+9
2009-05-26Exit loop for unterminated { } pairJim Ramsay1-1/+1
2009-05-25minor cosmeticsMathias Gumz2-2/+2
2009-03-09Ignore EnterNotify on workspace changeJim Ramsay1-0/+3
Changing workspaces also reveals other windows, which causes unexpected focus changes.
2009-03-04src/TextDialog.cc: removed useless stdexcept header inclusion.Slava Semushin1-1/+0
No functional change. Signed-off-by: Slava Semushin <php-coder@altlinux.ru>
2009-03-04src/Keys.cc(deleteTree): use FbTk::STLUtil::destroyAndClearSecond() instead ↵Slava Semushin1-3/+5
of self-written code. No functional change. Signed-off-by: Slava Semushin <php-coder@altlinux.ru>
2009-03-04Renamed function svnversion() to gitrevision() because now we uses GIT.Slava Semushin2-4/+4
No functional change. Signed-off-by: Slava Semushin <php-coder@altlinux.ru>
2009-03-04buildfix: fluxbox didnt link when configured with --disable-rememberMathias Gumz2-2/+6
2009-02-27Ignore EnterNotify on Move or ResizeJim Ramsay1-0/+3
Moving and Resizing windows can reveal other windows, which of course can change unexpected focus changes in focus-follows-mouse.
2009-02-27Ignore EnterNotify on LowerJim Ramsay1-0/+4
Lower is one of the actions which may reveal a window under the current mouse pointer which would unexpectedly change focus under focus-folows-mouse.
2009-02-27Ignore EnterNotify on UnmapJim Ramsay1-0/+5
This is the basic condition that was first noticed because of the effect of the ClientMenu window unmapping and the resulting EnterNotify event stealing focus from the window selected in that menu. But to be complete, any window unmapping should cause focus to move to the next in the last-recently-focused window list, not the one that happens to be beneath the mouse cursor.
2009-02-27Added facility to selectively ignore EnterNotify eventsJim Ramsay3-3/+40
This will be used to avoid some situations where an EnterNotify event should not focus the window beneath the mouse cursor. For example, when a menu (or any window for that matter) is unmapped, focus should not pass to whatever window is beneath the current location of the mouse cursor, but to the previous window in the focus list. This was first noticed when using the ClientMenu feature with focus-follows-mouse on -> The focus would always end up on the window beneath the mouse pointer, not the window selected in the menu.
2009-02-24remove unnecessary xpm.h include in imlib codeMark Tiefenbruck1-2/+0
2009-01-11fixed resize bug (caused by typo, see #2498507)Peter Hercek1-1/+1
2008-11-02don't reload keys file on modifier map events, just re-grab keysMark Tiefenbruck3-1/+8
2008-10-19increase default size of toolbar and icon buttonsMark Tiefenbruck2-2/+2
2008-10-15unrevert 1fdef35e51Mark Tiefenbruck1-14/+0
x Mathias should listen to me when I say "by the way, I know you liked the code I just removed; you should change your keys file to use :MacroCmd {Focus} {Raise} {StartMoving}". Behavior in 1.0.0 and previous was that alt+click would focus and raise, regardless of whether the window was moved or not. If mathias really wants his alt+drag to preserve stacking order, he should add Mouse<N>Move events to the keys file to distinguish moving from clicking. I've been planning on doing it anyway.
2008-10-15additional fix for the resize bugMathias Gumz1-1/+3
2008-10-15reverted 1fdef35e51, added more info about that featureMathias Gumz1-0/+14
2008-10-15don't allow resizing to negative dimensionsMathias Gumz2-22/+32
this fixes a problem when the user resizes a window over the opposite border. as a result a signed overflow occured which lead to quite huge windows.
2008-10-15ignore XRandr events that don't actually change the screen sizeMark Tiefenbruck5-22/+22
2008-10-13merge menuDelay and menuDelayClose optionsMark Tiefenbruck5-26/+9
2008-10-12focus window when done dragging to a new workspace with outline movingMark Tiefenbruck1-5/+3
2008-10-09using namespace instead of a useless classMathias Gumz3-56/+21
2008-10-09don't show window on new workspace when warping with outline movingMark Tiefenbruck3-53/+21
2008-10-07show/hide tooltip if title length changes enough while mouse is over the ↵Mark Tiefenbruck1-8/+7
iconbutton
2008-10-07fix windows mapping into IconicState againMark Tiefenbruck1-0/+3
2008-10-07remove some unneeded codeMark Tiefenbruck1-9/+0
2008-10-07allow relative path for background images in style filesMark Tiefenbruck3-19/+25
2008-10-05remove menu modesMark Tiefenbruck7-70/+2
2008-10-05remove follow modelsMark Tiefenbruck4-158/+3
2008-10-05remove line style resources from init fileMark Tiefenbruck4-41/+0