summaryrefslogtreecommitdiff
path: root/tests/scanner/foo.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-03-16 18:25:19 -0400
committerColin Walters <walters@verbum.org>2009-03-17 11:10:04 -0400
commite9dcc3cfb985292b5ff96772b73029a32b18ff11 (patch)
tree7c235feb39b547a3829c12f64972b071d93dd7fa /tests/scanner/foo.h
parent1d1cc8c35364f9da12620c1925483b61dc688718 (diff)
downloadgobject-introspection-e9dcc3cfb985292b5ff96772b73029a32b18ff11.tar.gz
Bug 575613 - Enum stripping with common prefix, also use "_" consistently
Some enums have members which have a common prefix which doesn't match that of the enum name, but it also longer than the global namespace prefix. Instead, try stripping the common prefix first, and only if that fails fall back to the global strip. Also, for glib-registered enums we were using the nick, which typically has "-" as a separator. Replace that with "_" for consistency between unregistered enums and registered. utils.py:strip_common_prefix is now unused, delete.
Diffstat (limited to 'tests/scanner/foo.h')
-rw-r--r--tests/scanner/foo.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/scanner/foo.h b/tests/scanner/foo.h
index e9d00dd7..8097cfc9 100644
--- a/tests/scanner/foo.h
+++ b/tests/scanner/foo.h
@@ -341,6 +341,24 @@ GType foo_error_get_type (void);
GQuark foo_error_quark (void);
+typedef enum
+{
+ FOO_LAYER_DESKTOP = 0,
+ FOO_LAYER_BOTTOM = 1,
+ FOO_LAYER_NORMAL = 2,
+ FOO_LAYER_TOP = 4, /* Same as DOCK; see EWMH and bug 330717 */
+ FOO_LAYER_DOCK = 4,
+ FOO_LAYER_FULLSCREEN = 5,
+ FOO_LAYER_FOCUSED_WINDOW = 6,
+ FOO_LAYER_OVERRIDE_REDIRECT = 7,
+ FOO_LAYER_LAST = 8
+} FooStackLayer;
+
+typedef enum
+{
+ FOO_SOME_SINGLE_ENUM
+} FooASingle;
+
/* Should be skipped */
void foo_some_variant (guint x, va_list args);
void foo_some_variant_ptr (guint x, va_list *args);