aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.cc
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.cc
parent4bf8a39f75a21c9c3146157e3bbb735e37a6788b (diff)
downloadfluxbox-695d926b2f56a602b62773f2a6aa4eaf2c5c40b2.zip
fluxbox-695d926b2f56a602b62773f2a6aa4eaf2c5c40b2.tar.bz2
commands on current window
Diffstat (limited to 'src/CurrentWindowCmd.cc')
-rw-r--r--src/CurrentWindowCmd.cc77
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
31CurrentWindowCmd::CurrentWindowCmd(Action act):m_action(act) { }
32
33void CurrentWindowCmd::execute() {
34 Fluxbox *fb = Fluxbox::instance();
35 if (fb->getFocusedWindow() != 0)
36 (*fb->getFocusedWindow().*m_action)();
37}
38
39
40void KillWindowCmd::real_execute() {
41 XKillClient(FbTk::App::instance()->display(), window().clientWindow());
42}
43
44void 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
49void WindowHelperCmd::execute() {
50 if (Fluxbox::instance()->getFocusedWindow())
51 real_execute();
52}
53
54FluxboxWindow &WindowHelperCmd::window() {
55 return *Fluxbox::instance()->getFocusedWindow();
56}
57
58MoveLeftCmd::MoveLeftCmd(int step_size):MoveHelper(step_size) { }
59void MoveLeftCmd::real_execute() {
60 window().move(window().x() - stepSize(), window().y());
61}
62
63MoveRightCmd::MoveRightCmd(int step_size):MoveHelper(step_size) { }
64void MoveRightCmd::real_execute() {
65 window().move(window().x() + stepSize(), window().y());
66}
67
68MoveDownCmd::MoveDownCmd(int step_size):MoveHelper(step_size) { }
69void MoveDownCmd::real_execute() {
70 window().move(window().x(), window().y() + stepSize());
71}
72
73MoveUpCmd::MoveUpCmd(int step_size):MoveHelper(step_size) { }
74void MoveUpCmd::real_execute() {
75 window().move(window().x(), window().y() - stepSize());
76}
77