X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Ftheme.h;h=41f83e2c895f15d323a58926926110291690d70f;hb=1cfb65bc401ee8f44103a1a74404d191106a7535;hp=d9965f6f154e658a27a42f300f41948a3fd2bfe0;hpb=f97e7133d46d43799b6a84dabd4ba5976556230d;p=chaz%2Fopenbox diff --git a/render/theme.h b/render/theme.h index d9965f6f..41f83e2c 100644 --- a/render/theme.h +++ b/render/theme.h @@ -1,8 +1,28 @@ +/* -*- 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 + typedef struct _RrTheme RrTheme; struct _RrTheme { @@ -15,12 +35,13 @@ struct _RrTheme { gboolean show_handle; /* style settings - geometry */ - gint bevel; + gint padding; gint handle_height; gint bwidth; gint cbwidth; gint label_height; gint title_height; + gint menu_title_height; gint button_size; gint grip_width; gint menu_overlap; @@ -43,18 +64,20 @@ struct _RrTheme { RrColor *titlebut_unfocused_unpressed_color; RrColor *menu_title_color; RrColor *menu_color; - RrColor *menu_bullet_color; RrColor *menu_disabled_color; - RrColor *menu_hilite_color; + RrColor *menu_selected_color; /* style settings - fonts */ - gint winfont_height; - RrFont *winfont_focused; - RrFont *winfont_unfocused; - gint mtitlefont_height; - RrFont *mtitlefont; - gint mfont_height; - RrFont *mfont; + 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 */ /* style settings - masks */ RrPixmapMask *max_mask; @@ -108,6 +131,7 @@ struct _RrTheme { RrAppearance *a_hover_focused_desk; RrAppearance *a_hover_unfocused_desk; RrAppearance *a_toggled_focused_desk; + RrAppearance *a_toggled_focused_pressed_desk; RrAppearance *a_toggled_unfocused_desk; RrAppearance *a_focused_unpressed_desk; RrAppearance *a_focused_pressed_desk; @@ -118,6 +142,7 @@ struct _RrTheme { RrAppearance *a_hover_focused_shade; RrAppearance *a_hover_unfocused_shade; RrAppearance *a_toggled_focused_shade; + RrAppearance *a_toggled_focused_pressed_shade; RrAppearance *a_toggled_unfocused_shade; RrAppearance *a_focused_unpressed_shade; RrAppearance *a_focused_pressed_shade; @@ -143,24 +168,29 @@ struct _RrTheme { RrAppearance *a_unfocused_handle; RrAppearance *a_menu_title; RrAppearance *a_menu; - RrAppearance *a_menu_item; + RrAppearance *a_menu_normal; RrAppearance *a_menu_disabled; - RrAppearance *a_menu_hilite; - RrAppearance *a_menu_text_item; + RrAppearance *a_menu_selected; + RrAppearance *a_menu_text_normal; RrAppearance *a_menu_text_disabled; - RrAppearance *a_menu_text_hilite; - RrAppearance *a_menu_bullet; + RrAppearance *a_menu_text_selected; + 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 */ RrAppearance *app_hilite_bg; RrAppearance *app_unhilite_bg; - RrAppearance *app_hilite_label; - RrAppearance *app_unhilite_label; + 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 */ }; -RrTheme *RrThemeNew(const RrInstance *inst, gchar *theme); +RrTheme* RrThemeNew(const RrInstance *inst, gchar *theme); void RrThemeFree(RrTheme *theme); +G_END_DECLS + #endif