aboutsummaryrefslogtreecommitdiff
path: root/src/WinButtonTheme.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/WinButtonTheme.cc')
-rw-r--r--src/WinButtonTheme.cc109
1 files changed, 109 insertions, 0 deletions
diff --git a/src/WinButtonTheme.cc b/src/WinButtonTheme.cc
new file mode 100644
index 0000000..d90d4c8
--- /dev/null
+++ b/src/WinButtonTheme.cc
@@ -0,0 +1,109 @@
1// WinButtonTheme.cc 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.cc,v 1.3 2003/05/06 23:56:46 fluxgen Exp $
23
24#include "WinButtonTheme.hh"
25
26#include "App.hh"
27
28#ifdef HAVE_CONFIG_H
29#include "config.h"
30#endif // HAVE_CONFIG_H
31
32#ifdef HAVE_XPM
33#include <X11/xpm.h>
34#endif // HAVE_XPM
35
36// not used
37template <>
38void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>::
39load() { }
40
41template <>
42void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>::
43setDefaultValue() {
44 // create empty pixmap
45 (*this)->pixmap = FbTk::FbPixmap(); // pixmap
46 (*this)->mask = FbTk::FbPixmap(); // mask
47 (*this)->pixmap_scaled = FbTk::FbPixmap();
48 (*this)->mask_scaled = FbTk::FbPixmap();
49}
50
51template <>
52void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>::
53setFromString(const char *str) {
54 if (str == 0)
55 setDefaultValue();
56 else {
57#ifdef HAVE_XPM
58 XpmAttributes xpm_attr;
59 xpm_attr.valuemask = 0;
60 Display *dpy = FbTk::App::instance()->display();
61 Pixmap pm = 0, mask = 0;
62 int retvalue = XpmReadFileToPixmap(dpy,
63 RootWindow(dpy, m_tm.screenNum()),
64 const_cast<char *>(str),
65 &pm,
66 &mask, &xpm_attr);
67 if (retvalue == 0) { // success
68 (*this)->pixmap = pm;
69 (*this)->mask = mask;
70 } else { // failure
71 setDefaultValue();
72 }
73#else
74 setDefaultValue();
75#endif // HAVE_XPM
76
77 }
78}
79
80WinButtonTheme::WinButtonTheme(int screen_num):
81 FbTk::Theme(screen_num),
82 m_close_pm(*this, "window.close.pixmap", "Window.Close.Pixmap"),
83 m_close_unfocus_pm(*this, "window.close.unfocus.pixmap", "Window.Close.Unfocus.Pixmap"),
84 m_close_pressed_pm(*this, "window.close.pressed.pixmap", "Window.Close.Pressed.Pixmap"),
85 m_maximize_pm(*this, "window.maximize.pixmap", "Window.Maximize.Pixmap"),
86 m_maximize_unfocus_pm(*this, "window.maximize.unfocus.pixmap", "Window.Maximize.Unfocus.pixmap"),
87 m_maximize_pressed_pm(*this, "window.maximize.pressed.pixmap", "Window.Maximize.Pressed.Pixmap"),
88 m_iconify_pm(*this, "window.iconify.pixmap", "Window.Iconify.Pixmap"),
89 m_iconify_unfocus_pm(*this, "window.iconify.unfocus.pixmap", "Window.Iconify.Unfocus.Pixmap"),
90 m_iconify_pressed_pm(*this, "window.iconify.pressed.pixmap", "Window.Iconify.Pressed.Pixmap"),
91 m_shade_pm(*this, "window.shade.pixmap", "Window.Shade.Pixmap"),
92 m_shade_unfocus_pm(*this, "window.shade.unfocus.pixmap", "Window.Shade.Unfocus.Pixmap"),
93 m_shade_pressed_pm(*this, "window.shade.pressed.pixmap", "Window.Shade.Pressed.Pixmap"),
94 m_stick_pm(*this, "window.stick.pixmap", "Window.Stick.Pixmap"),
95 m_stick_unfocus_pm(*this, "window.stick.unfocus.pixmap", "Window.Stick.Unfocus.Pixmap"),
96 m_stick_pressed_pm(*this, "window.stick.pressed.pixmap", "Window.Stick.Pressed.Pixmap"),
97 m_stuck_pm(*this, "window.stuck.pixmap", "Window.Stuck.Pixmap"),
98 m_stuck_unfocus_pm(*this, "window.stuck.unfocus.pixmap", "Window.Stuck.Unfocus.Pixmap") {
99
100}
101
102WinButtonTheme::~WinButtonTheme() {
103
104}
105
106void WinButtonTheme::reconfigTheme() {
107 reconfigSig().notify();
108}
109