aboutsummaryrefslogtreecommitdiff
path: root/src/WinButton.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-01-05 22:48:54 (GMT)
committerfluxgen <fluxgen>2003-01-05 22:48:54 (GMT)
commit3145c28d096b921e1f44d761ac999d812d0561b7 (patch)
tree15a8329815df07e8934b2a59834ff5d856263327 /src/WinButton.hh
parent9195cea6e7536f9bd59e6105c169945c4c5eff0b (diff)
downloadfluxbox-3145c28d096b921e1f44d761ac999d812d0561b7.zip
fluxbox-3145c28d096b921e1f44d761ac999d812d0561b7.tar.bz2
draws simple window graphics and handles buttons
Diffstat (limited to 'src/WinButton.hh')
-rw-r--r--src/WinButton.hh42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/WinButton.hh b/src/WinButton.hh
new file mode 100644
index 0000000..8817a48
--- /dev/null
+++ b/src/WinButton.hh
@@ -0,0 +1,42 @@
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.1 2003/01/05 22:48:54 fluxgen Exp $
23
24#include "Button.hh"
25
26/// draws and handles basic window button graphic
27/**
28 window button
29 */
30class WinButton:public FbTk::Button {
31public:
32 /// draw type for the button
33 enum Type {MAXIMIZE, MINIMIZE, SHADE, STICK, CLOSE};
34 WinButton(Type buttontype, const FbTk::FbWindow &parent, int x, int y, unsigned int width, unsigned int height);
35 /// override for drawing
36 void exposeEvent(XExposeEvent &event);
37 /// override for redrawing
38 void clear();
39private:
40 void drawType();
41 Type m_type; ///< the button type
42};