aboutsummaryrefslogtreecommitdiff
path: root/src/idotypebuiltins.c.template
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2010-05-12 23:21:36 +0200
committerCody Russell <crussell@canonical.com>2010-05-12 23:21:36 +0200
commita544da2cdf98dc1763a84626e13a1e2e5da98e83 (patch)
treee4a14450676f6e6bebaba97b2c53fbbac32adeb2 /src/idotypebuiltins.c.template
parentac894c8ff8c842a8911fbae7998789ada1a080e6 (diff)
downloadayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.gz
ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.bz2
ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.zip
IdoMessageDialog - a morphing message dialog.
Diffstat (limited to 'src/idotypebuiltins.c.template')
-rw-r--r--src/idotypebuiltins.c.template31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/idotypebuiltins.c.template b/src/idotypebuiltins.c.template
new file mode 100644
index 0000000..38adf1d
--- /dev/null
+++ b/src/idotypebuiltins.c.template
@@ -0,0 +1,31 @@
+/*** BEGIN file-header ***/
+#include "idotypebuiltins.h"
+/*** END file-header ***/
+
+/*** BEGIN file-production ***/
+/* enumerations from "@filename@" */
+#include "@filename@"
+/*** END file-production ***/
+
+/*** BEGIN value-header ***/
+GType
+@enum_name@_get_type(void) {
+ static GType enum_type_id = 0;
+ if (G_UNLIKELY (!enum_type_id))
+ {
+ static const G@Type@Value values[] = {
+/*** END value-header ***/
+
+/*** BEGIN value-production ***/
+ { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
+/*** END value-production ***/
+
+/*** BEGIN value-tail ***/
+ { 0, NULL, NULL }
+ };
+ enum_type_id = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
+ }
+ return enum_type_id;
+}
+/*** END value-tail ***/
+