aboutsummaryrefslogtreecommitdiff
path: root/src/IconButton.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/IconButton.hh')
-rw-r--r--src/IconButton.hh67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/IconButton.hh b/src/IconButton.hh
new file mode 100644
index 0000000..69fbf46
--- /dev/null
+++ b/src/IconButton.hh
@@ -0,0 +1,67 @@
1// IconButton.hh
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4//
5// Permission is hereby granted, free of charge, to any person obtaining a
6// copy of this software and associated documentation files (the "Software"),
7// to deal in the Software without restriction, including without limitation
8// the rights to use, copy, modify, merge, publish, distribute, sublicense,
9// and/or sell copies of the Software, and to permit persons to whom the
10// Software is furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE.
22
23// $Id: IconButton.hh,v 1.4 2003/11/27 14:27:48 fluxgen Exp $
24
25#ifndef ICONBUTTON_HH
26#define ICONBUTTON_HH
27
28#include "FbTk/FbPixmap.hh"
29#include "FbTk/Observer.hh"
30#include "FbTk/TextButton.hh"
31
32class FluxboxWindow;
33
34class IconButton: public FbTk::TextButton, public FbTk::Observer {
35public:
36 IconButton(const FbTk::FbWindow &parent, const FbTk::Font &font,
37 FluxboxWindow &window);
38 virtual ~IconButton();
39
40 void exposeEvent(XExposeEvent &event);
41 void clear();
42 void clearArea(int x, int y,
43 unsigned int width, unsigned int height,
44 bool exposure = false);
45 void moveResize(int x, int y,
46 unsigned int width, unsigned int height);
47 void resize(unsigned int width, unsigned int height);
48
49 void update(FbTk::Subject *subj);
50 void setPixmap(bool use);
51
52 FluxboxWindow &win() { return m_win; }
53 const FluxboxWindow &win() const { return m_win; }
54
55protected:
56 void drawText(int x = 0, int y = 0);
57private:
58 void setupWindow();
59
60 FluxboxWindow &m_win;
61 FbTk::FbWindow m_icon_window;
62 FbTk::FbPixmap m_icon_pixmap;
63 FbTk::FbPixmap m_icon_mask;
64 bool m_use_pixmap;
65};
66
67#endif // ICONBUTTON_HH