]> icculus.org git repositories - mikachu/openbox.git/blob - src/Configmenu.hh
reindent the help/usage message
[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
44   public:
45     Focusmenu(Configmenu *cm);
46   };
47
48   class Placementmenu : public Basemenu {
49   private:
50     Placementmenu(const Placementmenu&);
51     Placementmenu& operator=(const Placementmenu&);
52
53   protected:
54     virtual void itemSelected(int button, unsigned int index);
55
56   public:
57     Placementmenu(Configmenu *cm);
58   };
59
60   Focusmenu *focusmenu;
61   Placementmenu *placementmenu;
62
63   friend class Focusmenu;
64   friend class Placementmenu;
65
66   Configmenu(const Configmenu&);
67   Configmenu& operator=(const Configmenu&);
68
69 protected:
70   virtual void itemSelected(int button, unsigned int index);
71
72 public:
73   Configmenu(BScreen *scr);
74   virtual ~Configmenu(void);
75
76   inline Basemenu *getFocusmenu(void) { return focusmenu; }
77   inline Basemenu *getPlacementmenu(void) { return placementmenu; }
78
79   void reconfigure(void);
80 };
81
82 #endif // __Configmenu_hh