tests/enum.vala
[app.Builder.js] / tests / enum.vala
index 420a1f8..7a7a9ed 100644 (file)
@@ -4,10 +4,13 @@
 
 
 int main (string[] args) {
-       
-       stdout.printf ("%s\n", Type.from_name ("Gtk.Orientation.VERTICAL").name ());
-       
+       Gtk.init(ref args);
+       var type = typeof(Gtk.Box);
+       var  ocl = (ObjectClass) type.class_ref ();
+       var ps = ocl.find_property("orientation");
+       var vt = ps.value_type;
+       print("%s : %s\n", vt.name(), vt.is_enum() ? "Y" : "N");
+        
        return 0;
 }