]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/actions.hh
fix indenting
[mikachu/openbox.git] / util / epist / actions.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // actions.hh for Epistrophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifndef __actions_hh
24 #define __actions_hh
25
26 extern "C" {
27 #include <X11/Xlib.h>
28 }
29
30 #include <list>
31 #include <string>
32
33 class Action {
34 public:
35   enum ActionType {
36     noaction = 0,
37     execute, //done
38     iconify, //done
39     raise, //done
40     lower, //done
41     close, //done
42     toggleShade, //done
43     toggleOmnipresent, //done
44     moveWindowUp, //done
45     moveWindowDown, //done
46     moveWindowLeft, //done
47     moveWindowRight, //done
48     resizeWindowWidth, //done
49     resizeWindowHeight, //done
50
51     toggleMaximizeFull, //done
52     toggleMaximizeVertical, //done
53     toggleMaximizeHorizontal, //done
54
55     sendToWorkspace, //done
56
57     nextWindow, //done for now
58     prevWindow, //done for now
59     nextWindowOnAllWorkspaces, //done for now
60     prevWindowOnAllWorkspaces, //done for now
61
62     nextWindowOnAllScreens, //done for now
63     prevWindowOnAllScreens, //done for now
64
65     nextWindowOfClass, //done for now
66     prevWindowOfClass, //done for now
67     nextWindowOfClassOnAllWorkspaces, //done for now
68     prevWindowOfClassOnAllWorkspaces, //done for now
69
70     upWindow,
71     downWindow,
72     leftWindow,
73     rightWindow,
74
75     changeWorkspace, //done
76     nextWorkspace, //done
77     prevWorkspace, //done
78
79     upWorkspace, //all done
80     downWorkspace,
81     leftWorkspace,
82     rightWorkspace,
83
84     nextScreen, //done for now
85     prevScreen, //done for now
86   
87     // these are openbox extensions
88     showRootMenu,
89     showWorkspaceMenu,
90     toggleDecorations,
91
92     toggleGrabs,
93     stringChain, 
94     keyChain,
95     numberChain,
96
97     cancelChain, //done
98
99     NUM_ACTIONS
100   };
101
102 private:
103   enum ActionType _type;
104   const KeyCode _keycode;
105   const unsigned int _modifierMask;
106
107   int _numberParam;
108   std::string _stringParam;
109 public:
110   inline enum ActionType type() const { return _type;}
111   inline const KeyCode keycode() const { return _keycode; }
112   inline const unsigned int modifierMask() const { return _modifierMask; }
113   inline const int number() const { return _numberParam; }
114   inline const std::string &string() const { return _stringParam; }
115
116   Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
117          const std::string &str = "");
118 };
119   
120 typedef std::list<Action> ActionList;
121
122 #endif