diff options
Diffstat (limited to 'src/Windowmenu.hh')
-rw-r--r-- | src/Windowmenu.hh | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/Windowmenu.hh b/src/Windowmenu.hh new file mode 100644 index 0000000..794d091 --- /dev/null +++ b/src/Windowmenu.hh | |||
@@ -0,0 +1,88 @@ | |||
1 | // Windowmenu.hh for Blackbox - an X11 Window manager | ||
2 | // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.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 | #ifndef _WINDOWMENU_HH_ | ||
23 | #define _WINDOWMENU_HH_ | ||
24 | |||
25 | // forward declaration | ||
26 | class Windowmenu; | ||
27 | class SendtoWorkspaceMenu; | ||
28 | |||
29 | class Fluxbox; | ||
30 | class FluxboxWindow; | ||
31 | class Toolbar; | ||
32 | |||
33 | #include "Basemenu.hh" | ||
34 | |||
35 | |||
36 | class Windowmenu : public Basemenu { | ||
37 | private: | ||
38 | FluxboxWindow *window; | ||
39 | BScreen *screen; | ||
40 | |||
41 | |||
42 | class SendtoWorkspacemenu : public Basemenu { | ||
43 | private: | ||
44 | Windowmenu *windowmenu; | ||
45 | |||
46 | protected: | ||
47 | virtual void itemSelected(int, int); | ||
48 | |||
49 | public: | ||
50 | SendtoWorkspacemenu(Windowmenu *); | ||
51 | inline Windowmenu *getWindowMenu() const { return windowmenu; } | ||
52 | void update(void); | ||
53 | |||
54 | virtual void show(void); | ||
55 | }; | ||
56 | |||
57 | class SendGroupToWorkspacemenu : public SendtoWorkspacemenu { | ||
58 | protected: | ||
59 | virtual void itemSelected(int, int); | ||
60 | public: | ||
61 | SendGroupToWorkspacemenu(Windowmenu *); | ||
62 | |||
63 | }; | ||
64 | |||
65 | SendtoWorkspacemenu *sendToMenu; | ||
66 | SendGroupToWorkspacemenu *sendGroupToMenu; | ||
67 | |||
68 | friend class SendtoWorkspacemenu; | ||
69 | friend class SendGroupToWorkspacemenu; | ||
70 | |||
71 | protected: | ||
72 | virtual void itemSelected(int, int); | ||
73 | |||
74 | |||
75 | public: | ||
76 | Windowmenu(FluxboxWindow *); | ||
77 | virtual ~Windowmenu(void); | ||
78 | |||
79 | inline Basemenu *getSendToMenu(void) { return static_cast<Basemenu *>(sendToMenu); } | ||
80 | inline Basemenu *getSendGroupToMenu(void) { return static_cast<Basemenu *>(sendGroupToMenu); } | ||
81 | void reconfigure(void); | ||
82 | void setClosable(void); | ||
83 | |||
84 | virtual void show(void); | ||
85 | }; | ||
86 | |||
87 | |||
88 | #endif // __Windowmenu_hh | ||