openbox/render/theme.h

195 lines
6.5 KiB
C
Raw Normal View History

2003-09-17 07:44:49 +00:00
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
theme.h for the Openbox window manager
Copyright (c) 2003 Ben Jansens
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
See the COPYING file for a copy of the GNU General Public License.
*/
#ifndef __theme_h
#define __theme_h
#include "render.h"
G_BEGIN_DECLS
2003-06-21 01:53:26 +00:00
typedef struct _RrTheme RrTheme;
2003-06-21 01:53:26 +00:00
struct _RrTheme {
gchar *path;
2003-06-21 01:53:26 +00:00
gchar *name;
2003-06-21 01:53:26 +00:00
const RrInstance *inst;
/* style settings - optional decor */
gboolean show_handle;
2003-06-21 01:53:26 +00:00
/* style settings - geometry */
2003-09-08 18:38:52 +00:00
gint padding;
2003-06-21 01:53:26 +00:00
gint handle_height;
gint bwidth;
gint cbwidth;
gint label_height;
gint title_height;
2003-09-17 06:21:35 +00:00
gint menu_title_height;
2003-06-21 01:53:26 +00:00
gint button_size;
gint grip_width;
gint menu_overlap;
2003-06-21 01:53:26 +00:00
/* style settings - colors */
2003-06-21 01:56:14 +00:00
RrColor *b_color;
RrColor *cb_focused_color;
RrColor *cb_unfocused_color;
RrColor *title_focused_color;
RrColor *title_unfocused_color;
RrColor *titlebut_disabled_focused_color;
2003-07-27 19:57:38 +00:00
RrColor *titlebut_disabled_unfocused_color;
2003-07-27 19:39:02 +00:00
RrColor *titlebut_hover_focused_color;
RrColor *titlebut_hover_unfocused_color;
RrColor *titlebut_toggled_focused_color;
RrColor *titlebut_toggled_unfocused_color;
2003-07-27 19:39:02 +00:00
RrColor *titlebut_focused_pressed_color;
RrColor *titlebut_unfocused_pressed_color;
RrColor *titlebut_focused_unpressed_color;
RrColor *titlebut_unfocused_unpressed_color;
2003-06-21 01:56:14 +00:00
RrColor *menu_title_color;
RrColor *menu_color;
RrColor *menu_disabled_color;
RrColor *menu_selected_color;
2003-06-21 01:53:26 +00:00
/* style settings - fonts */
2003-09-17 06:21:35 +00:00
gint win_font_height;
RrFont *win_font_focused;
RrFont *win_font_unfocused;
gint menu_title_font_height;
RrFont *menu_title_font;
gint menu_font_height;
RrFont *menu_font;
/* style settings - pics */
RrPixel32 *def_win_icon; /* 48x48 RGBA */
2003-06-21 01:53:26 +00:00
/* style settings - masks */
RrPixmapMask *max_mask;
RrPixmapMask *max_toggled_mask;
RrPixmapMask *max_hover_mask;
RrPixmapMask *max_disabled_mask;
RrPixmapMask *max_pressed_mask;
2003-06-21 01:53:26 +00:00
RrPixmapMask *iconify_mask;
RrPixmapMask *iconify_hover_mask;
RrPixmapMask *iconify_disabled_mask;
RrPixmapMask *iconify_pressed_mask;
RrPixmapMask *desk_mask;
RrPixmapMask *desk_toggled_mask;
RrPixmapMask *desk_hover_mask;
RrPixmapMask *desk_disabled_mask;
RrPixmapMask *desk_pressed_mask;
RrPixmapMask *shade_mask;
RrPixmapMask *shade_toggled_mask;
RrPixmapMask *shade_hover_mask;
RrPixmapMask *shade_disabled_mask;
RrPixmapMask *shade_pressed_mask;
2003-06-21 01:53:26 +00:00
RrPixmapMask *close_mask;
RrPixmapMask *close_hover_mask;
RrPixmapMask *close_disabled_mask;
RrPixmapMask *close_pressed_mask;
RrPixmapMask *menu_bullet_mask; /* submenu pointer */
RrPixmapMask *menu_toggle_mask; /* menu boolean */
2003-06-21 01:53:26 +00:00
/* global appearances */
RrAppearance *a_disabled_focused_max;
RrAppearance *a_disabled_unfocused_max;
2003-07-27 19:39:02 +00:00
RrAppearance *a_hover_focused_max;
RrAppearance *a_hover_unfocused_max;
RrAppearance *a_toggled_focused_max;
RrAppearance *a_toggled_unfocused_max;
2003-06-21 01:53:26 +00:00
RrAppearance *a_focused_unpressed_max;
RrAppearance *a_focused_pressed_max;
RrAppearance *a_unfocused_unpressed_max;
RrAppearance *a_unfocused_pressed_max;
RrAppearance *a_disabled_focused_close;
RrAppearance *a_disabled_unfocused_close;
2003-07-27 19:39:02 +00:00
RrAppearance *a_hover_focused_close;
RrAppearance *a_hover_unfocused_close;
2003-06-21 01:53:26 +00:00
RrAppearance *a_focused_unpressed_close;
RrAppearance *a_focused_pressed_close;
RrAppearance *a_unfocused_unpressed_close;
RrAppearance *a_unfocused_pressed_close;
RrAppearance *a_disabled_focused_desk;
RrAppearance *a_disabled_unfocused_desk;
2003-07-27 19:39:02 +00:00
RrAppearance *a_hover_focused_desk;
RrAppearance *a_hover_unfocused_desk;
RrAppearance *a_toggled_focused_desk;
RrAppearance *a_toggled_unfocused_desk;
2003-06-21 01:53:26 +00:00
RrAppearance *a_focused_unpressed_desk;
RrAppearance *a_focused_pressed_desk;
RrAppearance *a_unfocused_unpressed_desk;
RrAppearance *a_unfocused_pressed_desk;
RrAppearance *a_disabled_focused_shade;
RrAppearance *a_disabled_unfocused_shade;
2003-07-27 19:39:02 +00:00
RrAppearance *a_hover_focused_shade;
RrAppearance *a_hover_unfocused_shade;
RrAppearance *a_toggled_focused_shade;
RrAppearance *a_toggled_unfocused_shade;
2003-06-21 01:53:26 +00:00
RrAppearance *a_focused_unpressed_shade;
RrAppearance *a_focused_pressed_shade;
RrAppearance *a_unfocused_unpressed_shade;
RrAppearance *a_unfocused_pressed_shade;
RrAppearance *a_disabled_focused_iconify;
RrAppearance *a_disabled_unfocused_iconify;
2003-07-27 19:39:02 +00:00
RrAppearance *a_hover_focused_iconify;
RrAppearance *a_hover_unfocused_iconify;
2003-06-21 01:53:26 +00:00
RrAppearance *a_focused_unpressed_iconify;
RrAppearance *a_focused_pressed_iconify;
RrAppearance *a_unfocused_unpressed_iconify;
RrAppearance *a_unfocused_pressed_iconify;
RrAppearance *a_focused_grip;
RrAppearance *a_unfocused_grip;
RrAppearance *a_focused_title;
RrAppearance *a_unfocused_title;
RrAppearance *a_focused_label;
RrAppearance *a_unfocused_label;
/* always parentrelative, so no focused/unfocused */
RrAppearance *a_icon;
RrAppearance *a_focused_handle;
RrAppearance *a_unfocused_handle;
RrAppearance *a_menu_title;
RrAppearance *a_menu;
2003-09-02 18:52:24 +00:00
RrAppearance *a_menu_normal;
2003-06-21 01:53:26 +00:00
RrAppearance *a_menu_disabled;
RrAppearance *a_menu_selected;
2003-09-02 18:52:24 +00:00
RrAppearance *a_menu_text_normal;
RrAppearance *a_menu_text_disabled;
RrAppearance *a_menu_text_selected;
2003-09-02 18:52:24 +00:00
RrAppearance *a_menu_bullet_normal;
RrAppearance *a_menu_bullet_selected;
RrAppearance *a_clear; /* clear with no texture */
RrAppearance *a_clear_tex; /* clear with a texture */
2003-06-21 01:53:26 +00:00
RrAppearance *app_hilite_bg;
RrAppearance *app_unhilite_bg;
RrAppearance *app_hilite_fg; /* never parent relative */
RrAppearance *app_unhilite_fg; /* never parent relative */
RrAppearance *app_hilite_label; /* can be parent relative */
RrAppearance *app_unhilite_label; /* can be parent relative */
2003-06-21 01:53:26 +00:00
};
2003-09-14 06:42:57 +00:00
RrTheme* RrThemeNew(const RrInstance *inst, gchar *theme);
2003-06-21 01:53:26 +00:00
void RrThemeFree(RrTheme *theme);
G_END_DECLS
#endif