aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh120
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
30class FluxboxWindow;
31class WinClient;
32
33/// command that calls FluxboxWindow::<the function> on execute()
34/// similar to FbTk::SimpleCommand<T>
35class CurrentWindowCmd: public FbTk::Command {
36public:
37 typedef void (FluxboxWindow::* Action)();
38 explicit CurrentWindowCmd(Action action);
39 void execute();
40private:
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
46class WindowHelperCmd: public FbTk::Command {
47public:
48 void execute();
49
50protected:
51
52 WinClient &winclient();
53 FluxboxWindow &fbwindow();
54 virtual void real_execute() = 0;
55
56};
57
58class KillWindowCmd: public WindowHelperCmd {
59protected:
60 void real_execute();
61};
62
63class SendToWorkspaceCmd: public WindowHelperCmd {
64public:
65 explicit SendToWorkspaceCmd(int workspace_num):m_workspace_num(workspace_num) { }
66protected:
67 void real_execute();
68private:
69 const int m_workspace_num;
70};
71
72// move cmd, relative position
73class MoveCmd: public WindowHelperCmd {
74public:
75 explicit MoveCmd(const int step_size_x, const int step_size_y);
76protected:
77 void real_execute();
78
79private:
80 const int m_step_size_x;
81 const int m_step_size_y;
82};
83
84// resize cmd, relative size
85class ResizeCmd: public WindowHelperCmd{
86public:
87 explicit ResizeCmd(int step_size_x, int step_size_y);
88protected:
89 void real_execute();
90
91private:
92
93 const int m_step_size_x;
94 const int m_step_size_y;
95};
96
97class MoveToCmd: public WindowHelperCmd {
98public:
99 explicit MoveToCmd(const int step_size_x, const int step_size_y);
100protected:
101 void real_execute();
102
103private:
104 const int m_step_size_x;
105 const int m_step_size_y;
106};
107
108// resize cmd
109class ResizeToCmd: public WindowHelperCmd{
110public:
111 explicit ResizeToCmd(int step_size_x, int step_size_y);
112protected:
113 void real_execute();
114
115private:
116
117 const int m_step_size_x;
118 const int m_step_size_y;
119};
120#endif // CURRENTWINDOWCMD_HH