fluxbox/src/FbWinFrameTheme.hh

134 lines
5.4 KiB
C++
Raw Normal View History

2003-01-05 22:14:10 +00:00
// FbWinFrameTheme.hh for Fluxbox Window Manager
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-01-05 22:14:10 +00:00
//
// 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.
2004-11-19 11:37:27 +00:00
// $Id$
2003-01-05 22:14:10 +00:00
#ifndef FBWINFRAMETHEME_HH
#define FBWINFRAMETHEME_HH
#include "FbTk/Font.hh"
#include "FbTk/Texture.hh"
#include "FbTk/Text.hh"
#include "FbTk/Color.hh"
2003-01-05 22:14:10 +00:00
#include "FbTk/Theme.hh"
#include "FbTk/BorderTheme.hh"
#include "FbTk/Subject.hh"
2003-08-27 17:52:08 +00:00
#include "FbTk/GContext.hh"
2007-10-13 21:51:37 +00:00
#include "IconbarTheme.hh"
2003-07-10 11:38:12 +00:00
#include "Shape.hh"
2003-01-05 22:14:10 +00:00
class FbWinFrameTheme: public FbTk::Theme {
public:
2003-02-16 01:13:24 +00:00
explicit FbWinFrameTheme(int screen_num);
2003-01-05 22:14:10 +00:00
~FbWinFrameTheme();
/**
@name textures
*/
//@{
const FbTk::Texture &titleFocusTexture() const { return *m_title_focus; }
const FbTk::Texture &titleUnfocusTexture() const { return *m_title_unfocus; }
const FbTk::Texture &handleFocusTexture() const { return *m_handle_focus; }
const FbTk::Texture &handleUnfocusTexture() const { return *m_handle_unfocus; }
const FbTk::Texture &buttonFocusTexture() const { return *m_button_focus; }
const FbTk::Texture &buttonUnfocusTexture() const { return *m_button_unfocus; }
const FbTk::Texture &buttonPressedTexture() const { return *m_button_pressed; }
const FbTk::Texture &gripFocusTexture() const { return *m_grip_focus; }
const FbTk::Texture &gripUnfocusTexture() const { return *m_grip_unfocus; }
//@}
/**
@name colors
*/
//@{
const FbTk::Color &buttonFocuscolor() const { return *m_button_focus_color; }
const FbTk::Color &buttonUnfocuscolor() const { return *m_button_unfocus_color; }
//@}
FbTk::Font &font() { return *m_font; }
2003-08-27 17:52:08 +00:00
GC buttonPicFocusGC() const { return m_button_pic_focus_gc.gc(); }
GC buttonPicUnfocusGC() const { return m_button_pic_unfocus_gc.gc(); }
2003-01-05 22:14:10 +00:00
bool fallback(FbTk::ThemeItem_base &item);
2003-01-05 22:14:10 +00:00
void reconfigTheme();
2003-02-15 01:59:00 +00:00
2003-06-11 14:52:45 +00:00
inline Cursor moveCursor() const { return m_cursor_move; }
inline Cursor lowerLeftAngleCursor() const { return m_cursor_lower_left_angle; }
inline Cursor lowerRightAngleCursor() const { return m_cursor_lower_right_angle; }
inline Cursor upperLeftAngleCursor() const { return m_cursor_upper_left_angle; }
inline Cursor upperRightAngleCursor() const { return m_cursor_upper_right_angle; }
2007-12-11 19:31:24 +00:00
inline Cursor leftSideCursor() const { return m_cursor_left_side; }
inline Cursor rightSideCursor() const { return m_cursor_right_side; }
inline Cursor topSideCursor() const { return m_cursor_top_side; }
inline Cursor bottomSideCursor() const { return m_cursor_bottom_side; }
2003-06-11 14:52:45 +00:00
2003-07-10 11:38:12 +00:00
inline Shape::ShapePlace shapePlace() const { return *m_shape_place; }
inline const FbTk::BorderTheme &border(bool focus) const { return (focus ? m_border_focus : m_border_unfocus); }
2003-08-04 12:49:20 +00:00
unsigned int titleHeight() const { return *m_title_height; }
unsigned int bevelWidth() const { return *m_bevel_width; }
unsigned int handleWidth() const { return *m_handle_width; }
unsigned char focusedAlpha() const { return m_focused_alpha; }
unsigned char unfocusedAlpha() const { return m_unfocused_alpha; }
void setFocusedAlpha(unsigned char alpha) { m_focused_alpha = alpha; }
void setUnfocusedAlpha(unsigned char alpha) { m_unfocused_alpha = alpha; }
2007-10-13 21:51:37 +00:00
IconbarTheme &iconbarTheme() { return m_iconbar_theme; }
2003-01-05 22:14:10 +00:00
private:
FbTk::ThemeItem<FbTk::Texture> m_title_focus, m_title_unfocus;
FbTk::ThemeItem<FbTk::Texture> m_handle_focus, m_handle_unfocus;
FbTk::ThemeItem<FbTk::Texture> m_button_focus, m_button_unfocus, m_button_pressed;
FbTk::ThemeItem<FbTk::Texture> m_grip_focus, m_grip_unfocus;
FbTk::ThemeItem<FbTk::Color> m_button_focus_color, m_button_unfocus_color;
FbTk::ThemeItem<FbTk::Font> m_font;
2003-07-10 11:38:12 +00:00
FbTk::ThemeItem<Shape::ShapePlace> m_shape_place;
2003-01-05 22:14:10 +00:00
FbTk::ThemeItem<int> m_title_height, m_bevel_width, m_handle_width;
FbTk::BorderTheme m_border_focus, m_border_unfocus;
2003-08-27 17:52:08 +00:00
FbTk::GContext m_button_pic_focus_gc, m_button_pic_unfocus_gc;
2003-08-04 12:49:20 +00:00
Cursor m_cursor_move;
Cursor m_cursor_lower_left_angle;
Cursor m_cursor_lower_right_angle;
Cursor m_cursor_upper_left_angle;
Cursor m_cursor_upper_right_angle;
2007-12-11 19:31:24 +00:00
Cursor m_cursor_left_side;
Cursor m_cursor_right_side;
Cursor m_cursor_top_side;
Cursor m_cursor_bottom_side;
unsigned char m_focused_alpha;
unsigned char m_unfocused_alpha;
2007-10-13 21:51:37 +00:00
IconbarTheme m_iconbar_theme;
2003-01-05 22:14:10 +00:00
};
#endif // FBWINFRAMETHEME_HH