summaryrefslogtreecommitdiff
path: root/openbox
AgeCommit message (Collapse)Author
2010-03-25allow non-normal windows to go to 0,0. and remove a debugging g_printDana Jansens
2010-03-01add a function client_is_oldfullscreen() that determines if a window is an ↵Dana Jansens
"oldschool fullscreen window" or not. use this throughout. and allow oldschool fullscreen windows to move to 0,0 even with a strut there.
2010-03-01when an app tries to move to 0,0 and there is a strut there (java swing!), ↵Dana Jansens
move it to inside the strut instead (unless it is an oldschool fullscreen app)
2010-02-26missing a g_slice_freeDana Jansens
2010-02-21Added shade-icon to client-menuTobias Gläßer
2010-02-19get the modifier mask for a modifier key that is pressed/released more ↵Dana Jansens
accurately, using the table we built already for other purposes
2010-02-19save the state of the modifiers only when starting an interactive actionDana Jansens
2010-02-17move the startup command launching into a helper functionDana Jansens
2010-02-17revamp the autostart functionality, so autostart apps launch after openbox.Dana Jansens
add /usr/libexec/openbox-autostart which runs the global/user scripts and launches /usr/libexec/openbox-xdg-autostart (which runs .desktop autostart stuff) make openbox-session call openbox with --startup option, to make openbox launch /usr/libexec/openbox-autostart *after* it is initialized. add /etc/xdg/openbox/environment and ~/.config/openbox/environment files to let user change environment variables (locale) for their Openbox session, which openbox-session loads before running openbox.
2010-02-17don't use a variable as a format stringDana Jansens
2010-02-16lower the default submenu show delayDana Jansens
2010-02-16a couple more g_free() to g_slice_free()'sDana Jansens
2010-02-16more using g_slice_new() instead of g_new()Dana Jansens
2010-02-16missed a g_free() that should be g_slice_free()Dana Jansens
2010-02-15dont trust the _NET_ACTIVE_WINDOW timestamp. (fixes bug #4519)Dana Jansens
if we decide to focus the window, do not use their provided timestamp. chromium gives a very old timestamp, which means we think we're focusing the window but it never actually gets focus, leading to inconsistent behaviour by openbox. use the timestamp for making decisions about passing focus if you want (we dont right now), but not for the XSetInputFocus call.
2010-02-13Remove mismerge-added filesMikael Magnusson
2010-02-12remove a bunch of g_new()/g_free() by returning Rect const*'s from screen ↵Dana Jansens
area functions when possible
2010-02-12use g_slice_new() instead of g_new() part 4Dana Jansens
2010-02-12use g_slice_new() instead of g_new() part 2Dana Jansens
2010-02-12using g_slice_new() instead of g_new() part 1Dana Jansens
2010-02-12have obt refresh the xlib keyboard stuff on mappingnotify eventsDana Jansens
2010-02-11make control keys work in menus/dialogs/etc with the new obt code, using ↵Dana Jansens
XLookup stuff
2010-02-11initialize the action shutdown function to NULLDana Jansens
2010-02-11pass an input context to the interactive input functionDana Jansens
2010-02-11make menu input work with the new obt keyboard stuff.Dana Jansens
create an Input Context for use during keyboard grabs, and use this to translate KeyPress events properly. make the menu respond to KeyPress events, since these are the only ones that can be translated properly, but still execute things from KeyRelease events
2010-02-11make the menu use the new obt stuff when reading keyboard input so it can ↵Dana Jansens
handle input from the non-base group and composed input
2010-02-11make obt translate keypress events to a valid utf8 character (note this ↵Dana Jansens
makes openbox not compile)
2010-02-11don't strip the state for keyboard eventsDana Jansens
this allows translation of keys not in the base keyboard layout
2010-02-11get xlib to reload the keyboard on MappingNotify eventsDana Jansens
2010-02-11XKB header comes from obtDana Jansens
2010-02-11make the execute action not segfault when using a prompt (bug #4543)Dana Jansens
also save the client when using a prompt so it can be used if you choose "yes" from the prompt
2010-02-11add an optional shutdown function which actions can registerDana Jansens
2010-02-11i learnt what xkb does with the state.Dana Jansens
use the state from keyrelease events directly, rather than query the state (which is not as accurate!) the xkb state (as opposed to the normally sent compat state) contains extra info like the keyboard group, the pointer buttons, etc. so we can just strip that stuff out. (See section 2.2.2 of the XKB proto document)
2010-01-28Init all fonts to NULL, so if they arent in the config they use the default fontDana Jansens
2010-01-28Add a hook to unset the client in the open menu frame instead of closing itMikael Magnusson
Also nukes menu_frame_hide_all_client() as it is now unused.
2010-01-28Don't close the menu when you held control even for executeMikael Magnusson
2010-01-28Don't alt-tab to skip_taskbar iconic windows if they have parentsMikael Magnusson
2010-01-18adjust who shows up in the alt-tab list using SKIP_TASKBAR (Fixes bug #4503)Dana Jansens
allow window types != NORMAL to not show up in the alt-tab list but don't allow DIALOG types to hide from the list also any window which is DEMANDS_ATTENTION should appear in the list regardless of its SKIP_TASKBAR status
2010-01-15don't use client_move() to end a moveDana Jansens
client_move() uses the client's current width/height, whereas all along we were using the width/height the client had at the start, so this causes client_configure() to behave differently at the end than during the move
2010-01-15allow multiple escaped _'s in a menu label, and allow a real _ to come later ↵Dana Jansens
in the label (Fixes bug #4355).
2010-01-15make edge detection for maximized windows only look at the edges of screensDana Jansens
2010-01-15catch the SIGTTOU and SIGTTIN signals when an app we launch tries to use its ↵Dana Jansens
stdin/out (but we don't have one either). Fixes bug #4072.
2010-01-15if we get an event on a subwindow of root that we don't know about, but it ↵Dana Jansens
is related to a press we received on the root window, then process the event (Fixes bug #3702)
2010-01-15Remember the maximized state of a window when it goes fullscreen and try ↵Dana Jansens
restore it after
2010-01-14If a window places itself at (0,0) and there are struts there, assume it is ↵Dana Jansens
a bug. Also allow oldschool fullscreen windows that cover all monitors on a multihead setup to work properly Added a test 'oldfullscreen' that makes a oldschool fullscreen window
2010-01-14allow app rules to match windows by their title when mappingDana Jansens
and save the title in the _OB_APP_TITLE property
2010-01-14if openbox isn't running, show messages on the console rather than just ↵Dana Jansens
losing them (like when another WM is running)
2010-01-14Merge branch 'backport' into workDana Jansens
Conflicts: openbox/frame.c
2010-01-14don't resize the label to 0Dana Jansens
2010-01-12remove the session.c file from actions, as it is no longer usedDana Jansens