Re: Gtk+ Core TODO Item
- From: Eric Lemings <eric b lemings lmco com>
- To: Tim Janik <timj gtk org>
- Cc: Gtk+ Developers <gtk-devel-list gnome org>
- Subject: Re: Gtk+ Core TODO Item
- Date: Mon, 25 Sep 2000 10:54:37 -0600
Tim Janik wrote:
>
> 2) will mostly amount to changes similar to:
>
> void
> gtk_foo_set_barstring (GtkFoo *foo,
> const gchar *string)
> {
> g_return_if_fail (GTK_IS_FOO (foo));
>
> g_free (foo->barstring);
> foo->barstring = g_strdup (string);
> + g_object_queue_param_changed (G_OBJECT (foo));
> }
g_object_queue_param_changed currently only notifies the object being
changed. Other objects may also be interested/dependent on this
change. This would most likely require emitting a signal. Will this
capability go into GObject? If so, how will it be implemented?
Eric.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]