4 #include "clearlooks_style.h"
5 #include "clearlooks_rc_style.h"
8 theme_init (GTypeModule
*module
)
10 clearlooks_rc_style_register_type (module
);
11 clearlooks_style_register_type (module
);
12 printf("theme_init() called from internal clearlooks engine\n");
20 G_MODULE_EXPORT GtkRcStyle
*
21 theme_create_rc_style (void)
23 return GTK_RC_STYLE (g_object_new (CLEARLOOKS_TYPE_RC_STYLE
, NULL
));
26 /* The following function will be called by GTK+ when the module
27 * is loaded and checks to see if we are compatible with the
28 * version of GTK+ that loads us.
30 G_MODULE_EXPORT
const gchar
* g_module_check_init (GModule
*module
);
32 g_module_check_init (GModule
*module
)
34 return gtk_check_version (GTK_MAJOR_VERSION
,
36 GTK_MICRO_VERSION
- GTK_INTERFACE_AGE
);