summaryrefslogtreecommitdiff
path: root/openbox/event.c
AgeCommit message (Collapse)Author
2008-01-11code clean upDana Jansens
2008-01-11XKB modifiers are strange things, and i don't know how to read them properly ↵Dana Jansens
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-11reconfigure openbox when the input mapping changes, eg. keyboard layout or ↵Dana Jansens
modifier map
2007-11-12Add --exit.Mikael Magnusson
2007-09-04ANSI function declarations, ie () -> (void)Mikael Magnusson
2007-08-05When halting focus-follows-mouse, ignore any enter events that were ↵Dana Jansens
generated before the halting process too.
2007-08-04don't make omnipresent windows lose focus when changing desktops. this is ↵Dana Jansens
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-04only use user_time updates if they are on the focused windowDana Jansens
2007-08-03show a popup notification when switching desktops (also make all the config ↵Dana Jansens
options export time in milliseconds not half milli half micro)
2007-08-03don't make delayed focus-follows-mouse interupt menus and move/resizesDana Jansens
2007-08-03new least-intrusive focus stealing preventionDana Jansens
2007-08-01remove focus-stealing-prevention stuff, don't use user_time crap at all. it ↵Dana Jansens
is broken in every application that has ever used it. ever. ever. \^_^/;;;
2007-07-22remove unused variableDana Jansens
2007-07-21kill moveresize cleanly if focus is moving (it uses a keyboard grab)Dana Jansens
2007-07-21remove mysterious xkb code...Dana Jansens
2007-07-21be explicit about the eventDana Jansens
2007-07-21cleanupDana Jansens
2007-07-19use keypress for navigating the menu but use keyrelease for running thingsDana Jansens
2007-07-19use keyrelease to fire menu actions not key pressDana Jansens
when keypress is used, the keyrelease gets sent to whatever window is focused. if it's a stupid program - like most any program - it will update its user_time, preventing the new window from being focused
2007-07-18don't restack windows when they request it with an invalid siblingDana Jansens
2007-07-18take care when sibling is specified as an unmanaged windowDana Jansens
2007-07-17remove trailing whitespaceMikael Magnusson
2007-07-12adding trunkDana Jansens
Signed-off-by: Dana Jansens <danakj@orodu.net>
2007-06-22add the activate action. it will replace the focus action, as it can just ↵Dana Jansens
focus without raising now (or without unshading)
2007-06-22add the cyclewindows actionDana Jansens
2007-06-22well.. it compiles..Dana Jansens
2007-06-22add code for interactive actionsDana Jansens
2007-06-21don't activate on raiseDana Jansens
2007-06-21clearer code pathsDana Jansens
2007-06-21don't call framerender directlyDana Jansens
2007-06-13add force_reply back to client_configure(). client_reconfigure is nicer this ↵Dana Jansens
time around. eat enter events in client_configure when user is FALSE.
2007-06-13don't raise windows when moving them between desktops in some casesDana Jansens
2007-06-13fix moved commentDana Jansens
2007-06-13don't force reconfigure in a number of places, also eat enter events when ↵Dana Jansens
reconfiguring. yay
2007-06-12commentDana Jansens
2007-06-12only xungrabkeyboard when we actually have a passive grab on itDana Jansens
2007-06-11redundant if'ingDana Jansens
2007-06-10i think that other emacs fix was "the right one" and this one where we don't ↵Dana Jansens
always send configurenotifies can go away. that should fix the xemacs stall thing.
2007-06-09only configure the window after it sets WM_NORMAL_HINTS if it is outside of ↵Dana Jansens
its new bounds
2007-06-07bump versionDana Jansens
2007-06-06fallback under the mouse when config_focus_under_mouseDana Jansens
2007-06-06remove some debug printsDana Jansens
2007-06-04allow focus to fallback to omnipresent windows, except during desktop ↵Dana Jansens
switching which is when they are vile
2007-06-04when undermouse is off, ignore enter events from windows lowering/raising ↵Dana Jansens
themsvelves (or from a pager restacking them)
2007-06-03support serials wrapping aroundDana Jansens
2007-06-03super amazing enter event skipping.Dana Jansens
also mucho fixed for <underMouse>
2007-06-03add <underMouse> focus optionDana Jansens
2007-06-02do the menu_can_hide thing properly. was such a hack before? and the ↵Dana Jansens
variable was getting set from all kinds of events like motion notify. totally not reliable. now it works all nice.
2007-06-02better fix for focus going to the frame window when iconifying with ↵Dana Jansens
RevertToParent. Treat the focus in like a focus out. When focus moves to a window that doesn't exist, need to set the focus_client to NULL otherwise the client that lost focus won't know and won't update its decor
2007-06-02catch focus out events on the frame window - this happens with revert to ↵Dana Jansens
parent when a window is iconified. we get focusin on the frame without a focus out - which then makes us fallback. but catch the resulting focusout on the frame to make the window lose its focused decor