aboutsummaryrefslogtreecommitdiff
path: root/src/IconButton.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/IconButton.hh')
-rw-r--r--src/IconButton.hh58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/IconButton.hh b/src/IconButton.hh
new file mode 100644
index 0000000..8367e1a
--- /dev/null
+++ b/src/IconButton.hh
@@ -0,0 +1,58 @@
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.2 2003/08/19 16:13:25 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, FluxboxWindow &window);
37 virtual ~IconButton();
38
39 void exposeEvent(XExposeEvent &event);
40 void clear();
41 void moveResize(int x, int y,
42 unsigned int width, unsigned int height);
43 void resize(unsigned int width, unsigned int height);
44
45 void update(FbTk::Subject *subj);
46 FluxboxWindow &win() { return m_win; }
47 const FluxboxWindow &win() const { return m_win; }
48
49private:
50 void setupWindow();
51
52 FluxboxWindow &m_win;
53 FbTk::FbWindow m_icon_window;
54 FbTk::FbPixmap m_icon_pixmap;
55 FbTk::FbPixmap m_icon_mask;
56};
57
58#endif // ICONBUTTON_HH