aboutsummaryrefslogtreecommitdiff
path: root/src/MenuCreator.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2008-08-14 05:52:39 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2008-08-14 05:52:39 (GMT)
commite169d33552c8e7070aa6e13da0187f2013b4cfc3 (patch)
treeae9e92c7e885791c7f47645184070cbcd441ab94 /src/MenuCreator.hh
parentc82e7c0080f8a5c14dcf95ec92dc42f59ea9dd8b (diff)
parent91ca3bc5c8e2b892a9a81b18246f72aba7deebfd (diff)
downloadfluxbox_paul-e169d33552c8e7070aa6e13da0187f2013b4cfc3.zip
fluxbox_paul-e169d33552c8e7070aa6e13da0187f2013b4cfc3.tar.bz2
Merge branch 'master' into to_push
Diffstat (limited to 'src/MenuCreator.hh')
-rw-r--r--src/MenuCreator.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/MenuCreator.hh b/src/MenuCreator.hh
index c5d85ad..a9fb649 100644
--- a/src/MenuCreator.hh
+++ b/src/MenuCreator.hh
@@ -28,21 +28,21 @@
28#include <list> 28#include <list>
29 29
30namespace FbTk { 30namespace FbTk {
31class AutoReloadHelper;
31class Menu; 32class Menu;
32} 33}
33 34
35class FbMenu;
34class FluxboxWindow; 36class FluxboxWindow;
35 37
36class MenuCreator { 38class MenuCreator {
37public: 39public:
38 static FbTk::Menu *createMenu(const std::string &label, int screen_num); 40 static FbMenu *createMenu(const std::string &label, int screen_num);
39 static FbTk::Menu *createFromFile(const std::string &filename, int screen_num, 41 static FbMenu *createMenuType(const std::string &label, int screen_num);
40 bool require_begin); 42 static bool createFromFile(const std::string &filename,
41 static FbTk::Menu *createMenuType(const std::string &label, int screen_num); 43 FbTk::Menu &inject_into,
42 static bool createFromFile(const std::string &filename, FbTk::Menu &inject_into, 44 FbTk::AutoReloadHelper *reloader = NULL,
43 bool require_begin); 45 bool begin = true);
44 static bool createWindowMenuFromFile(const std::string &filename, FbTk::Menu &inject_into,
45 bool require_begin);
46 static bool createWindowMenuItem(const std::string &type, const std::string &label, 46 static bool createWindowMenuItem(const std::string &type, const std::string &label,
47 FbTk::Menu &inject_into); 47 FbTk::Menu &inject_into);
48 48