24 lines
294 B
C++
24 lines
294 B
C++
// xOr: this is crap.
|
|
enum ActionType {
|
|
noaction = 0,
|
|
execute,
|
|
iconify,
|
|
raiseWindow,
|
|
lowerWindow,
|
|
closeWindow,
|
|
changeDesktop,
|
|
shade,
|
|
moveWindowUp,
|
|
moveWindowDown,
|
|
moveLeft,
|
|
moveRight,
|
|
nextWindow,
|
|
prevWindow,
|
|
|
|
stringChain,
|
|
keyChain,
|
|
numberChain,
|
|
|
|
cancel
|
|
};
|
|
|