Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making custom widgets work in Gtk.Builder #134

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Sep 1, 2015

  1. Fix properties setting when constructing GLib.Objects

    This is a proper fix of old FIXME.
    It defers setting of managed properties during GLib.Object construction
    until we have paired Managed and Unmanaged objects.
    martinKupec committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    a98c152 View commit details
    Browse the repository at this point in the history
  2. Add possibility to pick glib type name for custom classes

    This patch adds TypeName attribute which can be used on custom class
    derived from GLib.Object in order to set GLib type name of the class.
    martinKupec committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    98e6422 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2015

  1. Register signals when creating glib object

    This is needed for Gtk.Builder to properly parse signal registration.
    The registred signals are not actually used but Gtk.Builder check for
    their presence and fails if not present.
    martinKupec committed Sep 8, 2015
    Configuration menu
    Copy the full SHA
    7468caf View commit details
    Browse the repository at this point in the history