Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-23 | Affected by last patch.20111124 | Michael Cardell Widerkrantz | |
2011-11-23 | Simplified and renamed start_terminal() to start() which can start any | Michael Cardell Widerkrantz | |
program. Skip the double fork() and explicitly ignore SIGCHLD to fend off zombies. Added support for mouse buttons on root window to optionally start a program with start(). By default mouse button three starts mcmenu which must be in PATH. | |||
2011-11-17 | *** empty log message *** | Michael Cardell Widerkrantz | |
2011-11-17 | Rewrote ConfigureRequest handling. Don't obey window moves not | Michael Cardell Widerkrantz | |
initiated by user. Always fit window on physical screen. | |||
2011-11-17 | topright didn't consider start of physical screen. Only worked on | Michael Cardell Widerkrantz | |
screen 1. | |||
2011-11-17 | -b no longer boolean. Now sets border width in number of pixels. | Michael Cardell Widerkrantz | |
2011-09-14 | Note about configurereq. | Michael Cardell Widerkrantz | |
2011-08-29 | Added section about compiling under Debian. | Michael Cardell Widerkrantz | |
2011-08-18 | Bump.20110818 | Michael Cardell Widerkrantz | |
2011-08-15 | *** empty log message *** | Michael Cardell Widerkrantz | |
2011-08-15 | Don't try to follow an empty monlist (use of NULL pointer!). | Michael Cardell Widerkrantz | |
2011-08-15 | getopt() returns int, you moron! | Michael Cardell Widerkrantz | |
2011-08-12 | Find closest screen added. | Michael Cardell Widerkrantz | |
2011-08-12 | It was still possible to map a window on coordinates outside physical | Michael Cardell Widerkrantz | |
screens. Now hopefully fixed, if not perfectly: If a window isn't bound to any physical screen it will be bound in newwin() to the first screen mcwm knows about. In fitonscreen() I forgot to check for the case where window coordinates are larger than the screen's. | |||
2011-07-26 | Warp to middle of window instead of corner when tabbing. Makes it | Michael Cardell Widerkrantz | |
easier if you want to paste something with middle button without having to move the pointer to get pointer focus first. | |||
2011-07-26 | Removed if 0 comment with struct information. | Michael Cardell Widerkrantz | |
2011-07-24 | mon_width and mon_x are not used when maximizing vertically. Removed. | Michael Cardell Widerkrantz | |
2011-07-21 | Bump.20110721 | Michael Cardell Widerkrantz | |
2011-07-21 | Use the X server's Save Set to store the windows we know about. This | Michael Cardell Widerkrantz | |
means they will be get automatically mapped and reparented if mcwm exits even if it crashes. Simplified cleanup() to reflect the above change. We still need to change the keyboard focus policy from mcwm's default to follow pointer instead. If mcwm crashes completely before we reach cleanup() this might become a problem. All the windows will be mapped but there won't be a keyboard focus and no way to change it. I don't know how to fix that right now. Don't attempt to catch SIGSEGV. Might be dangerous. | |||
2011-07-21 | Merge branch 'master' of /home/mc/public_www/git/mcwm | Michael Cardell Widerkrantz | |
2011-07-21 | Clarified. | Michael Cardell Widerkrantz | |
Added exec in .xinitrc example. | |||
2011-07-20 | *** empty log message ***randr | Michael Cardell Widerkrantz | |
2011-07-20 | New todo items. | Michael Cardell Widerkrantz | |
2011-07-20 | In commit 98d81f75a3e8509e841f9e180e2104e45f6460c5 committed on Jun | Michael Cardell Widerkrantz | |
20, 2010, I decided to use pointer hints instead of pointer motion notify to possible speed up things. In commit 381e642a39187f615ba54955ef02d1e2fcf1f95d on Jul 17, 2010, I reverted and wrote: Stop querying for pointer position ourself. Don't use motion hinting anymore and get real coordinates with motion event. See Gajewska and Manasse: "Why X Is Not Our Ideal Window System". Since getting a trackball with high CPI and experiencing how slow moves and resizes suddenly were, especially when decreasing mouse acceleration, this is clearly wrong. The right way *is* to subscribe to just motion hints and request pointer coordinates ourselves. | |||
2011-06-23 | Use getgeom() in setupwin(). | Michael Cardell Widerkrantz | |
Don't use getgeom() when we're done resizing or moving. We already know the geometry of the client window. | |||
2011-06-23 | Removed unnecessary call to getgeom(). | Michael Cardell Widerkrantz | |
2011-06-23 | When forgetting about a client, forget about it on *all* workspaces it | Michael Cardell Widerkrantz | |
might be on. If fixed, it's now on all of them. | |||
2011-06-23 | Use freeitem() instead of explicitly freeing from global window list. | Michael Cardell Widerkrantz | |
If a window is unmapped and we are going to forget about it we need to take into consideration if it's currently focused. | |||
2011-06-21 | arrangewindows() rewritten. We already know the geometry of windows | Michael Cardell Widerkrantz | |
since we track it all the time now. Only call arrangewindows() when root window changes geometry if we don't have RANDR. Otherwise, we call getrandr() when we get a XCB_RANDR_SCREEN_CHANGE_NOTIFY event. Added comments. When a monitor gets a new mode in an RANDR scenario, we track the x,y position and width,height. If we lose a monitor, we add the windows on that monitor to another monitor. | |||
2011-06-20 | More news. | Michael Cardell Widerkrantz | |
2011-06-20 | Defined constant WORKSPACES for number of workspaces instead of | Michael Cardell Widerkrantz | |
WORKSPACE_MAX and used it consistently. When fixing a window in fixwindow() we now add the window to all workspace window lists except current in which it already should be present. This means fixed windows are always a natural part of the window list. No special treatment means that we don't muck around with the order of the lists when changing workspaces. | |||
2011-06-07 | Declare all functions static. | Michael Cardell Widerkrantz | |
2011-06-07 | * New function configurerequest(). Moved ConfigureRequest code to its | Michael Cardell Widerkrantz | |
own function. In configurerequest(), consider monitor size when changing window coordinates and size. Forgot events() declaration! | |||
2011-06-07 | No need to get geometry in newwin(). We do that in setupwin(). | Michael Cardell Widerkrantz | |
When we get a ConfigureRequest() we mustn't stop if the window is unknown to us. This might be a client that hasn't even tried to map itself yet! Work around it. | |||
2011-06-05 | Comments. | Michael Cardell Widerkrantz | |
2011-06-04 | Take output coordinates into consideration when resizing with limits. | Michael Cardell Widerkrantz | |
2011-06-04 | When we get a ConfigureRequest for coords or size we need to update | Michael Cardell Widerkrantz | |
the client. | |||
2011-06-01 | Removed unused active variable. | Michael Cardell Widerkrantz | |
Removed done FIXMEs. | |||
2011-06-01 | New modes. | Michael Cardell Widerkrantz | |
2011-06-01 | Done item marked.20110601 | Michael Cardell Widerkrantz | |
2011-06-01 | Removed done items. | Michael Cardell Widerkrantz | |
Rephrase. | |||
2011-06-01 | News. | Michael Cardell Widerkrantz | |
2011-06-01 | Added new keys. | Michael Cardell Widerkrantz | |
2011-06-01 | Always set borders again after unmaxing when we move to new screen. | Michael Cardell Widerkrantz | |
Count borders in width and height when fitting on screen. Remove unneccessary getgeom() from topright(). We know the geometry. | |||
2011-06-01 | Moving to corners must change client's coords. | Michael Cardell Widerkrantz | |
2011-05-31 | Link with xcb-randr. | Michael Cardell Widerkrantz | |
2011-05-31 | New keys. | Michael Cardell Widerkrantz | |
2011-05-31 | Added functions. | Michael Cardell Widerkrantz | |
2011-05-31 | Added functions freeitem() and delallitems(). | Michael Cardell Widerkrantz | |
2011-05-31 | Removed done RANDR stuff. Added undone. | Michael Cardell Widerkrantz | |