diff options
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r-- | src/CurrentWindowCmd.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh index d013b24..c1b9140 100644 --- a/src/CurrentWindowCmd.hh +++ b/src/CurrentWindowCmd.hh | |||
@@ -197,4 +197,14 @@ public: | |||
197 | protected: | 197 | protected: |
198 | void real_execute(); | 198 | void real_execute(); |
199 | }; | 199 | }; |
200 | |||
201 | class SetAlphaCmd: public WindowHelperCmd { | ||
202 | public: | ||
203 | SetAlphaCmd(int focus, bool rel, int unfocus, bool unrel); | ||
204 | protected: | ||
205 | void real_execute(); | ||
206 | private: | ||
207 | int m_focus, m_unfocus; | ||
208 | int m_relative, m_un_relative; | ||
209 | }; | ||
200 | #endif // CURRENTWINDOWCMD_HH | 210 | #endif // CURRENTWINDOWCMD_HH |