all repos — openbox @ 94d86896b499b75aab5a587a958b2245282d9353

openbox fork - make it a bit more like ryudo

util/epist/actions.hh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// xOr: this is crap.
enum ActionType {
  noaction = 0,
  execute,
  iconify,
  raiseWindow,
  lowerWindow,
  closeWindow,
  shade,
  moveWindowUp,
  moveWindowDown,
  moveWindowLeft,
  moveWindowRight,
  nextWindow,
  prevWindow,

  nextWindow,
  prevWindow,
  nextWindowOnAllDesktops,
  prevWindowOnAllDesktops,

  nextWindowOfClass,
  prevWindowOfClass,

  changeDesktop,
  nextDesktop,
  prevDesktop,

  // these are openbox extensions
  showRootMenu,
  showWorkspaceMenu,

  stringChain, 
  keyChain,
  numberChain,

  cancel,

  NUM_ACTIONS
};