all repos — fluxbox @ 556b74b33332accd6fa9066182df2555c6abd9a4

custom fork of the fluxbox windowmanager

handles close, maximize, iconify, shade and stick theme pixmaps
fluxgen fluxgen
commit

556b74b33332accd6fa9066182df2555c6abd9a4

parent

39e05f49d0fe58b42b36495950412e8d6b7673a2

2 files changed, 188 insertions(+), 0 deletions(-)

jump to
A src/WinButtonTheme.cc

@@ -0,0 +1,103 @@

+// WinButtonTheme.cc for Fluxbox - an X11 Window manager +// Copyright (c) 2003 Henrik Kinnunen (fluxgen(at)users.sourceforge.net) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +// DEALINGS IN THE SOFTWARE. + +// $Id: WinButtonTheme.cc,v 1.1 2003/04/28 22:30:34 fluxgen Exp $ + +#include "WinButtonTheme.hh" + +#include "App.hh" + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif // HAVE_CONFIG_H + +#ifdef HAVE_XPM +#include <X11/xpm.h> +#endif // HAVE_XPM + +// not used +template <> +void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>:: +load() { } + +template <> +void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>:: +setDefaultValue() { + // create empty pixmap + (*this)->pixmap = FbTk::FbPixmap(); // pixmap + (*this)->mask = FbTk::FbPixmap(); // mask + (*this)->pixmap_scaled = FbTk::FbPixmap(); + (*this)->mask_scaled = FbTk::FbPixmap(); +} + +template <> +void FbTk::ThemeItem<WinButtonTheme::PixmapWithMask>:: +setFromString(const char *str) { + if (str == 0) + setDefaultValue(); + else { +#ifdef HAVE_XPM + XpmAttributes xpm_attr; + xpm_attr.valuemask = 0; + Display *dpy = FbTk::App::instance()->display(); + Pixmap pm = 0, mask = 0; + int retvalue = XpmReadFileToPixmap(dpy, + //!! TODO need the right root window + RootWindow(dpy, 0), + const_cast<char *>(str), + &pm, + &mask, &xpm_attr); + if (retvalue == 0) { // success + (*this)->pixmap = pm; + (*this)->mask = mask; + } else { // failure + setDefaultValue(); + } +#else + setDefaultValue(); +#endif // HAVE_XPM + + } +} + +WinButtonTheme::WinButtonTheme(int screen_num): + FbTk::Theme(screen_num), + m_close_pm(*this, "window.close.pixmap", "Window.Close.Pixmap"), + m_close_pressed_pm(*this, "window.close.pressed.pixmap", "Window.Close.Pressed.Pixmap"), + m_maximize_pm(*this, "window.maximize.pixmap", "Window.Maximize.Pixmap"), + m_maximize_pressed_pm(*this, "window.maximize.pressed.pixmap", "Window.Maximize.Pressed.Pixmap"), + m_iconify_pm(*this, "window.iconify.pixmap", "Window.Iconify.Pixmap"), + m_iconify_pressed_pm(*this, "window.iconify.pressed.pixmap", "Window.Iconify.Pressed.Pixmap"), + m_shade_pm(*this, "window.shade.pixmap", "Window.Shade.Pixmap"), + m_shade_pressed_pm(*this, "window.shade.pressed.pixmap", "Window.Shade.Pressed.Pixmap"), + m_stick_pm(*this, "window.stick.pixmap", "Window.Stick.Pixmap"), + m_stick_pressed_pm(*this, "window.stick.pressed.pixmap", "Window.Stick.Pressed.Pixmap") { + +} + +WinButtonTheme::~WinButtonTheme() { + +} + +void WinButtonTheme::reconfigTheme() { + reconfigSig().notify(); +} +
A src/WinButtonTheme.hh

@@ -0,0 +1,85 @@

+// WinButtonTheme.hh for Fluxbox - an X11 Window manager +// Copyright (c) 2003 Henrik Kinnunen (fluxgen(at)users.sourceforge.net) +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +// DEALINGS IN THE SOFTWARE. + +// $Id: WinButtonTheme.hh,v 1.1 2003/04/28 22:30:34 fluxgen Exp $ + +#ifndef WINBUTTONTHEME_HH +#define WINBUTTONTHEME_HH + +#include "Theme.hh" +#include "Subject.hh" +#include "FbPixmap.hh" + +class WinButtonTheme: public FbTk::Theme { +public: + struct PixmapWithMask { + FbTk::FbPixmap pixmap; + FbTk::FbPixmap pixmap_scaled; + FbTk::FbPixmap mask; + FbTk::FbPixmap mask_scaled; + }; + + explicit WinButtonTheme(int screen_num); + ~WinButtonTheme(); + + void reconfigTheme(); + + inline const PixmapWithMask &closePixmap() const { return *m_close_pm; } + inline PixmapWithMask &closePixmap() { return *m_close_pm; } + + inline const PixmapWithMask &closePressedPixmap() const { return *m_close_pressed_pm; } + inline PixmapWithMask &closePressedPixmap() { return *m_close_pressed_pm; } + + inline const PixmapWithMask &maximizePixmap() const { return *m_maximize_pm; } + inline PixmapWithMask &maximizePixmap() { return *m_maximize_pm; } + + inline const PixmapWithMask &maximizePressedPixmap() const { return *m_maximize_pressed_pm; } + inline PixmapWithMask &maximizePressedPixmap() { return *m_maximize_pressed_pm; } + + inline const PixmapWithMask &iconifyPixmap() const { return *m_iconify_pm; } + inline PixmapWithMask &iconifyPixmap() { return *m_iconify_pm; } + + inline const PixmapWithMask &iconifyPressedPixmap() const { return *m_iconify_pressed_pm; } + inline PixmapWithMask &iconifyPressedPixmap() { return *m_iconify_pressed_pm; } + + inline const PixmapWithMask &stickPixmap() const { return *m_stick_pm; } + inline PixmapWithMask &stickPixmap() { return *m_stick_pm; } + + inline const PixmapWithMask &stickPressedPixmap() const { return *m_stick_pressed_pm; } + inline PixmapWithMask &stickPressedPixmap() { return *m_stick_pressed_pm; } + + inline const PixmapWithMask &shadePixmap() const { return *m_shade_pm; } + inline PixmapWithMask &shadePixmap() { return *m_shade_pm; } + + inline const PixmapWithMask &shadePressedPixmap() const { return *m_shade_pressed_pm; } + inline PixmapWithMask &shadePressedPixmap() { return *m_shade_pressed_pm; } + FbTk::Subject &reconfigSig() { return m_reconf_sig; } +private: + FbTk::Subject m_reconf_sig; + + FbTk::ThemeItem<PixmapWithMask> m_close_pm, m_close_pressed_pm; + FbTk::ThemeItem<PixmapWithMask> m_maximize_pm, m_maximize_pressed_pm; + FbTk::ThemeItem<PixmapWithMask> m_iconify_pm, m_iconify_pressed_pm; + FbTk::ThemeItem<PixmapWithMask> m_shade_pm, m_shade_pressed_pm; + FbTk::ThemeItem<PixmapWithMask> m_stick_pm, m_stick_pressed_pm; +}; + +#endif // WINBUTTONTHEME_HH