summaryrefslogtreecommitdiffstats
path: root/src/gtk/engine/ia_ora_rc_style.h
blob: db53c91ff506f7e4218e02c816dd43e63a455bdc (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
/*  Ia Ora
 *  Copyright (C) 2006 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/gtkrc.h>

typedef struct _Ia_OraRcStyle Ia_OraRcStyle;
typedef struct _Ia_OraRcStyleClass Ia_OraRcStyleClass;

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

#define IA_ORA_TYPE_RC_STYLE              ia_ora_type_rc_style
#define IA_ORA_RC_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyle))
#define IA_ORA_RC_STYLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyleClass))
#define IA_ORA_IS_RC_STYLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), IA_ORA_TYPE_RC_STYLE))
#define IA_ORA_IS_RC_STYLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), IA_ORA_TYPE_RC_STYLE))
#define IA_ORA_RC_STYLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyleClass))

struct _Ia_OraRcStyle
{
  GtkRcStyle parent_instance;

  gboolean enable_gradient;

  gboolean use_cross;

  gboolean black_check;

};

struct _Ia_OraRcStyleClass
{
    GtkRcStyleClass parent_class;
};

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