summaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh
index 157855c..d70e2fb 100644
--- a/src/CurrentWindowCmd.hh
+++ b/src/CurrentWindowCmd.hh
@@ -137,6 +137,16 @@ private:
137 const int m_tab_num; 137 const int m_tab_num;
138}; 138};
139 139
140// focus the window
141class FocusCmd: public WindowHelperCmd {
142public:
143 explicit FocusCmd(const std::string &pat): m_pat(pat.c_str()) { }
144protected:
145 void real_execute();
146private:
147 const ClientPattern m_pat;
148};
149
140// begin moving with mouse 150// begin moving with mouse
141class StartMovingCmd: public WindowHelperCmd { 151class StartMovingCmd: public WindowHelperCmd {
142public: 152public:
@@ -247,6 +257,17 @@ private:
247 int m_relative, m_un_relative; 257 int m_relative, m_un_relative;
248}; 258};
249 259
260class SetLayerCmd: public WindowHelperCmd {
261public:
262 explicit SetLayerCmd(int layer): m_layer(layer) { }
263 static FbTk::Command<void> *parse(const std::string &command,
264 const std::string &args, bool trusted);
265protected:
266 void real_execute();
267private:
268 int m_layer;
269};
270
250class MatchCmd: public WindowHelperBoolCmd { 271class MatchCmd: public WindowHelperBoolCmd {
251public: 272public:
252 MatchCmd(const std::string &pat): m_pat(pat.c_str()) { }; 273 MatchCmd(const std::string &pat): m_pat(pat.c_str()) { };