aboutsummaryrefslogtreecommitdiff
path: root/src/WinButtonTheme.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/WinButtonTheme.hh')
-rw-r--r--src/WinButtonTheme.hh84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/WinButtonTheme.hh b/src/WinButtonTheme.hh
new file mode 100644
index 0000000..0e959ca
--- /dev/null
+++ b/src/WinButtonTheme.hh
@@ -0,0 +1,84 @@
1// WinButtonTheme.hh for Fluxbox - an X11 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: WinButtonTheme.hh,v 1.4 2003/08/22 21:35:40 fluxgen Exp $
23
24#ifndef WINBUTTONTHEME_HH
25#define WINBUTTONTHEME_HH
26
27#include "Theme.hh"
28#include "FbTk/PixmapWithMask.hh"
29
30class FbWinFrameTheme;
31
32class WinButtonTheme: public FbTk::Theme {
33public:
34 WinButtonTheme(int screen_num, const FbWinFrameTheme &frame_theme);
35 ~WinButtonTheme();
36
37 void reconfigTheme();
38
39 inline const FbTk::PixmapWithMask &closePixmap() const { return *m_close_pm; }
40 inline FbTk::PixmapWithMask &closePixmap() { return *m_close_pm; }
41 inline FbTk::PixmapWithMask &closeUnfocusPixmap() { return *m_close_unfocus_pm; }
42 inline const FbTk::PixmapWithMask &closePressedPixmap() const { return *m_close_pressed_pm; }
43 inline FbTk::PixmapWithMask &closePressedPixmap() { return *m_close_pressed_pm; }
44
45 inline const FbTk::PixmapWithMask &maximizePixmap() const { return *m_maximize_pm; }
46 inline FbTk::PixmapWithMask &maximizePixmap() { return *m_maximize_pm; }
47 inline FbTk::PixmapWithMask &maximizeUnfocusPixmap() { return *m_maximize_unfocus_pm; }
48 inline const FbTk::PixmapWithMask &maximizePressedPixmap() const { return *m_maximize_pressed_pm; }
49 inline FbTk::PixmapWithMask &maximizePressedPixmap() { return *m_maximize_pressed_pm; }
50
51 inline const FbTk::PixmapWithMask &iconifyPixmap() const { return *m_iconify_pm; }
52 inline FbTk::PixmapWithMask &iconifyPixmap() { return *m_iconify_pm; }
53 inline FbTk::PixmapWithMask &iconifyUnfocusPixmap() { return *m_iconify_unfocus_pm; }
54 inline const FbTk::PixmapWithMask &iconifyPressedPixmap() const { return *m_iconify_pressed_pm; }
55 inline FbTk::PixmapWithMask &iconifyPressedPixmap() { return *m_iconify_pressed_pm; }
56
57 inline const FbTk::PixmapWithMask &stickPixmap() const { return *m_stick_pm; }
58 inline FbTk::PixmapWithMask &stickPixmap() { return *m_stick_pm; }
59 inline FbTk::PixmapWithMask &stickUnfocusPixmap() { return *m_stick_unfocus_pm; }
60 inline const FbTk::PixmapWithMask &stickPressedPixmap() const { return *m_stick_pressed_pm; }
61 inline FbTk::PixmapWithMask &stickPressedPixmap() { return *m_stick_pressed_pm; }
62
63 inline FbTk::PixmapWithMask &stuckPixmap() { return *m_stuck_pm; }
64 inline FbTk::PixmapWithMask &stuckUnfocusPixmap() { return *m_stuck_unfocus_pm; }
65
66 inline const FbTk::PixmapWithMask &shadePixmap() const { return *m_shade_pm; }
67 inline FbTk::PixmapWithMask &shadePixmap() { return *m_shade_pm; }
68 inline FbTk::PixmapWithMask &shadeUnfocusPixmap() { return *m_shade_unfocus_pm; }
69 inline const FbTk::PixmapWithMask &shadePressedPixmap() const { return *m_shade_pressed_pm; }
70 inline FbTk::PixmapWithMask &shadePressedPixmap() { return *m_shade_pressed_pm; }
71
72private:
73
74 FbTk::ThemeItem<FbTk::PixmapWithMask> m_close_pm, m_close_unfocus_pm, m_close_pressed_pm;
75 FbTk::ThemeItem<FbTk::PixmapWithMask> m_maximize_pm, m_maximize_unfocus_pm, m_maximize_pressed_pm;
76 FbTk::ThemeItem<FbTk::PixmapWithMask> m_iconify_pm, m_iconify_unfocus_pm, m_iconify_pressed_pm;
77 FbTk::ThemeItem<FbTk::PixmapWithMask> m_shade_pm, m_shade_unfocus_pm, m_shade_pressed_pm;
78 FbTk::ThemeItem<FbTk::PixmapWithMask> m_stick_pm, m_stick_unfocus_pm, m_stick_pressed_pm;
79 FbTk::ThemeItem<FbTk::PixmapWithMask> m_stuck_pm, m_stuck_unfocus_pm;
80
81 const FbWinFrameTheme &m_frame_theme;
82};
83
84#endif // WINBUTTONTHEME_HH