1997-11-24 22:37:52 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1998-05-08 23:20:48 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1997-11-24 22:37:52 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
|
|
|
#ifndef __GTK_OBJECT_H__
|
|
|
|
#define __GTK_OBJECT_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include <gtk/gtkenums.h>
|
|
|
|
#include <gtk/gtktypeutils.h>
|
1998-02-19 06:21:27 +00:00
|
|
|
#include <gtk/gtkdebug.h>
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
1998-05-06 01:43:56 +00:00
|
|
|
#pragma }
|
1997-11-24 22:37:52 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The debugging versions of the casting macros make sure the cast is "ok"
|
|
|
|
* before proceeding, but they are definately slower than their less
|
|
|
|
* careful counterparts as they involve no less than 3 function calls.
|
|
|
|
*/
|
1998-02-19 06:21:27 +00:00
|
|
|
#ifdef GTK_NO_CHECK_CASTS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-05-08 23:20:48 +00:00
|
|
|
#define GTK_CHECK_CAST(obj,cast_type,cast) ((cast*) (obj))
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
#define GTK_CHECK_CLASS_CAST(klass,cast_type,cast) ((cast*) (klass))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
#else /* !GTK_NO_CHECK_CASTS */
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#define GTK_CHECK_CAST(obj,cast_type,cast) \
|
1998-03-07 20:32:59 +00:00
|
|
|
((cast*) gtk_object_check_cast ((GtkObject*) (obj), (cast_type)))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#define GTK_CHECK_CLASS_CAST(klass,cast_type,cast) \
|
1998-03-07 20:32:59 +00:00
|
|
|
((cast*) gtk_object_check_class_cast ((GtkObjectClass*) (klass), (cast_type)))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
#endif /* GTK_NO_CHECK_CASTS */
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
1998-05-06 01:43:56 +00:00
|
|
|
/* Determines whether `obj' and `klass' are a type of `otype'.
|
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
#define GTK_CHECK_TYPE(obj,otype) ( \
|
1998-05-10 05:19:00 +00:00
|
|
|
gtk_type_is_a (((GtkObject*) (obj))->klass->type, (otype)) \
|
1998-05-06 01:43:56 +00:00
|
|
|
)
|
|
|
|
#define GTK_CHECK_CLASS_TYPE(klass,otype) ( \
|
1998-05-10 05:19:00 +00:00
|
|
|
gtk_type_is_a (((GtkObjectClass*) (klass))->type, (otype)) \
|
1998-05-06 01:43:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
/* Macro for casting a pointer to a GtkObject or GtkObjectClass pointer.
|
|
|
|
* The second portion of the ?: statments are just in place to offer
|
|
|
|
* descriptive warning message.
|
|
|
|
*/
|
|
|
|
#define GTK_OBJECT(object) ( \
|
|
|
|
GTK_IS_OBJECT (object) ? \
|
|
|
|
(GtkObject*) (object) : \
|
|
|
|
(GtkObject*) gtk_object_check_cast ((GtkObject*) (object), GTK_TYPE_OBJECT) \
|
|
|
|
)
|
|
|
|
#define GTK_OBJECT_CLASS(klass) ( \
|
|
|
|
GTK_IS_OBJECT_CLASS (klass) ? \
|
|
|
|
(GtkObjectClass*) (klass) : \
|
|
|
|
(GtkObjectClass*) gtk_object_check_class_cast ((GtkObjectClass*) (klass), GTK_TYPE_OBJECT) \
|
|
|
|
)
|
|
|
|
|
|
|
|
/* Macro for testing whether `object' and `klass' are of type GTK_TYPE_OBJECT.
|
|
|
|
*/
|
|
|
|
#define GTK_IS_OBJECT(object) ( \
|
|
|
|
(object) != NULL && \
|
|
|
|
GTK_IS_OBJECT_CLASS (((GtkObject*) (object))->klass) \
|
|
|
|
)
|
|
|
|
#define GTK_IS_OBJECT_CLASS(klass) ( \
|
|
|
|
(klass) != NULL && \
|
|
|
|
GTK_FUNDAMENTAL_TYPE (((GtkObjectClass*) (klass))->type) == GTK_TYPE_OBJECT \
|
|
|
|
)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* Macros for extracting various fields from GtkObject and GtkObjectClass.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
#define GTK_OBJECT_TYPE(obj) (GTK_OBJECT (obj)->klass->type)
|
|
|
|
#define GTK_OBJECT_SIGNALS(obj) (GTK_OBJECT (obj)->klass->signals)
|
|
|
|
#define GTK_OBJECT_NSIGNALS(obj) (GTK_OBJECT (obj)->klass->nsignals)
|
|
|
|
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* GtkObject only uses the first 4 bits of the flags field.
|
1998-03-14 04:43:14 +00:00
|
|
|
* Derived objects may use the remaining bits. Though this
|
|
|
|
* is a kinda nasty break up, it does make the size of
|
|
|
|
* derived objects smaller.
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
*/
|
fixed an assertment.
Sat Jun 6 06:01:24 1998 Tim Janik <timj@gtk.org>
* gtk/gtksignal.c (gtk_signal_emitv): fixed an assertment.
* gtk/makeenums.awk: a script to generate the GtkEnumValue arrays from,
this should eventually be done by gentypeinfo.el somewhen.
* gtk/gtkenumvalues.c: new generated file to hold GtkEnumValue arrays.
* gtk/gtktypeutils.h: new function gtk_enum_values() to retrive all the
enum values of an enum type.
* gtk/gtk.defs:
* gtk/gtkcurve.h:
* gtk/gtkobject.h:
* gtk/gtkprivate.h:
* gtk/gtkwidget.h:
* gtk/gtkenums.h:
brought enum/flags definitions in sync, added a few more enum
definitions for bindings and pattern matching.
* some more macro and GtkType fixups in various places.
* gdk/gdktypes.h (enum): added a new value GDK_AFTER_MASK, which is used
as a key-release modifier for the binding system.
Fri Jun 5 06:06:06 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenu.h (struct _GtkMenu): removed GList*children, since it
was a stale list pointer that is already present in GtkMenuShell.
* gtk/gtkmenushell.h (struct _GtkMenuShellClass): added a signal
GtkMenuShell::selection_done which is emitted after the menu shell
poped down again and all possible menu items have been activated.
Thu Jun 4 02:20:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenushell.c (gtk_menu_shell_button_release): flush the x-queue
before activation of the menuitem, so the menu is actually taken off the
screen prior to any menu item activation.
* gtk/gtkctree.c (gtk_ctree_get_row_data): allow function invokation
for NULL nodes.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: new function gtk_widget_stop_accelerator to stop
the emission of the "add-accelerator" signal on a widget. this is
usefull to prevent accelerator installation on certain widgets.
* gtk/gtknotebook.c (gtk_notebook_menu_item_create): keep the menu
labels left justified, by setting their alignment. stop accelerator
installation for the menu items, since we use dynamic menus.
Wed Jun 3 06:41:22 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenufactory.c: adaptions to use the new accel groups. people
should *really* use GtkItemFactory. this is only for preserving source
compatibility where possible, use of GtkMenuFactory is deprecated as of
now.
* gtk/gtkobject.h (gtk_object_class_add_user_signal): new function
to create user signals of type GTK_RUN_NO_RECURSE. don't know why i
missed this possibility when i added gtk_object_class_add_user_signal
in late january.
* gtk/gtkmain.c (gtk_init): ignore subsequent function calls.
Sun May 31 07:31:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkaccelgroup.h:
* gtk/gtkaccelgroup.c: new implementation of the accelerator concept.
* gtk/gtkaccellabel.h:
* gtk/gtkaccellabel.c: new widget derived from GtkLabel whitch features
display of the accelerators associated with a certain widget.
* gtk/gtkitemfactory.h:
* gtk/gtkitemfactory.c: new widget, item factory with automatic rc
parsing and accelerator handling.
* gtk/gtkmenu.c (gtk_menu_reposition): new function to care for
positioning a menu.
(gtk_menu_map): removed the allocation code.
(gtk_menu_size_allocate): care for redrawing of children and resize
our widget->window correctly.
(gtk_menu_key_press): feature the new accelerator groups.
* gtk/gtkmenuitem.c (gtk_menu_item_size_allocate): reposition the
submenu if neccessary.
* gtk/gtkmenuitem.c:
* gtk/gtkcheckmenuitem.c:
* gtk/gtkradiomenuitem.c: use GtkAccelLabel in the *_new_with_label()
function variants.
* gdk/gdk.c:
(gdk_keyval_from_name):
(gdk_keyval_name): new functions for keyval<->key-name associations.
(gdk_keyval_to_upper):
(gdk_keyval_to_lower):
(gdk_keyval_is_upper):
(gdk_keyval_is_lower): new functions to check/translate keyvalues with
regards to their cases.
Wed May 27 00:48:10 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_class_path): new function to calculate a
widget's class path.
(gtk_widget_path): new function to calculate a widget's name path.
* gtk/gtkrc.c: newly introduced GtkPatternSpec structures to speed up
pattern matching, features reversed pattern matches.
1998-06-07 06:48:56 +00:00
|
|
|
typedef enum
|
1998-02-19 07:18:42 +00:00
|
|
|
{
|
1998-06-15 21:27:17 +00:00
|
|
|
GTK_DESTROYED = 1 << 0,
|
|
|
|
GTK_FLOATING = 1 << 1,
|
|
|
|
GTK_CONNECTED = 1 << 2,
|
|
|
|
GTK_RESERVED_2 = 1 << 3,
|
|
|
|
GTK_OBJECT_FLAG_LAST = GTK_RESERVED_2
|
|
|
|
} GtkObjectFlags;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* Macros for extracting the object_flags from GtkObject.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
#define GTK_OBJECT_FLAGS(obj) (GTK_OBJECT (obj)->flags)
|
|
|
|
#define GTK_OBJECT_DESTROYED(obj) (GTK_OBJECT_FLAGS (obj) & GTK_DESTROYED)
|
|
|
|
#define GTK_OBJECT_FLOATING(obj) (GTK_OBJECT_FLAGS (obj) & GTK_FLOATING)
|
|
|
|
#define GTK_OBJECT_CONNECTED(obj) (GTK_OBJECT_FLAGS (obj) & GTK_CONNECTED)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* Macros for setting and clearing bits in the object_flags field of GtkObject.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
#define GTK_OBJECT_SET_FLAGS(obj,flag) G_STMT_START{ (GTK_OBJECT_FLAGS (obj) |= (flag)); }G_STMT_END
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
#define GTK_OBJECT_UNSET_FLAGS(obj,flag) G_STMT_START{ (GTK_OBJECT_FLAGS (obj) &= ~(flag)); }G_STMT_END
|
|
|
|
|
1998-05-06 01:43:56 +00:00
|
|
|
/* GtkArg flag bits for gtk_object_add_arg_type
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
*/
|
fixed an assertment.
Sat Jun 6 06:01:24 1998 Tim Janik <timj@gtk.org>
* gtk/gtksignal.c (gtk_signal_emitv): fixed an assertment.
* gtk/makeenums.awk: a script to generate the GtkEnumValue arrays from,
this should eventually be done by gentypeinfo.el somewhen.
* gtk/gtkenumvalues.c: new generated file to hold GtkEnumValue arrays.
* gtk/gtktypeutils.h: new function gtk_enum_values() to retrive all the
enum values of an enum type.
* gtk/gtk.defs:
* gtk/gtkcurve.h:
* gtk/gtkobject.h:
* gtk/gtkprivate.h:
* gtk/gtkwidget.h:
* gtk/gtkenums.h:
brought enum/flags definitions in sync, added a few more enum
definitions for bindings and pattern matching.
* some more macro and GtkType fixups in various places.
* gdk/gdktypes.h (enum): added a new value GDK_AFTER_MASK, which is used
as a key-release modifier for the binding system.
Fri Jun 5 06:06:06 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenu.h (struct _GtkMenu): removed GList*children, since it
was a stale list pointer that is already present in GtkMenuShell.
* gtk/gtkmenushell.h (struct _GtkMenuShellClass): added a signal
GtkMenuShell::selection_done which is emitted after the menu shell
poped down again and all possible menu items have been activated.
Thu Jun 4 02:20:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenushell.c (gtk_menu_shell_button_release): flush the x-queue
before activation of the menuitem, so the menu is actually taken off the
screen prior to any menu item activation.
* gtk/gtkctree.c (gtk_ctree_get_row_data): allow function invokation
for NULL nodes.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: new function gtk_widget_stop_accelerator to stop
the emission of the "add-accelerator" signal on a widget. this is
usefull to prevent accelerator installation on certain widgets.
* gtk/gtknotebook.c (gtk_notebook_menu_item_create): keep the menu
labels left justified, by setting their alignment. stop accelerator
installation for the menu items, since we use dynamic menus.
Wed Jun 3 06:41:22 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenufactory.c: adaptions to use the new accel groups. people
should *really* use GtkItemFactory. this is only for preserving source
compatibility where possible, use of GtkMenuFactory is deprecated as of
now.
* gtk/gtkobject.h (gtk_object_class_add_user_signal): new function
to create user signals of type GTK_RUN_NO_RECURSE. don't know why i
missed this possibility when i added gtk_object_class_add_user_signal
in late january.
* gtk/gtkmain.c (gtk_init): ignore subsequent function calls.
Sun May 31 07:31:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkaccelgroup.h:
* gtk/gtkaccelgroup.c: new implementation of the accelerator concept.
* gtk/gtkaccellabel.h:
* gtk/gtkaccellabel.c: new widget derived from GtkLabel whitch features
display of the accelerators associated with a certain widget.
* gtk/gtkitemfactory.h:
* gtk/gtkitemfactory.c: new widget, item factory with automatic rc
parsing and accelerator handling.
* gtk/gtkmenu.c (gtk_menu_reposition): new function to care for
positioning a menu.
(gtk_menu_map): removed the allocation code.
(gtk_menu_size_allocate): care for redrawing of children and resize
our widget->window correctly.
(gtk_menu_key_press): feature the new accelerator groups.
* gtk/gtkmenuitem.c (gtk_menu_item_size_allocate): reposition the
submenu if neccessary.
* gtk/gtkmenuitem.c:
* gtk/gtkcheckmenuitem.c:
* gtk/gtkradiomenuitem.c: use GtkAccelLabel in the *_new_with_label()
function variants.
* gdk/gdk.c:
(gdk_keyval_from_name):
(gdk_keyval_name): new functions for keyval<->key-name associations.
(gdk_keyval_to_upper):
(gdk_keyval_to_lower):
(gdk_keyval_is_upper):
(gdk_keyval_is_lower): new functions to check/translate keyvalues with
regards to their cases.
Wed May 27 00:48:10 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_class_path): new function to calculate a
widget's class path.
(gtk_widget_path): new function to calculate a widget's name path.
* gtk/gtkrc.c: newly introduced GtkPatternSpec structures to speed up
pattern matching, features reversed pattern matches.
1998-06-07 06:48:56 +00:00
|
|
|
typedef enum
|
1998-05-06 01:43:56 +00:00
|
|
|
{
|
1998-06-15 21:27:17 +00:00
|
|
|
GTK_ARG_READABLE = 1 << 0,
|
|
|
|
GTK_ARG_WRITABLE = 1 << 1,
|
|
|
|
GTK_ARG_CONSTRUCT = 1 << 2,
|
1998-06-16 05:20:05 +00:00
|
|
|
GTK_ARG_CHILD_ARG = 1 << 3,
|
|
|
|
GTK_ARG_MASK = 0x0f,
|
|
|
|
|
1998-05-06 01:43:56 +00:00
|
|
|
/* aliases
|
|
|
|
*/
|
1998-06-15 21:27:17 +00:00
|
|
|
GTK_ARG_READWRITE = GTK_ARG_READABLE | GTK_ARG_WRITABLE
|
|
|
|
} GtkArgFlags;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-05-08 23:20:48 +00:00
|
|
|
typedef struct _GtkObjectClass GtkObjectClass;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* GtkObject is the base of the object hierarchy. It defines
|
|
|
|
* the few basic items that all derived classes contain.
|
|
|
|
*/
|
|
|
|
struct _GtkObject
|
|
|
|
{
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* A pointer to the objects class. This will actually point to
|
|
|
|
* the derived objects class struct (which will be derived from
|
|
|
|
* GtkObjectClass).
|
|
|
|
*/
|
|
|
|
GtkObjectClass *klass;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
/* 32 bits of flags. GtkObject only uses 4 of these bits and
|
1997-11-24 22:37:52 +00:00
|
|
|
* GtkWidget uses the rest. This is done because structs are
|
GTK_RESIZE_NEEDED is a private flag now.
Mon Feb 2 04:15:08 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: GTK_RESIZE_NEEDED is a private flag now.
(gtk_container_register_toplevel): new function.
(gtk_container_unregister_toplevel): new function.
* gtk/gtkmain.c: GTK_LEAVE_PENDING is a private flag now.
* gtk/gtkmenu.c: call gtk_container_register_toplevel in
gtk_menu_class_init instead of this dirty gtk_widget_set_parent(,NULL)
hack. new default handler gtk_menu_destroy for calling
gtk_container_unregister_toplevel. removed GTK_ANCHORED, GTK_UNMAPPED.
* gtk/gtkobject.h: macro cleanups, added GTK_DESTROYED flag.
* gtk/gtkobject.c: only emit DESTROY signal if !GTK_OBJECT_DESTROYED
(object).
* gtk/gtkprivate.h: new file that will not be automatically included.
it holds the private flags for GtkWidget along with it's SET/UNSET
and examination macros.
* gtk/gtkwidget.c: private flags: GTK_RESIZE_NEEDED, GTK_REDRAW_PENDING,
GTK_RESIZE_PENDING, GTK_IN_REPARENT, GTK_USER_STYLE. GTK_ANCHORED is
replaced by GTK_TOPLEVEL. added missing UNSET for GTK_IN_REPARENT.
removed the gtk_widget_set_parent(, NULL) hack for toplevels.
upon destroy free memory for widgets with GTK_WIDGET_HAS_SHAPE_MASK.
* gtk/gtkwidget.h: split up the widget flags into a public and a private
portion. added an extra field private_flags to GtkWidget without making
it bigger by using an alignment gap of 16 bit. macro cleanups.
* gtk/gtkwindow.c: removed GTK_ANCHORED. new function gtk_window_destroy
for calling gtk_container_unregister_toplevel. removed the
gtk_widget_set_parent(,NULL), call gtk_container_register_toplevel
instead. remove GTK_UNMAPPED. GTK_RESIZE_NEEDED is private now.
* gtk/gtksignal.c (gtk_signal_disconnect): removed a bug on
removal that cut off the handler list -> living_objects == 0
with testgtk. made some warnings more descriptive.
new function gtk_signal_connect_object_while_alive, which
will automatically destroy the connection once one of the objects
is destroyed. didn't include this before removal of the above
mentioned bug.
* reflected refcounting revolution in ChangeLog
1998-02-02 04:54:25 +00:00
|
|
|
* aligned on 4 or 8 byte boundaries. If a new bitfield were
|
|
|
|
* used in GtkWidget much space would be wasted.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
|
|
|
guint32 flags;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
/* reference count.
|
|
|
|
* refer to the file REFCOUNTING on this issue.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* The list of signal handlers and other data
|
|
|
|
* fields for this object.
|
|
|
|
*/
|
|
|
|
gpointer object_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* GtkObjectClass is the base of the class hierarchy. It defines
|
|
|
|
* the basic necessities for the class mechanism to work. Namely,
|
|
|
|
* the "type", "signals" and "nsignals" fields.
|
|
|
|
*/
|
|
|
|
struct _GtkObjectClass
|
|
|
|
{
|
|
|
|
/* The type identifier for the objects class. There is
|
|
|
|
* one unique identifier per class.
|
|
|
|
*/
|
1998-01-17 05:31:13 +00:00
|
|
|
GtkType type;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* The signals this object class handles. "signals" is an
|
|
|
|
* array of signal ID's.
|
|
|
|
*/
|
1998-03-09 15:16:28 +00:00
|
|
|
guint *signals;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* The number of signals listed in "signals".
|
|
|
|
*/
|
1998-03-09 15:16:28 +00:00
|
|
|
guint nsignals;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
/* The number of arguments per class.
|
|
|
|
*/
|
|
|
|
guint n_args;
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1998-03-14 04:43:14 +00:00
|
|
|
/* The functions that will end an objects life time. In one way ore
|
|
|
|
* another all three of them are defined for all objects. If an
|
|
|
|
* object class overrides one of the methods in order to perform class
|
|
|
|
* specific destruction then it must still invoke its superclass'
|
|
|
|
* implementation of the method after it is finished with its
|
1997-11-24 22:37:52 +00:00
|
|
|
* own cleanup. (See the destroy function for GtkWidget for
|
|
|
|
* an example of how to do this).
|
|
|
|
*/
|
1998-03-14 04:43:14 +00:00
|
|
|
void (* shutdown) (GtkObject *object);
|
1997-11-24 22:37:52 +00:00
|
|
|
void (* destroy) (GtkObject *object);
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
void (* finalize) (GtkObject *object);
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1998-01-29 20:44:14 +00:00
|
|
|
/* For the purpose of user signals we need the signal function
|
|
|
|
* and signal marshaller signatures already in this place.
|
|
|
|
*/
|
|
|
|
#define GTK_SIGNAL_FUNC(f) ((GtkSignalFunc) f)
|
|
|
|
|
1998-05-08 23:20:48 +00:00
|
|
|
typedef void (*GtkSignalFunc) (void);
|
|
|
|
typedef void (*GtkSignalMarshaller) (GtkObject *object,
|
1998-01-29 20:44:14 +00:00
|
|
|
GtkSignalFunc func,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer func_data,
|
|
|
|
GtkArg *args);
|
1998-01-29 20:44:14 +00:00
|
|
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* Get the type identifier for GtkObject's.
|
|
|
|
*/
|
1998-05-06 01:43:56 +00:00
|
|
|
GtkType gtk_object_get_type (void);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
/* Append "signals" to those already defined in "class".
|
|
|
|
*/
|
1998-01-16 05:11:10 +00:00
|
|
|
void gtk_object_class_add_signals (GtkObjectClass *klass,
|
1998-05-08 23:20:48 +00:00
|
|
|
guint *signals,
|
|
|
|
guint nsignals);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-29 20:44:14 +00:00
|
|
|
/* Append a user defined signal without default handler to a class.
|
|
|
|
*/
|
1998-06-09 07:11:55 +00:00
|
|
|
guint gtk_object_class_user_signal_new (GtkObjectClass *klass,
|
|
|
|
const gchar *name,
|
|
|
|
GtkSignalRunType signal_flags,
|
|
|
|
GtkSignalMarshaller marshaller,
|
|
|
|
GtkType return_val,
|
|
|
|
guint nparams,
|
|
|
|
...);
|
|
|
|
guint gtk_object_class_user_signal_newv (GtkObjectClass *klass,
|
|
|
|
const gchar *name,
|
|
|
|
GtkSignalRunType signal_flags,
|
|
|
|
GtkSignalMarshaller marshaller,
|
|
|
|
GtkType return_val,
|
|
|
|
guint nparams,
|
|
|
|
GtkType *params);
|
|
|
|
/* Outdated */
|
|
|
|
guint gtk_object_class_add_user_signal (GtkObjectClass *klass,
|
|
|
|
const gchar *name,
|
|
|
|
GtkSignalMarshaller marshaller,
|
|
|
|
GtkType return_val,
|
|
|
|
guint nparams,
|
1998-01-29 20:44:14 +00:00
|
|
|
...);
|
|
|
|
|
1998-03-09 15:16:28 +00:00
|
|
|
GtkObject* gtk_object_new (GtkType type,
|
1998-01-16 05:11:10 +00:00
|
|
|
...);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-03-09 15:16:28 +00:00
|
|
|
GtkObject* gtk_object_newv (GtkType type,
|
1998-01-16 05:11:10 +00:00
|
|
|
guint nargs,
|
|
|
|
GtkArg *args);
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_sink (GtkObject *object);
|
|
|
|
void gtk_object_ref (GtkObject *object);
|
|
|
|
void gtk_object_unref (GtkObject *object);
|
1998-01-30 23:47:09 +00:00
|
|
|
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_weakref (GtkObject *object,
|
1998-01-30 23:47:09 +00:00
|
|
|
GtkDestroyNotify notify,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer data);
|
|
|
|
void gtk_object_weakunref (GtkObject *object,
|
1998-01-30 23:47:09 +00:00
|
|
|
GtkDestroyNotify notify,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer data);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
void gtk_object_destroy (GtkObject *object);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-16 05:11:10 +00:00
|
|
|
/* gtk_object_getv() sets an arguments type and value, or just
|
|
|
|
* its type to GTK_TYPE_INVALID.
|
|
|
|
* if arg->type == GTK_TYPE_STRING, it's the callers response to
|
|
|
|
* do a g_free (GTK_VALUE_STRING (arg));
|
|
|
|
*/
|
|
|
|
void gtk_object_getv (GtkObject *object,
|
|
|
|
guint nargs,
|
|
|
|
GtkArg *args);
|
|
|
|
|
|
|
|
/* gtk_object_set() takes a variable argument list of the form:
|
|
|
|
* (..., gchar *arg_name, ARG_VALUES, [repeatedly name/value pairs,] NULL)
|
|
|
|
* where ARG_VALUES type depend on the argument and can consist of
|
|
|
|
* more than one c-function argument.
|
|
|
|
*/
|
|
|
|
void gtk_object_set (GtkObject *object,
|
|
|
|
...);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-16 05:11:10 +00:00
|
|
|
void gtk_object_setv (GtkObject *object,
|
|
|
|
guint nargs,
|
|
|
|
GtkArg *args);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-17 05:31:13 +00:00
|
|
|
/* Allocate a GtkArg array of size nargs that hold the
|
|
|
|
* names and types of the args that can be used with
|
1998-02-21 13:33:20 +00:00
|
|
|
* gtk_object_set/gtk_object_get. if (arg_flags!=NULL),
|
|
|
|
* (*arg_flags) will be set to point to a newly allocated
|
|
|
|
* guint array that holds the flags of the args.
|
1998-01-17 05:31:13 +00:00
|
|
|
* It is the callers response to do a
|
1998-06-16 05:20:05 +00:00
|
|
|
* g_free (returned_args); g_free (*arg_flags).
|
1998-01-17 05:31:13 +00:00
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
GtkArg* gtk_object_query_args (GtkType class_type,
|
1998-02-21 13:33:20 +00:00
|
|
|
guint32 **arg_flags,
|
1998-05-08 23:20:48 +00:00
|
|
|
guint *nargs);
|
1998-01-17 05:31:13 +00:00
|
|
|
|
1998-01-16 05:11:10 +00:00
|
|
|
void gtk_object_add_arg_type (const gchar *arg_name,
|
|
|
|
GtkType arg_type,
|
1998-02-21 13:33:20 +00:00
|
|
|
guint arg_flags,
|
1998-01-16 05:11:10 +00:00
|
|
|
guint arg_id);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-01-16 05:11:10 +00:00
|
|
|
GtkType gtk_object_get_arg_type (const gchar *arg_name);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
/* Set 'data' to the "object_data" field of the object. The
|
|
|
|
* data is indexed by the "key". If there is already data
|
|
|
|
* associated with "key" then the new data will replace it.
|
|
|
|
* If 'data' is NULL then this call is equivalent to
|
|
|
|
* 'gtk_object_remove_data'.
|
|
|
|
*/
|
1998-03-14 04:43:14 +00:00
|
|
|
void gtk_object_set_data (GtkObject *object,
|
|
|
|
const gchar *key,
|
|
|
|
gpointer data);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-13 05:11:16 +00:00
|
|
|
/* Like gtk_object_set_data, but takes an additional argument
|
1998-03-14 04:43:14 +00:00
|
|
|
* which is a function to be called when the data is removed.
|
1998-02-13 05:11:16 +00:00
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_set_data_full (GtkObject *object,
|
1998-03-14 04:43:14 +00:00
|
|
|
const gchar *key,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer data,
|
1998-03-14 04:43:14 +00:00
|
|
|
GtkDestroyNotify destroy);
|
1998-02-13 05:11:16 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* Get the data associated with "key".
|
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer gtk_object_get_data (GtkObject *object,
|
1998-03-14 04:43:14 +00:00
|
|
|
const gchar *key);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
/* Remove the data associated with "key". This call is
|
|
|
|
* equivalent to 'gtk_object_set_data' where 'data' is NULL.
|
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_remove_data (GtkObject *object,
|
1998-03-14 04:43:14 +00:00
|
|
|
const gchar *key);
|
|
|
|
|
|
|
|
/* Object data functions that operate on key ids.
|
|
|
|
* These functions are meant for *internal* use only.
|
|
|
|
*/
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_set_data_by_id (GtkObject *object,
|
|
|
|
guint data_id,
|
|
|
|
gpointer data);
|
|
|
|
void gtk_object_set_data_by_id_full (GtkObject *object,
|
1998-03-14 04:43:14 +00:00
|
|
|
guint data_id,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer data,
|
1998-03-14 04:43:14 +00:00
|
|
|
GtkDestroyNotify destroy);
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer gtk_object_get_data_by_id (GtkObject *object,
|
1998-03-14 04:43:14 +00:00
|
|
|
guint data_id);
|
1998-05-08 23:20:48 +00:00
|
|
|
void gtk_object_remove_data_by_id (GtkObject *object,
|
|
|
|
guint data_id);
|
1998-05-11 00:48:44 +00:00
|
|
|
#define gtk_object_data_try_key g_dataset_try_key
|
|
|
|
#define gtk_object_data_force_id g_dataset_force_id
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
/* Set the "user_data" object data field of "object". It should
|
1998-03-08 10:41:48 +00:00
|
|
|
* be noted that this is no different than calling 'gtk_object_set_data'
|
1997-11-24 22:37:52 +00:00
|
|
|
* with a key of "user_data". It is merely provided as a convenience.
|
|
|
|
*/
|
|
|
|
void gtk_object_set_user_data (GtkObject *object,
|
1998-05-08 23:20:48 +00:00
|
|
|
gpointer data);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
/* Get the "user_data" object data field of "object". It should
|
1998-02-19 08:14:03 +00:00
|
|
|
* be noted that this is no different than calling 'gtk_object_get_data'
|
1997-11-24 22:37:52 +00:00
|
|
|
* with a key of "user_data". It is merely provided as a convenience.
|
|
|
|
*/
|
|
|
|
gpointer gtk_object_get_user_data (GtkObject *object);
|
|
|
|
|
|
|
|
GtkObject* gtk_object_check_cast (GtkObject *obj,
|
|
|
|
GtkType cast_type);
|
|
|
|
|
|
|
|
GtkObjectClass* gtk_object_check_class_cast (GtkObjectClass *klass,
|
1998-05-08 23:20:48 +00:00
|
|
|
GtkType cast_type);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-05-11 08:31:16 +00:00
|
|
|
void gtk_trace_referencing (GtkObject *object,
|
1998-02-02 18:44:28 +00:00
|
|
|
const gchar *func,
|
1998-05-11 08:31:16 +00:00
|
|
|
guint dummy,
|
1998-05-08 23:20:48 +00:00
|
|
|
guint line,
|
1998-02-02 18:44:28 +00:00
|
|
|
gboolean do_ref);
|
1998-05-08 23:20:48 +00:00
|
|
|
|
1998-05-11 08:31:16 +00:00
|
|
|
#if G_ENABLE_DEBUG
|
|
|
|
# define gtk_object_ref(o) G_STMT_START{gtk_trace_referencing((o),G_GNUC_PRETTY_FUNCTION,0,__LINE__,1);}G_STMT_END
|
|
|
|
# define gtk_object_unref(o) G_STMT_START{gtk_trace_referencing((o),G_GNUC_PRETTY_FUNCTION,0,__LINE__,0);}G_STMT_END
|
1998-02-19 08:14:03 +00:00
|
|
|
#endif /* G_ENABLE_DEBUG && __GNUC__ */
|
1998-02-02 18:44:28 +00:00
|
|
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_OBJECT_H__ */
|