about summary refs log tree commit diff
path: root/client.c
Commit message (Collapse)AuthorAgeFilesLines
* huge amount of cleanup and dead code removal.oga2008-01-161-36/+0
| | | | | | | | | | | | | | | | | | | | | | | | | full description of changes: -remove fontlist, and all associated structures/calls, it's not needed. this also removes any doubt about leftover 9wm code (the list was borrowed from it). Since cwm now uses Xft for everything, the legacy font handling is just not needed. -add /* FALLTHROUGH */ comments into grab_{label,menu}. I actually didn't intend grab_menu to be a fallthrough, but it actually works quite well there, so remove the extra rectangle drawing. I love it when that happens. -remove a couple of unused prototypes that were obviously missed before. -remove a bunch of commented out or if 0ed out code. It doesn't look to be coming back anytime soon. -several functions returned an int, but this was never checked. most of them only failed if they failed to grab the pointer (thus the internal state didn't change), so just make them void and return early if this is the case. -remove several unused functions and some useless variables. knocks something like 200bytes off the stripped binary size for me. ok marc@, tested by several others.
* - Remove the "all rights reserved" tag at the top of most of the sourceoga2008-01-111-1/+12
| | | | | | | | | | | | | | | | | | files, and replace them with the actual ISC license. - add license to the manpage (it was lacking before) - correct license statement in the README Permission given by Marius (copyright holder): "1. please replace with the standard ISC license 2. you may add the ISC license to the man page 3. feel free to replace the information in the README as well" and Dros (copyright holder for group.c): "Please switch group.c to the ISC License." ok ian@
* Adjust initial window placement with any geometry that would placemarc2008-01-031-3/+6
| | | | | the window at or over the right or bottom edge. OK oda@
* Only use the x,y values from the XSizeHints structure when they are greatermarc2008-01-011-2/+4
| | | | | than zero. The fields are obsolete and not always used. OK jasper@
* When cycling, only the end of the window names will be printed if thejasper2007-10-021-0/+4
| | | | | | | | name is too long. so show the beginning instead. from Pierre Riteau <pierre.riteau at free.fr> "looks correct" matthieu@
* don't map hidden windows on re-start.jasper2007-06-081-2/+7
| | | | from aon@iki.fi
* make it possible to cycle through the windows when non are selected.jasper2007-06-051-2/+11
| | | | | | (eg. when they're hidden, now you can cycle through them) from aon@iki.fi
* show hidden windows when they should (eg. when the pointer is warped to them)jasper2007-05-291-1/+5
| | | | from aon@iki.fi via bernd@
* don't give borderless windows a border, when they're inactivejasper2007-05-291-2/+0
| | | | from aon@iki.fi via bernd@
* convert globals from G_foo to Foo, as per TODO.jasper2007-05-281-70/+70
| | | | "looks good" pedro@, ok matthieu@
* Initial revisionbernd2007-04-271-0/+935