summaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index f9c33af..811fb78 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -25,7 +25,8 @@
25#define FBCOMMANDS_HH 25#define FBCOMMANDS_HH
26 26
27#include "FbTk/Command.hh" 27#include "FbTk/Command.hh"
28#include "FbTk/RefCount.hh" 28
29#include <memory>
29 30
30#include "ClientMenu.hh" 31#include "ClientMenu.hh"
31#include "ClientPattern.hh" 32#include "ClientPattern.hh"
@@ -124,16 +125,17 @@ private:
124 const int m_option; 125 const int m_option;
125 const ClientPattern m_pat; 126 const ClientPattern m_pat;
126 std::list<FluxboxWindow *> m_list; 127 std::list<FluxboxWindow *> m_list;
127 FbTk::RefCount<ClientMenu> m_menu; 128 std::auto_ptr<ClientMenu> m_menu;
128}; 129};
129 130
130class ShowCustomMenuCmd: public FbTk::Command<void> { 131class ShowCustomMenuCmd: public FbTk::Command<void> {
131public: 132public:
132 explicit ShowCustomMenuCmd(const std::string &arguments); 133 explicit ShowCustomMenuCmd(const std::string &arguments);
133 void execute(); 134 void execute();
135 void reload();
134private: 136private:
135 std::string custom_menu_file; 137 std::string custom_menu_file;
136 FbTk::RefCount<FbTk::Menu> m_menu; 138 std::auto_ptr<FbMenu> m_menu;
137}; 139};
138 140
139class ShowRootMenuCmd: public FbTk::Command<void> { 141class ShowRootMenuCmd: public FbTk::Command<void> {