summaryrefslogtreecommitdiffstats
path: root/src/qt_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt_main.c')
-rw-r--r--src/qt_main.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/qt_main.c b/src/qt_main.c
new file mode 100644
index 0000000..4e9eb1b
--- /dev/null
+++ b/src/qt_main.c
@@ -0,0 +1,29 @@
+#include <gmodule.h>
+#include <stdio.h>
+#include "qt_rc_style.h"
+#include "qt_style.h"
+
+#include "qt_qt_wrapper.h"
+
+G_MODULE_EXPORT void theme_init (GTypeModule *module);
+G_MODULE_EXPORT void theme_exit (void);
+G_MODULE_EXPORT GtkRcStyle * theme_create_rc_style (void);
+
+G_MODULE_EXPORT void theme_init (GTypeModule *module)
+{
+ createQApp();
+ qtengine_rc_style_register_type (module);
+ qtengine_style_register_type (module);
+}
+
+G_MODULE_EXPORT void theme_exit (void)
+{
+ destroyQApp();
+}
+
+G_MODULE_EXPORT GtkRcStyle * theme_create_rc_style (void)
+{
+ void *ptr = GTK_RC_STYLE (g_object_new (QTENGINE_TYPE_RC_STYLE, NULL));
+ return (GtkRcStyle *)ptr;
+}
+