X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c67daf87774c71ae9f73af9969008af220e52a11..c19a8a9a7187281b757808e651358198352b8f11:/src/gtk1/win_gtk.c?ds=sidebyside diff --git a/src/gtk1/win_gtk.c b/src/gtk1/win_gtk.c index 4164200ac1..40c65a8785 100644 --- a/src/gtk1/win_gtk.c +++ b/src/gtk1/win_gtk.c @@ -1,14 +1,24 @@ /* /////////////////////////////////////////////////////////////////////////// -// Name: wx_gtk.h -// Purpose: +// Name: win_gtk.c +// Purpose: native GTK+ widget for wxWindows // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////// */ #include "wx/gtk/win_gtk.h" +#include + +/*------------------------------------------------------------------------- +// conditional compilation +//------------------------------------------------------------------------- */ + +#if (GTK_MINOR_VERSION == 1) +#if (GTK_MICRO_VERSION >= 5) +#define NEW_GTK_CONSTRUCT_CODE +#endif +#endif #ifdef __cplusplus extern "C" { @@ -17,7 +27,9 @@ extern "C" { static void gtk_myfixed_class_init (GtkMyFixedClass *klass); static void gtk_myfixed_init (GtkMyFixed *myfixed); static void gtk_myfixed_map (GtkWidget *widget); +#ifndef NEW_GTK_CONSTRUCT_CODE static void gtk_myfixed_unmap (GtkWidget *widget); +#endif static void gtk_myfixed_realize (GtkWidget *widget); static void gtk_myfixed_size_request (GtkWidget *widget, GtkRequisition *requisition); @@ -34,8 +46,14 @@ static void gtk_myfixed_add (GtkContainer *container, static void gtk_myfixed_remove (GtkContainer *container, GtkWidget *widget); static void gtk_myfixed_foreach (GtkContainer *container, +#if (GTK_MINOR_VERSION == 1) + gboolean include_internals, +#endif GtkCallback callback, gpointer callback_data); +#ifdef NEW_GTK_CONSTRUCT_CODE +static GtkType gtk_myfixed_child_type (GtkContainer *container); +#endif static GtkContainerClass *parent_class = NULL; @@ -55,8 +73,14 @@ gtk_myfixed_get_type () sizeof (GtkMyFixedClass), (GtkClassInitFunc) gtk_myfixed_class_init, (GtkObjectInitFunc) gtk_myfixed_init, - (GtkArgSetFunc) NULL, +#ifndef NEW_GTK_CONSTRUCT_CODE + (GtkArgSetFunc) NULL, (GtkArgGetFunc) NULL, +#else + /* reserved_1 */ NULL, + /* reserved_2 */ NULL, + (GtkClassInitFunc) NULL, +#endif }; myfixed_type = gtk_type_unique (gtk_container_get_type (), &myfixed_info); @@ -75,11 +99,17 @@ gtk_myfixed_class_init (GtkMyFixedClass *klass) object_class = (GtkObjectClass*) klass; widget_class = (GtkWidgetClass*) klass; container_class = (GtkContainerClass*) klass; - + +#ifndef NEW_GTK_CONSTRUCT_CODE parent_class = gtk_type_class (gtk_container_get_type ()); +#else + parent_class = gtk_type_class (GTK_TYPE_CONTAINER); +#endif widget_class->map = gtk_myfixed_map; +#ifndef NEW_GTK_CONSTRUCT_CODE widget_class->unmap = gtk_myfixed_unmap; +#endif widget_class->realize = gtk_myfixed_realize; widget_class->size_request = gtk_myfixed_size_request; widget_class->size_allocate = gtk_myfixed_size_allocate; @@ -88,15 +118,34 @@ gtk_myfixed_class_init (GtkMyFixedClass *klass) container_class->add = gtk_myfixed_add; container_class->remove = gtk_myfixed_remove; +#if (GTK_MINOR_VERSION == 1) + container_class->forall = gtk_myfixed_foreach; +#else container_class->foreach = gtk_myfixed_foreach; +#endif + +#ifdef NEW_GTK_CONSTRUCT_CODE + container_class->child_type = gtk_myfixed_child_type; +#endif } +#ifdef NEW_GTK_CONSTRUCT_CODE +static GtkType +gtk_myfixed_child_type (GtkContainer *container) +{ + return GTK_TYPE_WIDGET; +} +#endif + static void gtk_myfixed_init (GtkMyFixed *myfixed) { GTK_WIDGET_UNSET_FLAGS (myfixed, GTK_NO_WINDOW); - GTK_WIDGET_SET_FLAGS (myfixed, GTK_BASIC); +#ifndef NEW_GTK_CONSTRUCT_CODE + GTK_WIDGET_SET_FLAGS (myfixed, GTK_BASIC); +#endif + myfixed->children = NULL; } @@ -162,6 +211,8 @@ gtk_myfixed_move (GtkMyFixed *myfixed, if (child->widget == widget) { + if ((child->x == x) && (child->y == y)) return; + child->x = x; child->y = y; @@ -200,6 +251,7 @@ gtk_myfixed_map (GtkWidget *widget) } } +#ifndef NEW_GTK_CONSTRUCT_CODE static void gtk_myfixed_unmap (GtkWidget *widget) { @@ -208,6 +260,7 @@ gtk_myfixed_unmap (GtkWidget *widget) GTK_WIDGET_UNSET_FLAGS (widget, GTK_MAPPED); } +#endif static void gtk_myfixed_realize (GtkWidget *widget) @@ -454,6 +507,9 @@ gtk_myfixed_remove (GtkContainer *container, static void gtk_myfixed_foreach (GtkContainer *container, +#if (GTK_MINOR_VERSION == 1) + gboolean include_internals, +#endif GtkCallback callback, gpointer callback_data) {