aboutsummaryrefslogtreecommitdiff
path: root/src/WinButton.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/WinButton.hh')
-rw-r--r--src/WinButton.hh51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/WinButton.hh b/src/WinButton.hh
new file mode 100644
index 0000000..bd673fe
--- /dev/null
+++ b/src/WinButton.hh
@@ -0,0 +1,51 @@
1// WinButton.hh for Fluxbox Window Manager
2// Copyright (c) 2003 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: WinButton.hh,v 1.5 2004/01/10 00:37:35 rathnor Exp $
23
24#include "Button.hh"
25#include "Observer.hh"
26
27class FluxboxWindow;
28class WinButtonTheme;
29
30/// draws and handles basic window button graphic
31class WinButton:public FbTk::Button, public FbTk::Observer {
32public:
33 /// draw type for the button
34 enum Type {MAXIMIZE, MINIMIZE, SHADE, STICK, CLOSE};
35 WinButton(const FluxboxWindow &listen_to,
36 WinButtonTheme &theme,
37 Type buttontype, const FbTk::FbWindow &parent, int x, int y,
38 unsigned int width, unsigned int height);
39 /// override for drawing
40 void exposeEvent(XExposeEvent &event);
41 void buttonReleaseEvent(XButtonEvent &event);
42 /// override for redrawing
43 void clear();
44 void update(FbTk::Subject *subj);
45private:
46 void drawType(bool clear, bool no_trans); // don't update transparency (eg in clear)
47 Type m_type; ///< the button type
48 const FluxboxWindow &m_listen_to;
49 WinButtonTheme &m_theme;
50
51};