]> Dogcows Code - chaz/openbox/blob - src/Configmenu.hh
add a xinerama support menu
[chaz/openbox] / src / Configmenu.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // Configmenu.hh for Blackbox - An X11 Window Manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifndef __Configmenu_hh
25 #define __Configmenu_hh
26
27 #include "Basemenu.hh"
28
29 // forward declaration
30 class Blackbox;
31 class BScreen;
32 class Configmenu;
33
34 class Configmenu : public Basemenu {
35 private:
36 class Focusmenu : public Basemenu {
37 private:
38 Focusmenu(const Focusmenu&);
39 Focusmenu& operator=(const Focusmenu&);
40
41 protected:
42 virtual void itemSelected(int button, unsigned int index);
43 virtual void setValues(void);
44
45 public:
46 Focusmenu(Configmenu *cm);
47 virtual void reconfigure(void);
48 };
49
50 class Placementmenu : public Basemenu {
51 private:
52 Placementmenu(const Placementmenu&);
53 Placementmenu& operator=(const Placementmenu&);
54
55 protected:
56 virtual void itemSelected(int button, unsigned int index);
57 virtual void setValues(void);
58
59 public:
60 Placementmenu(Configmenu *cm);
61 virtual void reconfigure(void);
62 };
63
64 #ifdef XINERAMA
65 class Xineramamenu : public Basemenu {
66 private:
67 Xineramamenu(const Xineramamenu&);
68 Xineramamenu& operator=(const Xineramamenu&);
69
70 protected:
71 virtual void itemSelected(int button, unsigned int index);
72 virtual void setValues(void);
73
74 public:
75 Xineramamenu(Configmenu *cm);
76 virtual void reconfigure(void);
77 };
78 #endif // XINERAMA
79
80 Focusmenu *focusmenu;
81 Placementmenu *placementmenu;
82 #ifdef XINERAMA
83 Xineramamenu *xineramamenu;
84 #endif // XINERAMA
85
86 friend class Focusmenu;
87 friend class Placementmenu;
88
89 Configmenu(const Configmenu&);
90 Configmenu& operator=(const Configmenu&);
91
92 protected:
93 virtual void itemSelected(int button, unsigned int index);
94 virtual void setValues(void);
95
96 public:
97 Configmenu(BScreen *scr);
98 virtual ~Configmenu(void);
99
100 inline Basemenu *getFocusmenu(void) { return focusmenu; }
101 inline Basemenu *getPlacementmenu(void) { return placementmenu; }
102 #ifdef XINERAMA
103 inline Basemenu *getXineramamenu(void) { return xineramamenu; }
104 #endif // XINERAMA
105
106 virtual void reconfigure(void);
107 };
108
109 #endif // __Configmenu_hh
This page took 0.038493 seconds and 5 git commands to generate.