| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2008-01-27 | window a window stops responding to pings, don't use the xsync protocol ↵ | Dana Jansens | |
| while resizing it - its not going to be responding to it anyways | |||
| 2008-01-27 | only store icons for windows that are 64px or smaller, as we don't have need ↵ | Dana Jansens | |
| for any bigger icons at this time. unless they only provide icons bigger than that, then just store one of them (the smallest) | |||
| 2008-01-27 | we alloc theme elements for every window frame, but really it is unneccesary | Dana Jansens | |
| 2008-01-27 | add a missing #include | Dana Jansens | |
| 2008-01-27 | when ignoring enter events, only ignore up to the current serial ↵ | Dana Jansens | |
| (NextRequest()-1). Don't ignore enters that come after this with the next serial. | |||
| 2008-01-27 | create fake enter events for button press bindings. only swallow enter ↵ | Dana Jansens | |
| events when focus.undermouse is not on (for non-mouse actions) | |||
| 2008-01-26 | Add a few missing includes and remove a stray debug printf. | Mikael Magnusson | |
| 2008-01-26 | only add borders and stuff to the dock's size if it is holding anything. ↵ | Dana Jansens | |
| otherwise it gets a non-zero size which messes with resistence/placement/etc | |||
| 2008-01-25 | fix a memleak in client_update_icon_geometry | Dana Jansens | |
| 2008-01-25 | fix a mem leak | Dana Jansens | |
| 2008-01-25 | fix a mem leak | Dana Jansens | |
| 2008-01-25 | Create fake enter events in fewer situations - avoiding times that you don't ↵ | Dana Jansens | |
| actually want them. Ignore event serials without using XSync, so that we aren't doing an XSync 100 times per minute - slow! | |||
| 2008-01-25 | Fix some memleaks. | Mikael Magnusson | |
| missing RrFontClose for osd_font in two places. missing a g_free(area); | |||
| 2008-01-25 | skip enter events caused by temporarily raising windows during alt-tab. ↵ | Dana Jansens | |
| also caused by the focus cycle indicator moving | |||
| 2008-01-24 | strip non-modifier masks from the keyboard state for keyreleases when xkb is ↵ | Dana Jansens | |
| present too | |||
| 2008-01-22 | print a warning when the session has a different number of desktops than the ↵ | Dana Jansens | |
| openbox config | |||
| 2008-01-21 | use the <wmclass> for startup notfication in the execute action. when ↵ | Dana Jansens | |
| present don't use the check against the binary. | |||
| 2008-01-20 | only unset the startup_desktop_id once, and dont free the string we pass to ↵ | Dana Jansens | |
| putenv | |||
| 2008-01-20 | check them startupnotify-provided wmclass against both parts of a window's ↵ | Dana Jansens | |
| wm_class hint, as the spec doth say so. | |||
| 2008-01-20 | putenv wants a char*, not a const | Dana Jansens | |
| 2008-01-17 | Remove leftover config_four_corners from config.c. | Mikael Magnusson | |
| 2008-01-16 | make the ping hash tables work correctly. don't need to stop pinging, it ↵ | Dana Jansens | |
| will automatically. and not all windows get pings, even tho we get notified that they are being destroyed | |||
| 2008-01-16 | only 1 hash table is needed in ping.c | Dana Jansens | |
| 2008-01-16 | use hash tables in ping.[ch] instead of a list. we're pinging every window, ↵ | Dana Jansens | |
| not just windows youre trying to close, so don't use datastructures that suck with lots of windows.. | |||
| 2008-01-16 | use unique IDs for pings rather than a timestamp. avoids duplicates. | Dana Jansens | |
| 2008-01-16 | friendly check for the timer's delay being > 0 | Dana Jansens | |
| 2008-01-16 | Various fixes for sparse warnings. | Mikael Magnusson | |
| Define void functions with (void), not (). Add missing includes. Some functions were declared static but defined non-static. Some variables that should be file static were file global but not used in any other file. prop.h defined a new prop_atoms in each file that included it instead of declaring it extern. | |||
| 2008-01-16 | active = FALSE when not active ! | Dana Jansens | |
| 2008-01-16 | fix timers so that they work when theres lots of repeating timers in the queue.. | Dana Jansens | |
| 2008-01-16 | add the new pid and ping atoms to the NET_SUPPORTED list | Dana Jansens | |
| 2008-01-15 | don't let repeating timers, with a very fast timer in the queue, cause the ↵ | Dana Jansens | |
| main loop to run the timers forever | |||
| 2008-01-15 | rework and comment out some debugging prints | Dana Jansens | |
| 2008-01-15 | add a comment | Dana Jansens | |
| 2008-01-15 | cant consistently tell if we should use WM_DESTROY after the first time they ↵ | Dana Jansens | |
| try close a window.. so just kill when "not responding" is showing | |||
| 2008-01-15 | only ping windows that we need to | Dana Jansens | |
| 2008-01-15 | ping all the windows every 3 seconds, and show "not responding" if they stop ↵ | Dana Jansens | |
| replying for 3 times (9-12 seconds). show [Killing...] in the titlebar when trying to kill an app off | |||
| 2008-01-15 | its possible we did kill -TERM and it stayed alive and started responding ↵ | Dana Jansens | |
| again, so handle that case | |||
| 2008-01-15 | when you close an app and it stops responding.. if you hit close again, it ↵ | Dana Jansens | |
| will try kill -TERM. if that fails and you close again, it will kill -9 ! (assuming the app is running on the local host and provided its PID) | |||
| 2008-01-15 | when you close a window that you already tried to close and its not ↵ | Dana Jansens | |
| responding to pings, then do a kill the next time | |||
| 2008-01-15 | show [Not Responding] in the titlebar when closing an app and it stops ↵ | Dana Jansens | |
| responding to pings | |||
| 2008-01-15 | can tell when a window that was "closed" has stopped responding now | Dana Jansens | |
| 2008-01-15 | check if a client will respond to pings | Dana Jansens | |
| 2008-01-15 | the inner border's corners weren't having events handled on them correctly, ↵ | Dana Jansens | |
| which was messing with resizing. yay akk for finding this. | |||
| 2008-01-16 | fix the context given off by the borders in the br corner | Dana Jansens | |
| 2008-01-16 | resizing was defaulting to the topleft corner instead of to the auto-ness or ↵ | Dana Jansens | |
| something.. | |||
| 2008-01-16 | remove the visible window title hints when unmanaging a window. not all WMs ↵ | Dana Jansens | |
| set those and it messes them up, and we'll set them again appropriately, they don't need to be saved. | |||
| 2008-01-13 | don't skip windows that are skip_taskbar unless they are normal typed.. i.e. ↵ | Dana Jansens | |
| if a dialog sets this don't skip it (gnome shutdown/logout dialogs don't get focused otherwise in arch linux) | |||
| 2008-01-13 | sync when killing all keyboard grabs, so that we can be sure they are gone ↵ | Dana Jansens | |
| before proceeding (fixes a race condition when running things that want to grab the keyboard very quickly. yes, arch is that fast somehow..) | |||
| 2008-01-12 | Update --version output copyright year to 2008. | Mikael Magnusson | |
| 2008-01-12 | make the dock's hiding always have at least 1px on screen | Dana Jansens | |
