aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
authormathias <mathias>2006-06-22 07:46:12 (GMT)
committermathias <mathias>2006-06-22 07:46:12 (GMT)
commitdedbd7e46816ebce6628d9357cc7feee7a61ab57 (patch)
treeff8e90f26edffb6d579857e9f68d86c378a7320c /src/FbCommands.hh
parent535a88ce907641ef5648787bfa5d507d2581b86f (diff)
downloadfluxbox-dedbd7e46816ebce6628d9357cc7feee7a61ab57.zip
fluxbox-dedbd7e46816ebce6628d9357cc7feee7a61ab57.tar.bz2
Added patch from Jim Ramsay (i dot am at jimramsay dot com) to freely
define the used modkey. Added new action SetModKey too
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index 023ff02..8ac40fa 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -96,6 +96,14 @@ private:
96 std::string m_filename; 96 std::string m_filename;
97}; 97};
98 98
99class SetModKeyCmd: public FbTk::Command {
100public:
101 explicit SetModKeyCmd(const std::string& modkey);
102 void execute();
103private:
104 std::string m_modkey;
105};
106
99class KeyModeCmd: public FbTk::Command { 107class KeyModeCmd: public FbTk::Command {
100public: 108public:
101 explicit KeyModeCmd(const std::string &arguments); 109 explicit KeyModeCmd(const std::string &arguments);