aboutsummaryrefslogtreecommitdiff
path: root/src/IconButton.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-11 15:45:50 (GMT)
committerfluxgen <fluxgen>2003-08-11 15:45:50 (GMT)
commit86f934e73e528938122aff549bdefa9756ff80be (patch)
treec1e42f7d667061e64e4834d49c224cd0e315d968 /src/IconButton.hh
parentedbfc9234ef19d9089302cb346a10dee9cea38c0 (diff)
downloadfluxbox-86f934e73e528938122aff549bdefa9756ff80be.zip
fluxbox-86f934e73e528938122aff549bdefa9756ff80be.tar.bz2
shows pixmap with text
Diffstat (limited to 'src/IconButton.hh')
-rw-r--r--src/IconButton.hh59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/IconButton.hh b/src/IconButton.hh
new file mode 100644
index 0000000..de5440c
--- /dev/null
+++ b/src/IconButton.hh
@@ -0,0 +1,59 @@
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.1 2003/08/11 15:45:50 fluxgen Exp $
24
25#ifndef ICONBUTTON_HH
26#define ICONBUTTON_HH
27
28#include "FbTk/FbPixmap.hh"
29#include "FbTk/Observer.hh"
30
31#include "TextButton.hh"
32
33class FluxboxWindow;
34
35class IconButton: public TextButton, public FbTk::Observer {
36public:
37 IconButton(const FbTk::FbWindow &parent, const FbTk::Font &font, FluxboxWindow &window);
38 virtual ~IconButton();
39
40 void exposeEvent(XExposeEvent &event);
41 void clear();
42 void moveResize(int x, int y,
43 unsigned int width, unsigned int height);
44 void resize(unsigned int width, unsigned int height);
45
46 void update(FbTk::Subject *subj);
47 FluxboxWindow &win() { return m_win; }
48 const FluxboxWindow &win() const { return m_win; }
49
50private:
51 void setupWindow();
52
53 FluxboxWindow &m_win;
54 FbTk::FbWindow m_icon_window;
55 FbTk::FbPixmap m_icon_pixmap;
56 FbTk::FbPixmap m_icon_mask;
57};
58
59#endif // ICONBUTTON_HH