blob: e88a1670559af29c34162789c0ca451aa54e6a1f (
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
|
#include <gtk/gtkrc.h>
typedef struct _TQtEngineRcStyle TQtEngineRcStyle;
typedef struct _TQtEngineRcStyleClass TQtEngineRcStyleClass;
extern GType qtengine_type_rc_style;
#define TQTENGINE_TYPE_RC_STYLE qtengine_type_rc_style
#define TQTENGINE_RC_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TQTENGINE_TYPE_RC_STYLE, TQtEngineRcStyle))
#define TQTENGINE_RC_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TQTENGINE_TYPE_RC_STYLE, TQtEngineRcStyleClass))
#define TQTENGINE_IS_RC_STYLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TQTENGINE_TYPE_RC_STYLE))
#define TQTENGINE_IS_RC_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TQTENGINE_TYPE_RC_STYLE))
#define TQTENGINE_RC_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TQTENGINE_TYPE_RC_STYLE, TQtEngineRcStyleClass))
struct _TQtEngineRcStyle
{
GtkRcStyle tqparent_instance;
};
struct _TQtEngineRcStyleClass
{
GtkRcStyleClass tqparent_class;
};
void qtengine_rc_style_register_type (GTypeModule *module);
|