]> icculus.org git repositories - mikachu/openbox.git/blob - src/Configmenu.hh
use the raw screen size not the strut adjusted size to determine max_height and width...
[mikachu/openbox.git] / 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   Focusmenu *focusmenu;
65   Placementmenu *placementmenu;
66
67   friend class Focusmenu;
68   friend class Placementmenu;
69
70   Configmenu(const Configmenu&);
71   Configmenu& operator=(const Configmenu&);
72
73 protected:
74   virtual void itemSelected(int button, unsigned int index);
75   virtual void setValues(void);
76
77 public:
78   Configmenu(BScreen *scr);
79   virtual ~Configmenu(void);
80
81   inline Basemenu *getFocusmenu(void) { return focusmenu; }
82   inline Basemenu *getPlacementmenu(void) { return placementmenu; }
83
84   virtual void reconfigure(void);
85 };
86
87 #endif // __Configmenu_hh