X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/4cda31fc14f41746b4f3ced7015f9f15e0168dfc..2cd951c678998b2b0230c8eb25717ecf0f1dd2db:/src/treefuncs.h diff --git a/src/treefuncs.h b/src/treefuncs.h index e134553..325eb98 100644 --- a/src/treefuncs.h +++ b/src/treefuncs.h @@ -10,9 +10,11 @@ enum { A_CCODE, AT_CCODE, C_CCODE, + AD_CCODE, H_CCODE, HT_CCODE, - PH_CCODE + PH_CCODE, + CT_CCODE }; /* check type */ @@ -41,6 +43,9 @@ enum { REGULAR_METHOD, INIT_METHOD, CLASS_INIT_METHOD, + CONSTRUCTOR_METHOD, + DISPOSE_METHOD, + FINALIZE_METHOD, VIRTUAL_METHOD, SIGNAL_LAST_METHOD, SIGNAL_FIRST_METHOD, @@ -114,9 +119,11 @@ struct _Class { char * otype; char * ptype; char * bonobo_object_class; + gboolean glade_xml; char * chunk_size; GList * interfaces; GList * nodes; + gboolean abstract; }; struct _EnumDef { @@ -161,8 +168,10 @@ struct _Method { char * otype; GList * gtktypes; GList * flags; + char * signal_name; char * id; GList * args; + char * funcattrs; char * onerror; char * defreturn; char * cbuf; @@ -180,6 +189,7 @@ struct _Property { Type * ptype; GList * flags; char * name; + char * canonical_name; char * nick; char * blurb; char * minimum; @@ -207,6 +217,7 @@ struct _Variable { NodeType type; int scope; Type * vtype; + gboolean glade_widget; char * id; int line_no; gboolean destructor_unref; @@ -215,6 +226,7 @@ struct _Variable { gboolean destructor_simple; char * initializer; int initializer_line; + gboolean initializer_simple; }; union _Node {