You can install C GObject signals (although IIRC in a non-totally-standard way because of what happens in the C++ constructor; normally C GObject signals are initialized in the class_init func of the C GObject, but IIRC, inside the actual C++ constructor class_init has already been called by a base class constructor, and the C++ constructor equals (instance) init of the C GObject; someone please correct me if I'm wrong here.)
Though, the C GObject signals will be nonrelated to the *mm-style sigc signalling (libsigc++ with classes and functions inside the sigc:: namespace are used for signalling and related purposes inside glibmm, gtkmm, etc), although since both systems are very flexible (sigc and C GObject), it should be possible to bridge them, but you would need to write that bridging code yourself. On Mon, Dec 8, 2008 at 1:21 PM, Germán Diago <[EMAIL PROTECTED]> wrote: > Hello. I'm looking at the gtkmm documentation. I would like to know if > it's possible to register signals, GType and properties for types from the > c++ bindings, or if I need to use c directly to do it. I'm new to GObject, > so > I don't know very well what I'm doing. What I would like to do is to > get introspection > capabilities at least for signals, types and properties, and I would like > them > to be registered in the Gobject type system. Thanks in advance. > _______________________________________________ > gtkmm-list mailing list > [email protected] > http://mail.gnome.org/mailman/listinfo/gtkmm-list > -- Please note that according to the German law on data retention, information on every electronic information exchange with me is retained for a period of six months. [Bitte beachten Sie, dass dem Gesetz zur Vorratsdatenspeicherung zufolge jeder elektronische Kontakt mit mir sechs Monate lang gespeichert wird.]
_______________________________________________ gtkmm-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtkmm-list
