aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
AgeCommit message (Collapse)AuthorFilesLines
2006-07-04new windows don't steal focus from fullscreen windowsmarkt1-2/+9
2006-07-03fix gravitysimonb1-27/+32
2006-06-28more focus issues with linear cycling and tabbed windowsmarkt1-0/+1
2006-06-28one more focus issue on detachmarkt1-0/+1
2006-06-28Fix some focus issues on detach and restartmarkt1-2/+4
2006-06-26fix _NET_FRAME_EXTENTSsimonb1-4/+3
2006-06-26Fix FocusHidden (added m_focus_hidden to FluxboxWindow)markt1-0/+2
2006-06-25Fix DetachClient key command so new window is visiblemarkt1-0/+3
2006-06-24Make Urgency Hint flash the correct WinClient's tab.markt1-1/+18
2006-06-22Added patch from Jim Ramsay (i dot am at jimramsay dot com) to freelymathias1-18/+24
define the used modkey. Added new action SetModKey too
2006-06-19 Fix window placement when apps remembers size but not locationsimonb1-0/+7
2006-06-19try ignoring NotifyUngrab to fix focus revert issues when closing simonb1-1/+1
unmanaged windows that grab pointer
2006-06-18added support for _NET_WM_WINDOW_TYPE_DIALOG and _NET_FRAME_EXTENTSfluxgen1-0/+4
2006-06-11support for _NET_WM_MOVERESIZEfluxgen1-20/+34
2006-05-16issue with maximise and quadrant resizesimonb1-0/+8
2006-05-13fixed some redraw issues with the title, thanks _marktfluxgen1-1/+2
2006-05-13added new signal, attentionSig(), will notify listeners when this window ↵fluxgen1-0/+1
demands attention
2006-05-07handle utf-8 strings properly.simonb1-1/+1
use utf8 internally
2006-04-26resize and notify client when autogroupingsimonb1-0/+6
2006-04-24Use -Wall when --enable-debug and some warning fixes simonb1-2/+1
+ thanks Jonas Koelker
2006-04-23focus a window if it's the only one.simonb1-1/+2
Thanks Jonas Koelker
2006-04-19mouse focus fixes - thanks Scott Kuhl: skuhl AT cs utah edusimonb1-2/+2
2006-04-17iconbutton handling fixessimonb1-0/+5
2006-04-16fix all compiler warnings with -Wallsimonb1-6/+8
2006-04-14fix window button image updatessimonb1-0/+1
2006-04-11situation: a maximized xterm changes its size (coz the user changes the font).mathias1-61/+75
after unmaximizing the window it snaps back to its old values .. which are not in sync with the sizehints anymore. hence we need to apply them for maximizing / unmaximizing and unfullscreen to avoid ugly visual appearance.
2006-04-02size_t fixes, thanks Semushin Slava aka php-coderfluxgen1-1/+1
2006-03-22more external tab work, tidying and tab width config optionsimonb1-7/+0
2006-03-22external tabs features and bugfixessimonb1-30/+77
2006-03-20external tabssimonb1-12/+49
2006-03-18We now create titlebar resource session.screen<num>.titlbar.left/right on ↵fluxgen1-56/+124
the fly here instead of fluxbox.cc
2006-02-20moved class Layer from class Fluxbox and thus reduces some dependeciesfluxgen1-7/+6
2006-02-19Added center resize. Resizes all corners at the same time.fluxgen1-14/+41
2006-02-19FbWinFrame should not depend on class Fluxboxfluxgen1-1/+2
2006-02-18moved all focus handling to FocusControlfluxgen1-1/+1
2006-02-18moved all focus handling to class FocusControlfluxgen1-9/+10
2006-02-16updated copyright infomathias1-1/+1
2006-01-16applied patch from php-coder to fix some warnings, mostly signed vs unsignedmathias1-4/+4
issues
2006-01-03unused headersfluxgen1-1/+0
2005-12-22removed unused variablefluxgen1-2/+0
2005-11-22indentationfluxgen1-25/+25
2005-10-19Fixed reordering of tabs, patch from Rob Stevensmathias1-5/+5
2005-10-04avoid drawing the resize outline when not really resizing, caused flickering.mathias1-18/+30
2005-09-16reverted last change .. the problem of the user must be handled ↵mathias1-1/+1
differently... never commit after 3 hours of sleep again.
2005-09-16LeftMouseButton should always setInputFocus() to avoid focus problemsmathias1-1/+1
when changing the active window via NextWindow/PrevWindow and then not beeing able to set the focus of the window underneath the mouse with a simple click again (in MouseFocus - mode). Suggestion via mail to devel-ml from Eike von Seggern
2005-09-08tweak last patch for titlebar scroll optionssimonb1-2/+3
2005-09-07Add titlebar scrolling options (thanks Krzysiek Pawlik ↵simonb1-0/+30
<krzysiek.pawlik__AT__people.pl>) New init options added: session.screenN.windowScrollAction: Shade|NextTab - set the action that happens when scrolling on the titlebar session.screenN.windowScrollReverse: true|false - reverse the action direction
2005-09-04added feature request #1084510:mathias1-0/+4
when mod1 + leftmouse are clicked on a window and the mouse is not moved, the window is raised at leftmouserelease. i dont think we need an extra option for that since its very unobtrusive but neat to have.
2005-07-25Fix for #1240248, Segfaults for :MoveTabLeft/Rightmathias1-14/+10
wrong code in Container.cc
2005-07-20Changed some *Focus options, just to make some things a bit more clear.mathias1-15/+13
the "Sloppy" was always a bit .. unprecise. removed SloppyFocus, SemiSloppyFocus and ClickToFocus options added MouseFocus, ClickFocus, MouseTabFocus, ClickTabFocus - MouseFocus - change the focus to the window under the mouse (almost similar to the 'old' SloppyFocus) - ClickFocus - change the focus to the window the user clicks - MouseTabFocus - change active tabclient to the one under the mouse in titlebar, does NOT change the focus - ClickTabFocus - change active tabclient when clicked onto a tabbutton to achieve former SemiSloppyFocus behavior one needs MouseFocus and ClickTabFocus