Commit graph

2864 commits

Author SHA1 Message Date
Dana Jansens
fdabb69f4f update openbox to use the current parser interface in libobt
there is also some random bug fixes for other libobt stuff in here.
2008-01-20 01:36:55 -05:00
Dana Jansens
759e9f58a8 change openbox to use the libotk's keyboard.[ch] stuff instead of the old modkeys.[ch] and some of translate.[ch] 2008-01-20 01:36:55 -05:00
Dana Jansens
1aac72bc4c add keyboard.[ch] to libobt. these are for tracking modifier keys, and translating to/from keycodes/keysyms/modmasks (also include a new obt/internal.h for putting functions that are not public) 2008-01-20 01:36:55 -05:00
Dana Jansens
2f0e73cf9d add functions for setting locale strings (on top of existing functions for setting utf8 strings). they are untested though! wonder if they work? 2008-01-20 01:36:55 -05:00
Dana Jansens
0fcf5ead0f make openbox use the obt prop.c/h stuff
holy search and replace batman
2008-01-20 01:36:54 -05:00
Dana Jansens
e2ddfaf9ff s/ob_display/obt_display/ and remove ob_display 2008-01-20 01:36:54 -05:00
Dana Jansens
6c8acc079a add prop.[ch] to the libobt, but they are not used yet. add a global obt_display which obt can use, and the application. 2008-01-20 01:36:54 -05:00
Dana Jansens
32a92abf75 move the code for tracking what extensions are available on the display into the libobt 2008-01-20 01:36:54 -05:00
Dana Jansens
a2f5a826a1 move the xerror handling into the libobt 2008-01-20 01:36:54 -05:00
Dana Jansens
452627a51c Move the main loop out into the libobt 2008-01-20 01:36:54 -05:00
Dana Jansens
ebce321a72 look mom, I made an openbox toolkit 2008-01-20 01:36:53 -05:00
Dana Jansens
98dda05c4a Merge branch 'backport' 2008-01-20 01:36:43 -05:00
Dana Jansens
2c6240fd2f putenv wants a char*, not a const 2008-01-20 01:36:37 -05:00
Dana Jansens
3ae58f457b Merge branch 'backport' 2008-01-19 23:59:40 -05:00
Mikael Magnusson
d3c1117fb4 Remove leftover config_four_corners from config.c. 2008-01-17 01:26:15 +01:00
Dana Jansens
cccc57fdb0 make the ping hash tables work correctly. don't need to stop pinging, it will automatically. and not all windows get pings, even tho we get notified that they are being destroyed 2008-01-16 19:21:42 -05:00
Dana Jansens
7630f66035 only 1 hash table is needed in ping.c 2008-01-16 18:53:15 -05:00
Dana Jansens
299687110d use hash tables in ping.[ch] instead of a list. we're pinging every window, not just windows youre trying to close, so don't use datastructures that suck with lots of windows.. 2008-01-16 18:44:22 -05:00
Dana Jansens
2ee4251092 use unique IDs for pings rather than a timestamp. avoids duplicates. 2008-01-16 18:16:49 -05:00
Dana Jansens
9e18dbe0ee friendly check for the timer's delay being > 0 2008-01-16 10:31:12 -05:00
Mikael Magnusson
0be98fee47 Various fixes for sparse warnings.
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 15:35:25 +01:00
Dana Jansens
cafba3acf3 active = FALSE when not active ! 2008-01-16 01:16:47 -05:00
Dana Jansens
ff78d28f8b fix timers so that they work when theres lots of repeating timers in the queue.. 2008-01-16 00:54:17 -05:00
Dana Jansens
ba6dcc15f8 add the new pid and ping atoms to the NET_SUPPORTED list 2008-01-16 00:24:56 -05:00
Dana Jansens
cfc8101333 don't let repeating timers, with a very fast timer in the queue, cause the main loop to run the timers forever 2008-01-15 23:28:30 -05:00
Dana Jansens
7bd8e97fbb rework and comment out some debugging prints 2008-01-15 22:56:37 -05:00
Dana Jansens
053558dc5f add a comment 2008-01-15 22:53:05 -05:00
Dana Jansens
f9f32d9fba cant consistently tell if we should use WM_DESTROY after the first time they try close a window.. so just kill when "not responding" is showing 2008-01-15 22:51:04 -05:00
Dana Jansens
d5c824cfd4 only ping windows that we need to 2008-01-15 22:36:45 -05:00
Dana Jansens
810afd8597 ping all the windows every 3 seconds, and show "not responding" if they stop replying for 3 times (9-12 seconds). show [Killing...] in the titlebar when trying to kill an app off 2008-01-15 22:34:04 -05:00
Dana Jansens
dbce9ee243 its possible we did kill -TERM and it stayed alive and started responding again, so handle that case 2008-01-15 22:15:45 -05:00
Dana Jansens
e6d33facc8 when you close an app and it stops responding.. if you hit close again, it 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 22:13:16 -05:00
Dana Jansens
07994cb2dc when you close a window that you already tried to close and its not responding to pings, then do a kill the next time 2008-01-15 22:00:21 -05:00
Dana Jansens
d3e9fc8941 show [Not Responding] in the titlebar when closing an app and it stops responding to pings 2008-01-15 21:57:47 -05:00
Dana Jansens
fb7a71da20 can tell when a window that was "closed" has stopped responding now 2008-01-15 21:43:23 -05:00
Dana Jansens
d790dc162d check if a client will respond to pings 2008-01-15 20:48:28 -05:00
Dana Jansens
2b5d4b6997 the inner border's corners weren't having events handled on them correctly, which was messing with resizing. yay akk for finding this. 2008-01-15 20:33:56 -05:00
Dana Jansens
d122c973ca fix the context given off by the borders in the br corner 2008-01-16 02:08:42 +01:00
Dana Jansens
26f34d3ba0 resizing was defaulting to the topleft corner instead of to the auto-ness or something.. 2008-01-16 02:08:42 +01:00
Dana Jansens
ed51baa958 remove the visible window title hints when unmanaging a window. not all WMs set those and it messes them up, and we'll set them again appropriately, they don't need to be saved. 2008-01-16 02:08:42 +01:00
Dana Jansens
6dfc3c726a don't skip windows that are skip_taskbar unless they are normal typed.. i.e. if a dialog sets this don't skip it (gnome shutdown/logout dialogs don't get focused otherwise in arch linux) 2008-01-13 03:40:14 -05:00
Dana Jansens
5148b839fe sync when killing all keyboard grabs, so that we can be sure they are gone 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-13 02:50:34 -05:00
Mikael Magnusson
64905704e9 Update --version output copyright year to 2008. 2008-01-12 23:07:34 +01:00
Dana Jansens
df73dfa049 make the dock's hiding always have at least 1px on screen 2008-01-12 16:17:22 -05:00
Dana Jansens
32c3a97f2e fix a copy/paste bug in placing the move&resize popup 2008-01-12 13:31:46 -05:00
Dana Jansens
669c7655be since the internal windows are in window_map now, it's possible we'll get them back when we check what window an event happened on. so don't abort if that happens anymore. 2008-01-11 23:16:06 -05:00
Dana Jansens
5d533d9fe2 fix a small bug introduced that broke per-app placement 2008-01-11 21:33:46 -05:00
Dana Jansens
405d9a3e43 dont reparse the config file when the keyboard map changes. just rebind everything. yay for mika as inspiration 2008-01-11 21:19:58 -05:00
Dana Jansens
c2e495c720 make a GravityPoint and GravityCoord data structures for those --x, ++y type values 2008-01-11 20:58:03 -05:00
Dana Jansens
17bc51aab8 let you specify the resize popup to be in a fixed place 2008-01-11 20:24:16 -05:00
Dana Jansens
b7e23f286a make the focus cycle indicator be in the window_map so button presses on it are handled right 2008-01-11 19:45:30 -05:00
Dana Jansens
22333336d3 add an <active> option for window placement, to try force new windows on the active monitor (for xinerama) 2008-01-11 19:32:45 -05:00
Dana Jansens
602a73c15c make fake xinerama happen even when xinerama is enabled 2008-01-11 19:30:29 -05:00
Dana Jansens
d7b25da169 make the window_startup happen before the focus_cycle_popup startup, so that the popups can be added to the window map properly 2008-01-11 19:05:04 -05:00
Dana Jansens
040d344a89 don't take KeyRelease events for menus until they receive a KeyPress event first. avoid using the key binding used to show the menu to execute something inside it. 2008-01-11 18:57:32 -05:00
Dana Jansens
78cd9bba52 continue commit 2b80e4e8ef - remove debug code, and some unneeded stuff 2008-01-11 18:33:43 -05:00
Dana Jansens
bf259be653 fixes from commit 0ce14a7279
the xsync was needed to get the right serial for the end of the ignore range
2008-01-11 18:28:35 -05:00
Dana Jansens
2b80e4e8ef ignore mouse clicks on override-redirect windows that aren't owned by openbox 2008-01-11 18:13:12 -05:00
Dana Jansens
6133bbd5f7 try to comment the code for when to save the "last desktop" 2008-01-11 17:24:57 -05:00
Dana Jansens
8a2adbb058 make the time to remember last desktop a #define, and make it 750ms 2008-01-11 16:53:26 -05:00
Mikael Magnusson
b3764dd433 Don't record desktops for lastdesktop when switching away quickly again.
When switching desktops, only record the previous desktop as the last
desktop if the user stayed there for a while. This way you can scroll
over a couple desktops quickly, then go back to the previous desktop
you _used_, not the last you scrolled past.
2008-01-11 16:37:23 -05:00
Dana Jansens
e61f58462f freeze onscreen stacking order changes while a temp raise for focus cycling is occuring 2008-01-11 16:29:11 -05:00
Dana Jansens
22c102572e fix a crash when reconfiguring during focus cycling 2008-01-11 16:26:16 -05:00
Dana Jansens
ea371936ce let you raise the focus target temporarily during focus cycling, with the <raise> option. also a new <bar> option lets you turn off the indicator bar 2008-01-11 16:11:51 -05:00
Dana Jansens
746015e88c make backport closer to 3.4-working for merging purposes 2008-01-11 15:36:31 -05:00
Dana Jansens
abc67cbdc1 make it possible to temporarily raise a window to the top, and restore it. also fix the return val for window_layer. 2008-01-11 15:28:26 -05:00
Dana Jansens
1789d45645 fix a warning from crappy libc apis 2008-01-11 15:18:04 -05:00
Dana Jansens
0ce14a7279 fix a focus race condition in two ways:
1. when focusing a window, ignore any enter events up until the serial of the X event causing the focus, not up until the last thing sent to the server.  if we get 2 enters very quickly, then we don't want to ignore the second one just because we are focusing the first window.
2. there is a race if you check (focus_client != d->client) in the delay_focus_func, because the current focused window might change by the time this focus_client would take effect, so don't check that.
2008-01-11 14:40:58 -05:00
Dana Jansens
b447f16f60 code clean up 2008-01-11 13:06:37 -05:00
Dana Jansens
162a97e158 XKB modifiers are strange things, and i don't know how to read them properly in modkeys.c and convert it all to the x core stuff. so we use this to get the state of the modifiers, otherwise we end up missing them sometimes (like on PPC) 2008-01-11 13:05:11 -05:00
Dana Jansens
5a468756c0 reconfigure openbox when the input mapping changes, eg. keyboard layout or modifier map 2008-01-11 11:42:09 -05:00
Dana Jansens
8a51893e8b Revert "fix for xkb weirdness, to fix a bug introduced in 3.4.3, where releasing the super mod key would not end interactive actions."
This reverts commit 47e7aa82dc.

This is an XKB problem, and it needs to be properly resolved with XKB functions
2008-01-11 11:21:00 -05:00
Dana Jansens
44ee90c946 Bug#: 3328 - remove top border for maxed undecorated windows 2008-01-11 10:00:58 -05:00
Dana Jansens
9e9a7e124d allow dialog windows to be fullscreened, kpdf does this 2008-01-11 09:46:07 -05:00
Mikael Magnusson
2b8b5da04b Merge branch 'backport' 2007-12-18 21:12:52 +01:00
Mikael Magnusson
5f045992f1 Add --exit. 2007-11-12 19:17:30 +01:00
Mikael Magnusson
dc6564619f Try to fix the popup only showing up on monitor 0.
screen_find_monitor() should perhaps contain that big hunk of logic, I don't know if
anything will break now that it returns screen_num_monitors sometimes. We'll see!
2007-10-31 08:10:59 +01:00
Mikael Magnusson
8cdf412aed Change setenv and unsetenv to putenv for portability.
Solaris apparently does not have setenv and unsetenv.
2007-10-18 08:25:34 +02:00
Mikael Magnusson
9586ad246d Add complementing ShrinkToEdge action. 2007-10-03 14:07:45 +02:00
Mikael Magnusson
556eb7b7fb ANSI function declarations, ie () -> (void) 2007-09-04 06:27:10 +02:00
Mikael Magnusson
1492bd0e7d Fix shadowed variables 2007-09-04 06:25:06 +02:00
Mikael Magnusson
c12d09bde8 Fix calling functions with wrong number of arguments 2007-09-04 06:23:54 +02:00
Dana Jansens
78add17077 hide the desktop popup when showing the directional focus popup too 2007-08-23 09:08:38 -04:00
Mikael Magnusson
e4f24d84a0 Hide the desktop cycle popup when the focus cycle popup is shown. 2007-08-22 18:00:12 +02:00
Mikael Magnusson
c870786774 Only copy execute_func to the more_menu.
Also don't bother copying NULL around in menu_new.
2007-08-07 05:17:50 +02:00
Mikael Magnusson
f2b94f18a5 Another leaked Rect *a 2007-08-07 04:34:42 +02:00
Mikael Magnusson
e5c7c95f2d Squash one more leak 2007-08-07 04:24:48 +02:00
Dana Jansens
c6b2272564 proper constness 2007-08-06 22:15:59 -04:00
Dana Jansens
d3ff019f53 more clear code? 2007-08-06 22:12:20 -04:00
Mikael Magnusson
d658612cac Fix another memleak 2007-08-07 03:58:02 +02:00
Mikael Magnusson
7f53478977 Fix some memleaks 2007-08-06 03:09:55 +02:00
Dana Jansens
d5dc910d6d When halting focus-follows-mouse, ignore any enter events that were generated before the halting process too. 2007-08-05 12:13:41 -04:00
Dana Jansens
f55ae9e569 Merge branch 'backport' 2007-08-04 23:35:36 -04:00
Dana Jansens
fa085b7338 fix edge detection, it was skipping edges sometimes 2007-08-04 17:39:49 -04:00
Dana Jansens
2c50fae347 let you select an omnipresent window on another desktop 2007-08-04 15:24:59 -04:00
Dana Jansens
fba55d8d9f make growtoedge shrink if it cyan grow any more 2007-08-04 14:04:22 -04:00
Dana Jansens
758ef2cafa move the submenus to the top of the client menu by popular demand. 2007-08-04 13:36:08 -04:00
Dana Jansens
0cfd92ab9e don't make omnipresent windows lose focus when changing desktops. this is done by allowing focus_fallback to specify if focus has been lost or not. usually if you're call it, focus is lost, but not always. 2007-08-04 13:29:13 -04:00
Dana Jansens
ac59dd4fe5 don't focus new windows if they appear on another desktop and a relative is not focused 2007-08-04 12:57:34 -04:00
Dana Jansens
29e94a9e59 make the default time for the desktop notificatin 875ms 2007-08-04 12:11:08 -04:00