Update clearlooks to fancy new cairo version.
[ardour.git] / libs / clearlooks / clearlooks_theme_main.c
1 #include <gmodule.h>
2 #include <gtk/gtk.h>
3
4 #include "clearlooks_style.h"
5 #include "clearlooks_rc_style.h"
6
7 GE_EXPORT void
8 theme_init (GTypeModule *module)
9 {
10   clearlooks_rc_style_register_type (module);
11   clearlooks_style_register_type (module);
12 }
13
14 GE_EXPORT void
15 theme_exit (void)
16 {
17 }
18
19 GE_EXPORT GtkRcStyle *
20 theme_create_rc_style (void)
21 {
22   return GTK_RC_STYLE (g_object_new (CLEARLOOKS_TYPE_RC_STYLE, NULL));  
23 }