diff options
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r-- | src/CurrentWindowCmd.hh | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh new file mode 100644 index 0000000..c4c559b --- /dev/null +++ b/src/CurrentWindowCmd.hh | |||
@@ -0,0 +1,120 @@ | |||
1 | // CurrentWindowCmd.hh for Fluxbox - an X11 Window manager | ||
2 | // Copyright (c) 2003 Henrik Kinnunen (fluxgen{<a*t>}users.sourceforge.net) | ||
3 | // and Simon Bowden (rathnor at users.sourceforge.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 | // $Id: CurrentWindowCmd.hh,v 1.6 2003/10/25 22:11:22 fluxgen Exp $ | ||
24 | |||
25 | #ifndef CURRENTWINDOWCMD_HH | ||
26 | #define CURRENTWINDOWCMD_HH | ||
27 | |||
28 | #include "Command.hh" | ||
29 | |||
30 | class FluxboxWindow; | ||
31 | class WinClient; | ||
32 | |||
33 | /// command that calls FluxboxWindow::<the function> on execute() | ||
34 | /// similar to FbTk::SimpleCommand<T> | ||
35 | class CurrentWindowCmd: public FbTk::Command { | ||
36 | public: | ||
37 | typedef void (FluxboxWindow::* Action)(); | ||
38 | explicit CurrentWindowCmd(Action action); | ||
39 | void execute(); | ||
40 | private: | ||
41 | Action m_action; | ||
42 | }; | ||
43 | |||
44 | /// helper class for window commands | ||
45 | /// calls real_execute if there's a focused window or a window in button press/release window | ||
46 | class WindowHelperCmd: public FbTk::Command { | ||
47 | public: | ||
48 | void execute(); | ||
49 | |||
50 | protected: | ||
51 | |||
52 | WinClient &winclient(); | ||
53 | FluxboxWindow &fbwindow(); | ||
54 | virtual void real_execute() = 0; | ||
55 | |||
56 | }; | ||
57 | |||
58 | class KillWindowCmd: public WindowHelperCmd { | ||
59 | protected: | ||
60 | void real_execute(); | ||
61 | }; | ||
62 | |||
63 | class SendToWorkspaceCmd: public WindowHelperCmd { | ||
64 | public: | ||
65 | explicit SendToWorkspaceCmd(int workspace_num):m_workspace_num(workspace_num) { } | ||
66 | protected: | ||
67 | void real_execute(); | ||
68 | private: | ||
69 | const int m_workspace_num; | ||
70 | }; | ||
71 | |||
72 | // move cmd, relative position | ||
73 | class MoveCmd: public WindowHelperCmd { | ||
74 | public: | ||
75 | explicit MoveCmd(const int step_size_x, const int step_size_y); | ||
76 | protected: | ||
77 | void real_execute(); | ||
78 | |||
79 | private: | ||
80 | const int m_step_size_x; | ||
81 | const int m_step_size_y; | ||
82 | }; | ||
83 | |||
84 | // resize cmd, relative size | ||
85 | class ResizeCmd: public WindowHelperCmd{ | ||
86 | public: | ||
87 | explicit ResizeCmd(int step_size_x, int step_size_y); | ||
88 | protected: | ||
89 | void real_execute(); | ||
90 | |||
91 | private: | ||
92 | |||
93 | const int m_step_size_x; | ||
94 | const int m_step_size_y; | ||
95 | }; | ||
96 | |||
97 | class MoveToCmd: public WindowHelperCmd { | ||
98 | public: | ||
99 | explicit MoveToCmd(const int step_size_x, const int step_size_y); | ||
100 | protected: | ||
101 | void real_execute(); | ||
102 | |||
103 | private: | ||
104 | const int m_step_size_x; | ||
105 | const int m_step_size_y; | ||
106 | }; | ||
107 | |||
108 | // resize cmd | ||
109 | class ResizeToCmd: public WindowHelperCmd{ | ||
110 | public: | ||
111 | explicit ResizeToCmd(int step_size_x, int step_size_y); | ||
112 | protected: | ||
113 | void real_execute(); | ||
114 | |||
115 | private: | ||
116 | |||
117 | const int m_step_size_x; | ||
118 | const int m_step_size_y; | ||
119 | }; | ||
120 | #endif // CURRENTWINDOWCMD_HH | ||