aboutsummaryrefslogtreecommitdiff
path: root/src/CurrentWindowCmd.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-08-17 11:10:17 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-08-17 11:10:17 (GMT)
commita23778a44d2469fdc414884f5fe72fde09c100cc (patch)
treedcff8778bef2f70fb1112f60f6de290a0aebe777 /src/CurrentWindowCmd.hh
parent72fd5e03a48396e6feec86534d266c68a9edd915 (diff)
downloadfluxbox-a23778a44d2469fdc414884f5fe72fde09c100cc.zip
fluxbox-a23778a44d2469fdc414884f5fe72fde09c100cc.tar.bz2
add SetTitle and SetTitleDialog key commands
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r--src/CurrentWindowCmd.hh18
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
241class FullscreenCmd: public WindowHelperCmd{ 241class FullscreenCmd: public WindowHelperCmd{
242public: 242public:
243 explicit FullscreenCmd(); 243 explicit FullscreenCmd() { }
244protected: 244protected:
245 void real_execute(); 245 void real_execute();
246}; 246};
247 247
248class SetTitleDialogCmd: public WindowHelperCmd {
249public:
250 explicit SetTitleDialogCmd() { }
251protected:
252 void real_execute();
253};
254
255class SetTitleCmd: public WindowHelperCmd {
256public:
257 explicit SetTitleCmd(std::string newtitle): title(newtitle) { }
258protected:
259 void real_execute();
260private:
261 std::string title;
262};
263
248class SetAlphaCmd: public WindowHelperCmd { 264class SetAlphaCmd: public WindowHelperCmd {
249public: 265public:
250 SetAlphaCmd(int focus, bool rel, int unfocus, bool unrel); 266 SetAlphaCmd(int focus, bool rel, int unfocus, bool unrel);