aboutsummaryrefslogtreecommitdiff
path: root/src/MenuCreator.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-05-02 20:59:29 (GMT)
committerfluxgen <fluxgen>2004-05-02 20:59:29 (GMT)
commit95f721e35b91328615b9cb1de45da885ed921797 (patch)
tree2237b3997b1017eb1b5f80473a0c858ddb2858e9 /src/MenuCreator.hh
parent0f798ff9de8fa3d878e327be3a12ee863dbf63bb (diff)
downloadfluxbox-95f721e35b91328615b9cb1de45da885ed921797.zip
fluxbox-95f721e35b91328615b9cb1de45da885ed921797.tar.bz2
creates menus...
Diffstat (limited to 'src/MenuCreator.hh')
-rw-r--r--src/MenuCreator.hh46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/MenuCreator.hh b/src/MenuCreator.hh
new file mode 100644
index 0000000..d9625f3
--- /dev/null
+++ b/src/MenuCreator.hh
@@ -0,0 +1,46 @@
1// MenuCreator.hh for Fluxbox
2// Copyright (c) 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4//
5// Permission is hereby granted, free of charge, to any person obtaining a
6// copy of this software and associated documentation files (the "Software"),
7// to deal in the Software without restriction, including without limitation
8// the rights to use, copy, modify, merge, publish, distribute, sublicense,
9// and/or sell copies of the Software, and to permit persons to whom the
10// Software is furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE.
22
23#ifndef MENUCREATOR_HH
24#define MENUCREATOR_HH
25
26#include <string>
27
28namespace FbTk {
29class Menu;
30}
31
32class FluxboxWindow;
33
34class MenuCreator {
35public:
36 static FbTk::Menu *createMenu(const std::string &label, int screen_num);
37 static FbTk::Menu *createFromFile(const std::string &filename, int screen_num);
38 static FbTk::Menu *createMenuType(const std::string &label, int screen_num);
39 static void createFromFile(const std::string &filename, FbTk::Menu &inject_into);
40 static void createFromFile(const std::string &filename, FbTk::Menu &inject_into,
41 FluxboxWindow &win);
42 static bool createWindowMenuItem(const std::string &type, const std::string &label,
43 FbTk::Menu &inject_into, FluxboxWindow &win);
44};
45
46#endif // MENUCREATOR_HH