aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-06-30 14:35:11 (GMT)
committerfluxgen <fluxgen>2003-06-30 14:35:11 (GMT)
commit695d926b2f56a602b62773f2a6aa4eaf2c5c40b2 (patch)
treebcae71c09ab4f35735e3223b8a1b201a564f7308 /src/CurrentWindowCmd.hh
parent4bf8a39f75a21c9c3146157e3bbb735e37a6788b (diff)
downloadfluxbox-695d926b2f56a602b62773f2a6aa4eaf2c5c40b2.zip
fluxbox-695d926b2f56a602b62773f2a6aa4eaf2c5c40b2.tar.bz2
commands on current window
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
new file mode 100644
index 0000000..fd6ac40
--- /dev/null
+++ b/src/CurrentWindowCmd.hh
@@ -0,0 +1,110 @@
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.1 2003/06/30 14:35:11 fluxgen Exp $
24
25#ifndef CURRENTWINDOWCMD_HH
26#define CURRENTWINDOWCMD_HH
27
28#include "Command.hh"
29
30class FluxboxWindow;
31/// command that calls FluxboxWindow::<the function> on execute()
32/// similar to FbTk::SimpleCommand<T>
33class CurrentWindowCmd: public FbTk::Command {
34public:
35 typedef void (FluxboxWindow::* Action)();
36 explicit CurrentWindowCmd(Action action);
37 void execute();
38private:
39 Action m_action;
40};
41
42/// helper class for window commands
43/// calls real_execute if there's a focused window or a window in button press/release window
44class WindowHelperCmd: public FbTk::Command {
45public:
46 void execute();
47
48protected:
49
50 FluxboxWindow &window();
51 virtual void real_execute() = 0;
52
53};
54
55class KillWindowCmd: public WindowHelperCmd {
56protected:
57 void real_execute();
58};
59
60class SendToWorkspaceCmd: public WindowHelperCmd {
61public:
62 explicit SendToWorkspaceCmd(int workspace_num):m_workspace_num(workspace_num) { }
63protected:
64 void real_execute();
65private:
66 const int m_workspace_num;
67};
68
69class MoveHelper: public WindowHelperCmd {
70public:
71 explicit MoveHelper(int step_size):m_step_size(step_size) { }
72protected:
73 int stepSize() const { return m_step_size; }
74
75private:
76 const int m_step_size;
77};
78/// move window to left
79class MoveLeftCmd: public MoveHelper {
80public:
81 explicit MoveLeftCmd(int step_size);
82protected:
83 void real_execute();
84};
85
86/// move window to right
87class MoveRightCmd: public MoveHelper {
88public:
89 explicit MoveRightCmd(int step_size);
90protected:
91 void real_execute();
92};
93
94/// move window up
95class MoveUpCmd: public MoveHelper {
96public:
97 explicit MoveUpCmd(int step_size);
98protected:
99 void real_execute();
100};
101
102/// move window down
103class MoveDownCmd: public MoveHelper {
104public:
105 explicit MoveDownCmd(int step_size);
106protected:
107 void real_execute();
108};
109
110#endif // CURRENTWINDOWCMD_HH