aboutsummaryrefslogtreecommitdiff
path: root/src/WinButton.cc
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.cc
parent9195cea6e7536f9bd59e6105c169945c4c5eff0b (diff)
downloadfluxbox-3145c28d096b921e1f44d761ac999d812d0561b7.zip
fluxbox-3145c28d096b921e1f44d761ac999d812d0561b7.tar.bz2
draws simple window graphics and handles buttons
Diffstat (limited to 'src/WinButton.cc')
-rw-r--r--src/WinButton.cc91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/WinButton.cc b/src/WinButton.cc
new file mode 100644
index 0000000..01a096d
--- /dev/null
+++ b/src/WinButton.cc
@@ -0,0 +1,91 @@
1// WinButton.cc 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.cc,v 1.1 2003/01/05 22:48:54 fluxgen Exp $
23
24#include "WinButton.hh"
25#include "App.hh"
26
27WinButton::WinButton(Type buttontype, const FbTk::FbWindow &parent,
28 int x, int y,
29 unsigned int width, unsigned int height):
30 FbTk::Button(parent, x, y, width, height),
31 m_type(buttontype) {
32
33}
34
35void WinButton::exposeEvent(XExposeEvent &event) {
36 FbTk::Button::exposeEvent(event);
37 drawType();
38}
39
40void WinButton::drawType() {
41 if (gc() == 0) // must have valid graphic context
42 return;
43
44 Display *disp = FbTk::App::instance()->display();
45 switch (m_type) {
46 case MAXIMIZE:
47 XDrawRectangle(disp, window().window(),
48 gc(),
49 2, 2, width() - 5, height() - 5);
50 XDrawLine(disp, window().window(),
51 gc(),
52 2, 3, width() - 3, 3);
53 break;
54 case MINIMIZE:
55 XDrawRectangle(disp, window().window(),
56 gc(),
57 2, height() - 5, width() - 5, 2);
58 break;
59 case STICK:
60 // if (m_stuck) {
61 XFillRectangle(disp, window().window(),
62 gc(),
63 width()/2 - width()/4, height()/2 - height()/4,
64 width()/2, height()/2);
65 /* } else {
66 XFillRectangle(disp, window().window(),
67 gc(),
68 width()/2, height()/2,
69 width()/5, height()/5);
70 }
71 */
72 break;
73 case CLOSE:
74 XDrawLine(disp, window().window(),
75 gc(),
76 2, 2,
77 width() - 3, height() - 3);
78 XDrawLine(disp, window().window(),
79 gc(),
80 2, width() - 3,
81 height() - 3, 2);
82 break;
83 case SHADE:
84 break;
85 }
86}
87
88void WinButton::clear() {
89 FbTk::Button::clear();
90 drawType();
91}