aboutsummaryrefslogtreecommitdiff
path: root/src/WorkspaceMenu.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-05-02 20:51:36 (GMT)
committerfluxgen <fluxgen>2004-05-02 20:51:36 (GMT)
commit11274940f84133791c71aeb716f52bf090765c89 (patch)
tree17f70f29f9745856357c1cf72227abf17afd5c77 /src/WorkspaceMenu.hh
parent6ab2a90d72b5350b5e6b410da611fe3ad2a771a9 (diff)
downloadfluxbox-11274940f84133791c71aeb716f52bf090765c89.zip
fluxbox-11274940f84133791c71aeb716f52bf090765c89.tar.bz2
menu instances that handles workspace and icon menu
Diffstat (limited to 'src/WorkspaceMenu.hh')
-rw-r--r--src/WorkspaceMenu.hh40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/WorkspaceMenu.hh b/src/WorkspaceMenu.hh
new file mode 100644
index 0000000..77f1006
--- /dev/null
+++ b/src/WorkspaceMenu.hh
@@ -0,0 +1,40 @@
1// WorkspaceMenu.hh for Fluxbox
2// Copyright (c) 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22// $Id: WorkspaceMenu.hh,v 1.1 2004/05/02 20:51:36 fluxgen Exp $
23
24#ifndef WORKSPACEMENU_HH
25#define WORKSPACEMENU_HH
26
27#include "FbMenu.hh"
28
29class BScreen;
30
31class WorkspaceMenu: public FbMenu {
32public:
33 explicit WorkspaceMenu(BScreen &screen);
34 virtual ~WorkspaceMenu() { }
35 void update(FbTk::Subject *subj);
36private:
37 void init(BScreen &screen);
38};
39
40#endif // WORKSPACEMENU_HH