]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 2.0.1
[gob-dx.git] / src / test.gob
index 8c7cf8516cb106e08d90a16628721316b8e49529..9dca3c87f57ef7994f3fc3813142ebf13a606ab7 100644 (file)
@@ -26,6 +26,7 @@ requires 1.99.0
 
 %{
 #include <stdio.h>
+#include <gtk/gtk.h>
 /* the next line is not mandatory, but if gob finds an include in one of
    the %{ %} sections above the class definitions, it will not put it in
    the file itself.  So you can this way select where the include file is
@@ -61,7 +62,39 @@ void bubu(void);
 #define TEST_ARRAY 5
 %}
 
-class Test:Object from G:Object {
+enum LAME_CLIENT {
+       IS_CONNECTED,
+       NONE = 9,
+       LAST
+} Test:Enum;
+
+flags BUGA_BUGA {
+       ONE,
+       TWO,
+       MANY,
+} Some:Flags;
+
+error TEST_OBJECT_ERROR {
+       BAD_THIS,
+       BAD_THAT
+} Test:Object:Error;
+
+class Test:Object from G:Object
+       (interface Gtk:Tree:Model)
+       /* We can add more interfaces by adding more lines like the above */
+       /* Note that there must exist a GtkTreeModelIface structure */
+{
+
+       /* function implemented for the Gtk:Tree:Model interface */
+       interface Gtk:Tree:Model
+       private GtkTreeModelFlags
+       get_flags (Gtk:Tree:Model *self (check null type))
+       {
+               /* FOO */
+               return (GtkTreeModelFlags)0;
+       }
+
+
 
        public int test_array[TEST_ARRAY];
        public int i;
@@ -109,6 +142,27 @@ class Test:Object from G:Object {
                set { self->_priv->a_property = g_value_get_char (VAL); }
                get { g_value_set_char (VAL, self->_priv->a_property); };
 
+       property OBJECT foobarblahllll1
+               (nick = "xxxxxxx1",
+                blurb = "yyyyyy",
+                object_type = Gtk:Button)
+               get { /* FOO1 */ };
+       property OBJECT foobarblahllll2
+               (nick = "xxxxxxx2",
+                blurb = "yyyyyy",
+                object_type = G:Object)
+               set { /* FOO2 */ };
+
+       private double dblnum;
+       property DOUBLE dblnum
+               (nick = _("dblnum"),
+                blurb = _("dblnum"),
+                minimum = 0.1,
+                maximum = 99.1,
+                default_value = 0.3,
+                flags = CONSTRUCT|CONSTRUCT_ONLY,
+                export,
+                link);
 
        private char *b_property;
        property STRING b_property
@@ -120,6 +174,23 @@ class Test:Object from G:Object {
                 export,
                 link);
 
+       private Test:Object *objectproperty;
+       property OBJECT objectproperty (nick   = "object",
+                               blurb  = "obj property",
+                               object_type = Test:Object,
+                               link);
+
+       private Test:Enum enum_property;
+       property ENUM enum_property (nick   = "enumprop",
+                               blurb  = "enumprop",
+                               enum_type = Test:Enum,
+                               link);
+
+       private Some:Flags flags_property;
+       property ENUM flags_property (nick   = "flagsprop",
+                               blurb  = "flagsprop",
+                               flags_type = Some:Flags,
+                               link);
 
        private int j;
        public GObject * h;
@@ -173,10 +244,10 @@ class Test:Object from G:Object {
        }
 
        private
-       int
+       char *
        test_handler (self, GObject *w, int h, gpointer data)
        {
-               return -1;
+               return NULL;
        }
 
        /**
@@ -191,9 +262,13 @@ class Test:Object from G:Object {
        signal last INT (POINTER, INT)
        int bleh2(self, const G:Object * wid (check null type),
                        int h (check > 0)) {
-               /*gtk_signal_connect (GTK_OBJECT (self),
-                                   GTK_WEIRD_BUTTON_SIGNAL_BLEH (test_handler),
-                                   NULL);*/
+
+               test_object_connect__bleh (self, self_test_handler, NULL);
+               self_connect__bleh (self, self_test_handler, NULL);
+               test_object_connect_after__bleh (self, self_test_handler, NULL);
+               self_connect_after__bleh (self, self_test_handler, NULL);
+               test_object_connect_data__bleh (self, self_test_handler, NULL, NULL, 0);
+               self_connect_data__bleh (self, self_test_handler, NULL, NULL, 0);
 
                /* testing multiple marshaller support */
                return 0;