summaryrefslogtreecommitdiff
path: root/openbox/actions.c
AgeCommit message (Collapse)Author
2008-02-14don't force fake enter events while there is a grab on the pointer. this ↵Dana Jansens
fixes focus switching during a move/resize from mouse-button-bound actions.
2008-02-14Make a pending ReplayPointer happen before moving/showing/hiding a window in ↵Dana Jansens
an action. Commit c907f5af4ad16b1 broke kdesktop again, so we have to fix it at an even finer level.
2008-02-02if windows on screen are going to be moved, then do the ReplayPointer before ↵Dana Jansens
that occurs, so it goes to the right window. if they are not, then just wait until after the actions are run (for kdesktop's sake really)
2008-01-27create 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-25Create 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-16Various 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.
2007-09-04ANSI function declarations, ie () -> (void)Mikael Magnusson
2007-07-17remove trailing whitespaceMikael Magnusson
2007-07-15Don't cancel interactive action when another one is run which shares the ↵Dana Jansens
same run function. This is how actions can cooperate!
2007-07-13move directionalcycling actions into the same .c file. make interactive ↵Dana Jansens
actions all kill delayed mouse focus which would kill the action.
2007-07-11only end the interactive action if it's the action you just ranDana Jansens
2007-07-11cancel the interactive action only if runing another one. i think this will ↵Dana Jansens
work?
2007-07-11create actions from string in a way that won't crashDana Jansens
2007-07-09cancel interactive actions when anothr action runs properlyDana Jansens
2007-06-22add raise actionDana Jansens
2007-06-22add the move actionDana Jansens
2007-06-22add the cyclewindows actionDana Jansens
2007-06-22added the debug actionDana Jansens
2007-06-22the execute action works again.Dana Jansens
default hardcoded bindings are temporarily offline
2007-06-22well.. it compiles..Dana Jansens
2007-06-22add code for interactive actionsDana Jansens
2007-06-22add interactive action functions. some other changes to stuff that wasnt ↵Dana Jansens
going to work
2007-06-21make mouse use the new action stuffDana Jansens
2007-06-21dont build the old action stuff.Dana Jansens
config uses the new action stuff. add actions_parse_string
2007-06-21maybe the new actions framework is kinda there nowDana Jansens
2007-06-21some first structural stuff for new actionsDana Jansens