diff options
Diffstat (limited to 'src/WinButtonTheme.cc')
-rw-r--r-- | src/WinButtonTheme.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/WinButtonTheme.cc b/src/WinButtonTheme.cc index c67675e..d90d4c8 100644 --- a/src/WinButtonTheme.cc +++ b/src/WinButtonTheme.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: WinButtonTheme.cc,v 1.2 2003/04/28 22:33:19 fluxgen Exp $ | 22 | // $Id: WinButtonTheme.cc,v 1.3 2003/05/06 23:56:46 fluxgen Exp $ |
23 | 23 | ||
24 | #include "WinButtonTheme.hh" | 24 | #include "WinButtonTheme.hh" |
25 | 25 | ||
@@ -80,15 +80,22 @@ setFromString(const char *str) { | |||
80 | WinButtonTheme::WinButtonTheme(int screen_num): | 80 | WinButtonTheme::WinButtonTheme(int screen_num): |
81 | FbTk::Theme(screen_num), | 81 | FbTk::Theme(screen_num), |
82 | m_close_pm(*this, "window.close.pixmap", "Window.Close.Pixmap"), | 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"), | ||
83 | m_close_pressed_pm(*this, "window.close.pressed.pixmap", "Window.Close.Pressed.Pixmap"), | 84 | m_close_pressed_pm(*this, "window.close.pressed.pixmap", "Window.Close.Pressed.Pixmap"), |
84 | m_maximize_pm(*this, "window.maximize.pixmap", "Window.Maximize.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"), | ||
85 | m_maximize_pressed_pm(*this, "window.maximize.pressed.pixmap", "Window.Maximize.Pressed.Pixmap"), | 87 | m_maximize_pressed_pm(*this, "window.maximize.pressed.pixmap", "Window.Maximize.Pressed.Pixmap"), |
86 | m_iconify_pm(*this, "window.iconify.pixmap", "Window.Iconify.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"), | ||
87 | m_iconify_pressed_pm(*this, "window.iconify.pressed.pixmap", "Window.Iconify.Pressed.Pixmap"), | 90 | m_iconify_pressed_pm(*this, "window.iconify.pressed.pixmap", "Window.Iconify.Pressed.Pixmap"), |
88 | m_shade_pm(*this, "window.shade.pixmap", "Window.Shade.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"), | ||
89 | m_shade_pressed_pm(*this, "window.shade.pressed.pixmap", "Window.Shade.Pressed.Pixmap"), | 93 | m_shade_pressed_pm(*this, "window.shade.pressed.pixmap", "Window.Shade.Pressed.Pixmap"), |
90 | m_stick_pm(*this, "window.stick.pixmap", "Window.Stick.Pixmap"), | 94 | m_stick_pm(*this, "window.stick.pixmap", "Window.Stick.Pixmap"), |
91 | m_stick_pressed_pm(*this, "window.stick.pressed.pixmap", "Window.Stick.Pressed.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") { | ||
92 | 99 | ||
93 | } | 100 | } |
94 | 101 | ||