summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-08-01bump version to 3.5.0 and library versionsDana Jansens
2011-05-13Fix Java apps always appearing on desktop 0.Dana Jansens
Fake managing a window doesn't read a requested desktop, but ended up placing a NET_WM_DESKTOP hint on the window (with value 0). Fake managing doesn't need to set the DESKTOP hint since the window is not actually being managed, so remove it from the codepath.
2011-04-11don't re-run the startup command on reconfigureDana Jansens
2011-04-11fix global autostart installation, and the pointer to it so it is runDana Jansens
2011-01-24Resizing removes maximization now, so don't only snap "grow to edge" to ↵Dana Jansens
screen edges. This caused a serious annoyance when shrinking a maximized window, it would shrink to the other end of the monitor, effectively reducing it to its minimum size.
2011-01-24Fix compiling without sync extension present.Dana Jansens
Make waiting_for_sync always present, but it is set to 0 (not waiting) if we aren't using sync.
2011-01-24Fix regression: hitting a key accel in a menu didn't move focus to the submenuDana Jansens
2011-01-24Show the submenu and move focus there with the enter key when the submenu ↵Dana Jansens
isn't shown yet.
2011-01-24don't free the XIC if it wasn't created. this appears to cause a crashDana Jansens
2011-01-24cap the client (and frame) window's dimensions at the range of an unsigned ↵Dana Jansens
short (bug #4596)
2011-01-24extra \n in debug outputDana Jansens
2011-01-24Move focus to a window when the mouse enters a window during a pointer grab, ↵Dana Jansens
if using "focus under mouse" (Fixes bug #4617)
2011-01-24when focus=yes in the per-app settings, then the focus request for the new ↵Dana Jansens
window is from a user. also if allow_other_desktops is false, then always disallow other desktops (Fixes bug #4752)
2011-01-24Make NET_ACTIVE messages always treated as from the user. Loosen up focus ↵Dana Jansens
stealing for user-requested focusing. Seems panels such as xfce's and gnome's still treat their activation requests as being from an application when a user has requested it. Make the focus stealing code more lenient for user-requested focusings (_NET_ACTIVE). But treat new windows as not user-requested unless they gave a launch time. When activating a window, if another window would be the one to actually get focused, then activate that instead (avoid clicking a window in the panel and nothing happens).
2011-01-24don't use -Wextra unless --enable-super-warningsDana Jansens
2011-01-24setenv and unsetenv dont exist in Solaris 9. (Fixes bug #4663)Philip Brown
Seeing as how you already use glib, I just substituted g_setenv and g_unsetenv as appropriate, and it now works for me.
2011-01-24Some versions of X, have the Shape extension, but apparently not ↵Philip Brown
"ShapeInput" (Fixes bug #4662) the sawfish window manager has ifdefs for this sort of situation. I followed suit, and #ifdef'd it, and it now works for me. patch attached. Slight changes to the patch from danakj@orodu.net for readability
2011-01-24make the default drag threshold 1. it is smooth and feels and looks nice.Dana Jansens
(also macos has it and i liked it.)
2011-01-24XML_PARSE_XINCLUDE flag seems to do nothing. Use xmlXIncludeProcessFlags() ↵Dana Jansens
instead
2011-01-24if no launch time is provided for an application, make one up.Dana Jansens
if the window is related to other existing windows and one of those windows was the last used then we will give it a launch time equal to the last user time, which will end up giving the window focus probably. else the window is related to other windows, but you are not working in them? seems suspicious, so we will give it a launch time of NOW - STEAL_INTERVAL, so it will be given focus only if we didn't use something else during the steal interval. else the window is all on its own, so we can't judge it. give it a launch time equal to the last user time, so it will probably take focus. this way running things from a terminal will give them focus, but popups without a launch time shouldn't steal focus so easily.
2011-01-24fix segfault for placing windows without a groupDana Jansens
2011-01-24add primary monitor stuff to rc.xsdDana Jansens
2011-01-24Fix small leak in If action option parsingMikael Magnusson
2011-01-24Big changes to placement across multiple monitors.Dana Jansens
Add a Primary option for which monitor to place new windows on. Make "Active" the default instead of "Any", which is just totally crazy. When a window is being placed in the FOREGROUND, use a monitor chosen in the following order: 1. same monitor as parent 2. primary monitor if placement=PRIMARY active monitor if placement=ACTIVE pointer monitor if placement=MOUSE 3. primary monitor 4. other monitors where the window has group members on the same desktop 5. other monitors where the window has group members on other desktops 6. other monitors When a window is being placed in the BACKGROUND, use a monitor chosen in the following order: 1. same monitor as parent 2. other monitors where the window has group members on the same desktop 2a. primary monitor in this set 2b. other monitors in this set 3. other monitors where the window has group members on other desktops 3a. primary monitor in this set 3b. other monitors in this set 4. other monitors 4a. primary monitor in this set 4b. other monitors in this set Decide to focus the new window before placing it, so we know if it will be placed in the foreground or background. Always choose a single monitor, then place on it, rather than possibly moving to a "backup" monitor. Unpredictable monitor placement is horrible.
2011-01-24add function screen_compare_desktops()Dana Jansens
tells if two windows' current desktops are considered logically on the same desktop (taking "all desktops" into account) if a window is on "all desktops" it is considered to be on the current desktop only - windows can only be in one place at a time.
2011-01-24don't steal focus if someone used a window within 1 second agoDana Jansens
(instead of 0.5 seconds)
2011-01-24Fixing commit 066a15d7aa64eaa0. Don't ever use CurrentTime as event_curtime.Dana Jansens
Force event_curtime to be some valid timestamp.
2011-01-24Allow XIncludes in xml documents we read.Dana Jansens
Add the XInclude namespace in the default config file (named "xi")
2011-01-24use top_builddir, not builddir variable in Makefile. seems builddir doesn't ↵Dana Jansens
always exist/anymore
2011-01-24add some more warning flags for debug buildsDana Jansens
-Wno-write-strings so that "foo" is treated as a const char* not a char*. -Wextra for more fun
2011-01-24Fix icons.c test for 64-bit platformsHiltjo Posthuma
2011-01-24update the last user interaction timestamp during a move/resize of the ↵Dana Jansens
focused window
2011-01-24update the user-interaction timestamp when running a (non-interactive) ↵Dana Jansens
action on the focused window update it at the end of running actions instead of multiple times (once for each action)
2011-01-24don't steal focus from a window if it was used very recently, when someone ↵Dana Jansens
uses _NET_ACTIVE request.
2011-01-24mem leak in config.cDana Jansens
2011-01-24Big rework of image.c and the image cache system.Dana Jansens
Added a lot of comments, simplified call graphs. Added full (not second-class) support for images coming from named sources (files, icon themes). RrImage holds an RrImageSet. RrImageSet holds a bunch of RrImagePic, which are different sizes of a logical image. RrImageSet objects can be merged if it is discovered they (will) share an RrImagePic. The RrImage objects are updated to use the new merged RrImageSet.
2011-01-24Use >= instead of > when comparing timestamps, or we will ignore some eventsMikael Magnusson
2011-01-24add some tests for obt pieces (binary search, .desktop parsking, linkbase, ↵Dana Jansens
and inotify watch)
2011-01-24oops, crash if searching for something smaller than * in the arrayDana Jansens
2011-01-24less redundant calls to screen_update_areas() and client_move_onscreen()Dana Jansens
2011-01-24Ignore MotionNotify on menus, it reset the submenudelay timerMikael Magnusson
It also caused the slightest cursor movement to activate the entry under the cursor when navigating via the keyboard.
2011-01-24Use g_list_find instead of weird bouncing loopsMikael Magnusson
2011-01-24Parse multiple keys in one keybindDana Jansens
2011-01-24allow the res_class in WM_CLASS to mark a window as a dock app, if it is set ↵Dana Jansens
to the string "DockApp"
2011-01-24Don't hog the user during the hideDelayMikael Magnusson
2011-01-24Handle STRING and COMPOUND_TEXT type text properties.Dana Jansens
STRING should be latin1 text (plus TAB and LF) COMPOUND_TEXT should be encoded in the current locale.
2011-01-24Revert "add an inotify watcher for directories (doesnt work without inotify ↵Dana Jansens
yet)" This reverts commit c36b89ba12eae18d3011c8516906c21e9abb89dc.
2010-10-14Fix g_slice_new0 callMikael Magnusson
2010-10-14fix 80 cols and clean up the button color loading functionDana Jansens
2010-10-14cleaning up remnants of bad rebase merges and modernizing some sectionsDave Foster