summaryrefslogtreecommitdiff
path: root/atspi/atspi-enum-types.h.template
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2011-05-29 17:46:39 -0500
committerMike Gorse <mgorse@novell.com>2011-05-29 17:46:39 -0500
commit7afb51e5093fef46c699d92ee8eee94f5b6886fb (patch)
tree153ccf97b6b3c6c8b6fa1fd263c0306b91c1e328 /atspi/atspi-enum-types.h.template
parente5198adbcc277c6dc22ecf022b4b7504292b7ce0 (diff)
downloadat-spi2-core-7afb51e5093fef46c699d92ee8eee94f5b6886fb.tar.gz
Enum clean-upsenum-types
Generate enum types where appropriate. Fix prototypes where a method took a "gint" that was really a bitflag. Remove tables of state and role names, since these are now redundant with data from the generated enums and would need to be maintained in parallel. These changes were originally in master but have been backed out since they break compatibility with pygobject 2.26.0, which some users are still using.
Diffstat (limited to 'atspi/atspi-enum-types.h.template')
-rw-r--r--atspi/atspi-enum-types.h.template27
1 files changed, 27 insertions, 0 deletions
diff --git a/atspi/atspi-enum-types.h.template b/atspi/atspi-enum-types.h.template
new file mode 100644
index 00000000..bd297b5c
--- /dev/null
+++ b/atspi/atspi-enum-types.h.template
@@ -0,0 +1,27 @@
+/*** BEGIN file-header ***/
+#ifndef __ATSPI_ENUM_TYPES_H__
+#define __ATSPI_ENUM_TYPES_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+/*** END file-header ***/
+
+/*** BEGIN file-production ***/
+/* Enumerations from "@filename@" */
+
+/*** END file-production ***/
+
+/*** BEGIN enumeration-production ***/
+#define ATSPI_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
+GType @enum_name@_get_type (void) G_GNUC_CONST;
+
+/*** END enumeration-production ***/
+
+/*** BEGIN file-tail ***/
+G_END_DECLS
+
+#endif /* __ATSPI_ENUM_TYPES_H__ */
+/*** END file-tail ***/
+