diff options
author | fluxgen <fluxgen> | 2003-12-20 17:42:04 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-12-20 17:42:04 (GMT) |
commit | 5a91d8747e4ab0bb25b85c82e49f6f74d8e14e05 (patch) | |
tree | 1f03ec76a386ccced9fab202c5eab0f738c98303 /src/FbCommands.hh | |
parent | d86f0e36bb6c09e2b3e097f26a6f2ddf0e751e55 (diff) | |
download | fluxbox-5a91d8747e4ab0bb25b85c82e49f6f74d8e14e05.zip fluxbox-5a91d8747e4ab0bb25b85c82e49f6f74d8e14e05.tar.bz2 |
bindkey command
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r-- | src/FbCommands.hh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh index 0355e7e..2d1d5da 100644 --- a/src/FbCommands.hh +++ b/src/FbCommands.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbCommands.hh,v 1.16 2003/12/19 17:19:56 fluxgen Exp $ | 22 | // $Id: FbCommands.hh,v 1.17 2003/12/20 17:41:32 fluxgen Exp $ |
23 | 23 | ||
24 | // \file contains basic commands to restart, reconfigure, execute command and exit fluxbox | 24 | // \file contains basic commands to restart, reconfigure, execute command and exit fluxbox |
25 | 25 | ||
@@ -128,4 +128,12 @@ public: | |||
128 | void execute(); | 128 | void execute(); |
129 | }; | 129 | }; |
130 | 130 | ||
131 | class BindKeyCmd: public FbTk::Command { | ||
132 | public: | ||
133 | BindKeyCmd(const std::string &keybind); | ||
134 | void execute(); | ||
135 | private: | ||
136 | const std::string m_keybind; | ||
137 | }; | ||
138 | |||
131 | #endif // FBCOMMANDS_HH | 139 | #endif // FBCOMMANDS_HH |