diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-08-17 11:10:17 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-08-17 11:10:17 (GMT) |
commit | a23778a44d2469fdc414884f5fe72fde09c100cc (patch) | |
tree | dcff8778bef2f70fb1112f60f6de290a0aebe777 /src/CurrentWindowCmd.hh | |
parent | 72fd5e03a48396e6feec86534d266c68a9edd915 (diff) | |
download | fluxbox_pavel-a23778a44d2469fdc414884f5fe72fde09c100cc.zip fluxbox_pavel-a23778a44d2469fdc414884f5fe72fde09c100cc.tar.bz2 |
add SetTitle and SetTitleDialog key commands
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r-- | src/CurrentWindowCmd.hh | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh index d70e2fb..4c3f91b 100644 --- a/src/CurrentWindowCmd.hh +++ b/src/CurrentWindowCmd.hh | |||
@@ -240,11 +240,27 @@ private: | |||
240 | 240 | ||
241 | class FullscreenCmd: public WindowHelperCmd{ | 241 | class FullscreenCmd: public WindowHelperCmd{ |
242 | public: | 242 | public: |
243 | explicit FullscreenCmd(); | 243 | explicit FullscreenCmd() { } |
244 | protected: | 244 | protected: |
245 | void real_execute(); | 245 | void real_execute(); |
246 | }; | 246 | }; |
247 | 247 | ||
248 | class SetTitleDialogCmd: public WindowHelperCmd { | ||
249 | public: | ||
250 | explicit SetTitleDialogCmd() { } | ||
251 | protected: | ||
252 | void real_execute(); | ||
253 | }; | ||
254 | |||
255 | class SetTitleCmd: public WindowHelperCmd { | ||
256 | public: | ||
257 | explicit SetTitleCmd(std::string newtitle): title(newtitle) { } | ||
258 | protected: | ||
259 | void real_execute(); | ||
260 | private: | ||
261 | std::string title; | ||
262 | }; | ||
263 | |||
248 | class SetAlphaCmd: public WindowHelperCmd { | 264 | class SetAlphaCmd: public WindowHelperCmd { |
249 | public: | 265 | public: |
250 | SetAlphaCmd(int focus, bool rel, int unfocus, bool unrel); | 266 | SetAlphaCmd(int focus, bool rel, int unfocus, bool unrel); |