summaryrefslogtreecommitdiff
path: root/mcwm.c
AgeCommit message (Expand)Author
2010-07-20Typo.Michael Cardell Widerkrantz
2010-07-20Oops. Forgot ; at end of PDEBUG(). Didn't notice since I compiledMichael Cardell Widerkrantz
2010-07-20Use SHIFTMOD as defined in config.h. Thanks to Christian NeukirchenMichael Cardell Widerkrantz
2010-07-19win may have been used uninitialized!Michael Cardell Widerkrantz
2010-07-19Used the wrong types for width and height in several places!Michael Cardell Widerkrantz
2010-07-19Use new helper functions to get geometry to avoid memory leaks.Michael Cardell Widerkrantz
2010-07-19Added Y, U, B and N keys to move focused window to corners.Michael Cardell Widerkrantz
2010-07-18Don't warp pointer to the same place it already was at when doingMichael Cardell Widerkrantz
2010-07-17Keep window relative pointer position when resizing with keyboard. IfMichael Cardell Widerkrantz
2010-07-17Keep pointer position relative window when moving with keyboard.Michael Cardell Widerkrantz
2010-07-17Save cursor position inside of window when moving or resizing. Go backMichael Cardell Widerkrantz
2010-07-17Get rid of unused variables for storing starting point of pointer whenMichael Cardell Widerkrantz
2010-07-17If we resize a window and the pointer just happens to be on top ofMC
2010-07-13Missed a pixel in height and width when moving with mouse.MC
2010-07-10Added helpful comment about how we might want to change unmapMC
2010-07-10Instead of counting UnmapNotify events, which might get fouled up if aMC
2010-07-10Support setting of border colour of fixed windows from commandMC
2010-07-10Only handle visible windows when starting.MC
2010-07-09Handle UnmapNotify events. We find the window in the current workspaceMC
2010-07-09Fixed bug when we could resize a bit outside the root window.MC
2010-07-08Warp pointer when unmaximizing.MC
2010-07-07First, perhaps naive, implementation to rearrange windows when screenMC
2010-07-07Store coordinates and geometry when maximizing so we can revert.MC
2010-07-07Better start at workspace 0 as well, then. Ahem.MC
2010-07-07_NET_WM_DESKTOP considers 0 as the first logical desktop. So we use 0MC
2010-07-01Ooops! Deleted the wrong client(s)! Moved delfromworkspace() *into*20100701-3MC
2010-07-01Call top functions with a struct client instead of window. Check forMC
2010-07-01Only set border colour on fixed windows when the user specifically setMC
2010-07-01When changing workspaces, remove fixed windows from the current andMC
2010-07-01Give some feedback about fixed windows by changing their focus colour.MC
2010-07-01Delete a window from the workspace list as well when it is destroyed.MC
2010-06-30Ahem. *Unsigned* 32 bit integer.MC
2010-06-30We say in getting and setting properties that the workspace number isMC
2010-06-30Move adding to workspace from setupwin() to setupscreen() and newwin()MC
2010-06-30Always change to first workspace when starting.MC
2010-06-30Special treatment for focus on fixed windows.MC
2010-06-30Unfocus before unmapping and only if we have a focus.MC
2010-06-30Forget old focus before mapping new windows on new workspace.MC
2010-06-30Added really simple handling of _NET_WM_DESKTOP so windows will belongMC
2010-06-30Don't check for sameness if focuswin is NULL already.MC
2010-06-30Added virtual workspaces.MC
2010-06-30We don't really need to remember coordinates and geometry for everyMC
2010-06-29Added focus change from keyboard, Mod2-TAB. For now, it's a simpleMC
2010-06-24Added debug printouts for incoming events.MC
2010-06-24Added real colour handling and -f and -u options for setting them.MC
2010-06-23We need both normal and ungrab enter notify events.MC
2010-06-23Ignore windows with override redirect set when initializing at start.MC
2010-06-23Move terminal variable into struct conf.MC
2010-06-23Handle a request to set border width, but only set it to BORDERWIDTH.MC
2010-06-23A MapRequest always place the window on top in the stacking order.MC