diff options
Diffstat (limited to 'src/CurrentWindowCmd.cc')
-rw-r--r-- | src/CurrentWindowCmd.cc | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.cc b/src/CurrentWindowCmd.cc new file mode 100644 index 0000000..8e0a70c --- /dev/null +++ b/src/CurrentWindowCmd.cc | |||
@@ -0,0 +1,77 @@ | |||
1 | // CurrentWindowCmd.cc 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.cc,v 1.1 2003/06/30 14:35:11 fluxgen Exp $ | ||
24 | |||
25 | #include "CurrentWindowCmd.hh" | ||
26 | |||
27 | #include "fluxbox.hh" | ||
28 | #include "Window.hh" | ||
29 | #include "Screen.hh" | ||
30 | |||
31 | CurrentWindowCmd::CurrentWindowCmd(Action act):m_action(act) { } | ||
32 | |||
33 | void CurrentWindowCmd::execute() { | ||
34 | Fluxbox *fb = Fluxbox::instance(); | ||
35 | if (fb->getFocusedWindow() != 0) | ||
36 | (*fb->getFocusedWindow().*m_action)(); | ||
37 | } | ||
38 | |||
39 | |||
40 | void KillWindowCmd::real_execute() { | ||
41 | XKillClient(FbTk::App::instance()->display(), window().clientWindow()); | ||
42 | } | ||
43 | |||
44 | void SendToWorkspaceCmd::real_execute() { | ||
45 | if (m_workspace_num > 0 && m_workspace_num < window().screen().getNumberOfWorkspaces()) | ||
46 | window().screen().sendToWorkspace(m_workspace_num, &window()); | ||
47 | } | ||
48 | |||
49 | void WindowHelperCmd::execute() { | ||
50 | if (Fluxbox::instance()->getFocusedWindow()) | ||
51 | real_execute(); | ||
52 | } | ||
53 | |||
54 | FluxboxWindow &WindowHelperCmd::window() { | ||
55 | return *Fluxbox::instance()->getFocusedWindow(); | ||
56 | } | ||
57 | |||
58 | MoveLeftCmd::MoveLeftCmd(int step_size):MoveHelper(step_size) { } | ||
59 | void MoveLeftCmd::real_execute() { | ||
60 | window().move(window().x() - stepSize(), window().y()); | ||
61 | } | ||
62 | |||
63 | MoveRightCmd::MoveRightCmd(int step_size):MoveHelper(step_size) { } | ||
64 | void MoveRightCmd::real_execute() { | ||
65 | window().move(window().x() + stepSize(), window().y()); | ||
66 | } | ||
67 | |||
68 | MoveDownCmd::MoveDownCmd(int step_size):MoveHelper(step_size) { } | ||
69 | void MoveDownCmd::real_execute() { | ||
70 | window().move(window().x(), window().y() + stepSize()); | ||
71 | } | ||
72 | |||
73 | MoveUpCmd::MoveUpCmd(int step_size):MoveHelper(step_size) { } | ||
74 | void MoveUpCmd::real_execute() { | ||
75 | window().move(window().x(), window().y() - stepSize()); | ||
76 | } | ||
77 | |||