summaryrefslogtreecommitdiffstats
path: root/src/gtk/engine/ia_ora_style.h
blob: 5c07190202ea6970bad9391592270f499f0b1197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*  Ia Ora
 *  Copyright (C) 2003 Frederic Crozat - Mandriva
 *                1999 Olivier Fourdan (fourdan@xfce.org) for XFCE code
 *
 *  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.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include <gtk/gtkstyle.h>

typedef struct _Ia_OraStyle Ia_OraStyle;
typedef struct _Ia_OraStyleClass Ia_OraStyleClass;

__attribute__((__visibility__("internal"))) extern GType ia_ora_type_style;

#define IA_ORA_TYPE_STYLE              ia_ora_type_style
#define IA_ORA_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), IA_ORA_TYPE_STYLE, Ia_OraStyle))
#define IA_ORA_STYLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), IA_ORA_TYPE_STYLE, Ia_OraStyleClass))
#define IA_ORA_IS_STYLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), IA_ORA_TYPE_STYLE))
#define IA_ORA_IS_STYLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), IA_ORA_TYPE_STYLE))
#define IA_ORA_STYLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), IA_ORA_TYPE_STYLE, Ia_OraStyleClass))

#define N_BLUE_COLORS 5
#define N_GRAY_COLORS 7

struct _Ia_OraStyle
{
  GtkStyle parent_instance;
  GdkColor gray[N_GRAY_COLORS]; /* from light to dark */
  GdkColor blue[N_BLUE_COLORS]; /* from light to dark */
  GdkColor check_color;
  
  GdkGC *gray_gc[N_GRAY_COLORS]; /* from light to dark */
  GdkGC *blue_gc[N_BLUE_COLORS]; /* from light to dark */

  GdkGC *check_gc;

  GdkPixmap *radio_pixmap_circle[5];
  GdkBitmap *radio_pixmap_mask; /* All masks are the same */

};

struct _Ia_OraStyleClass
{
    GtkStyleClass parent_class;
};

__attribute__((__visibility__("internal"))) void ia_ora_style_register_type(GTypeModule * module);