Deprecation cleanup

Thu Oct 10 15:13:48 2002  Manish Singh  <yosh@gimp.org>

        * gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
        gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
        cleanup
This commit is contained in:
Manish Singh 2002-10-10 22:20:48 +00:00 committed by Manish Singh
parent 62341005d1
commit 5d021465d6
15 changed files with 118 additions and 81 deletions

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -1,3 +1,9 @@
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c
gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation
cleanup
Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org> Thu Oct 10 14:58:47 2002 Manish Singh <yosh@gimp.org>
* gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch] * gtk/gtkaccelgroup.c gtk/gtkarrow.[ch] gtk/gtkeventbox.[ch]

View File

@ -17,13 +17,11 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#define GTK_DISABLE_DEPRECATED #include <string.h>
#include "gtkimcontext.h" #include "gtkimcontext.h"
#include "gtkmain.h" /* For _gtk_boolean_handled_accumulator */ #include "gtkmain.h" /* For _gtk_boolean_handled_accumulator */
#include "gtkmarshalers.h" #include "gtkmarshalers.h"
#include "gtksignal.h"
#include "string.h"
enum { enum {
PREEDIT_START, PREEDIT_START,
@ -54,10 +52,10 @@ static void gtk_im_context_real_set_surrounding (GtkIMContext *context,
gint len, gint len,
gint cursor_index); gint cursor_index);
GtkType GType
gtk_im_context_get_type (void) gtk_im_context_get_type (void)
{ {
static GtkType im_context_type = 0; static GType im_context_type = 0;
if (!im_context_type) if (!im_context_type)
{ {
@ -67,16 +65,17 @@ gtk_im_context_get_type (void)
(GBaseInitFunc) NULL, (GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL, (GBaseFinalizeFunc) NULL,
(GClassInitFunc) gtk_im_context_class_init, (GClassInitFunc) gtk_im_context_class_init,
NULL, /* class_finalize */ NULL, /* class_finalize */
NULL, /* class_data */ NULL, /* class_data */
sizeof (GtkIMContext), sizeof (GtkIMContext),
0, /* n_preallocs */ 0, /* n_preallocs */
(GInstanceInitFunc) gtk_im_context_init, (GInstanceInitFunc) gtk_im_context_init,
NULL /* value_table */ NULL, /* value_table */
}; };
im_context_type = g_type_register_static (G_TYPE_OBJECT, "GtkIMContext", im_context_type =
&im_context_info, G_TYPE_FLAG_ABSTRACT); g_type_register_static (G_TYPE_OBJECT, "GtkIMContext",
&im_context_info, G_TYPE_FLAG_ABSTRACT);
} }
return im_context_type; return im_context_type;
@ -85,10 +84,6 @@ gtk_im_context_get_type (void)
static void static void
gtk_im_context_class_init (GtkIMContextClass *klass) gtk_im_context_class_init (GtkIMContextClass *klass)
{ {
GtkObjectClass *object_class;
object_class = (GtkObjectClass*) klass;
klass->get_preedit_string = gtk_im_context_real_get_preedit_string; klass->get_preedit_string = gtk_im_context_real_get_preedit_string;
klass->filter_keypress = gtk_im_context_real_filter_keypress; klass->filter_keypress = gtk_im_context_real_filter_keypress;
klass->get_surrounding = gtk_im_context_real_get_surrounding; klass->get_surrounding = gtk_im_context_real_get_surrounding;
@ -96,7 +91,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
im_context_signals[PREEDIT_START] = im_context_signals[PREEDIT_START] =
g_signal_new ("preedit_start", g_signal_new ("preedit_start",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, preedit_start), G_STRUCT_OFFSET (GtkIMContextClass, preedit_start),
NULL, NULL, NULL, NULL,
@ -105,7 +100,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
im_context_signals[PREEDIT_END] = im_context_signals[PREEDIT_END] =
g_signal_new ("preedit_end", g_signal_new ("preedit_end",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, preedit_end), G_STRUCT_OFFSET (GtkIMContextClass, preedit_end),
NULL, NULL, NULL, NULL,
@ -114,7 +109,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
im_context_signals[PREEDIT_CHANGED] = im_context_signals[PREEDIT_CHANGED] =
g_signal_new ("preedit_changed", g_signal_new ("preedit_changed",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, preedit_changed), G_STRUCT_OFFSET (GtkIMContextClass, preedit_changed),
NULL, NULL, NULL, NULL,
@ -123,7 +118,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
im_context_signals[COMMIT] = im_context_signals[COMMIT] =
g_signal_new ("commit", g_signal_new ("commit",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, commit), G_STRUCT_OFFSET (GtkIMContextClass, commit),
NULL, NULL, NULL, NULL,
@ -133,7 +128,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
im_context_signals[RETRIEVE_SURROUNDING] = im_context_signals[RETRIEVE_SURROUNDING] =
g_signal_new ("retrieve_surrounding", g_signal_new ("retrieve_surrounding",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, retrieve_surrounding), G_STRUCT_OFFSET (GtkIMContextClass, retrieve_surrounding),
_gtk_boolean_handled_accumulator, NULL, _gtk_boolean_handled_accumulator, NULL,
@ -141,7 +136,7 @@ gtk_im_context_class_init (GtkIMContextClass *klass)
G_TYPE_BOOLEAN, 0); G_TYPE_BOOLEAN, 0);
im_context_signals[DELETE_SURROUNDING] = im_context_signals[DELETE_SURROUNDING] =
g_signal_new ("delete_surrounding", g_signal_new ("delete_surrounding",
G_TYPE_FROM_CLASS (object_class), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GtkIMContextClass, delete_surrounding), G_STRUCT_OFFSET (GtkIMContextClass, delete_surrounding),
_gtk_boolean_handled_accumulator, NULL, _gtk_boolean_handled_accumulator, NULL,

View File

@ -30,11 +30,11 @@ extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
#define GTK_TYPE_IM_CONTEXT (gtk_im_context_get_type ()) #define GTK_TYPE_IM_CONTEXT (gtk_im_context_get_type ())
#define GTK_IM_CONTEXT(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContext)) #define GTK_IM_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContext))
#define GTK_IM_CONTEXT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT, GtkIMContextClass)) #define GTK_IM_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT, GtkIMContextClass))
#define GTK_IS_IM_CONTEXT(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IM_CONTEXT)) #define GTK_IS_IM_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IM_CONTEXT))
#define GTK_IS_IM_CONTEXT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT)) #define GTK_IS_IM_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT))
#define GTK_IM_CONTEXT_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContextClass)) #define GTK_IM_CONTEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContextClass))
typedef struct _GtkIMContext GtkIMContext; typedef struct _GtkIMContext GtkIMContext;
@ -47,6 +47,9 @@ struct _GtkIMContext
struct _GtkIMContextClass struct _GtkIMContextClass
{ {
/* Yes, this should be GObjectClass, be we can't fix it without breaking
* binary compatibility - see bug #90935
*/
GtkObjectClass parent_class; GtkObjectClass parent_class;
/* Signals */ /* Signals */
@ -92,7 +95,7 @@ struct _GtkIMContextClass
void (*_gtk_reserved6) (void); void (*_gtk_reserved6) (void);
}; };
GtkType gtk_im_context_get_type (void) G_GNUC_CONST; GType gtk_im_context_get_type (void) G_GNUC_CONST;
void gtk_im_context_set_client_window (GtkIMContext *context, void gtk_im_context_set_client_window (GtkIMContext *context,
GdkWindow *window); GdkWindow *window);

View File

@ -21,7 +21,6 @@
#include <gdk/gdkkeysyms.h> #include <gdk/gdkkeysyms.h>
#include "gtkaccelgroup.h" #include "gtkaccelgroup.h"
#include "gtksignal.h"
#include "gtkimcontextsimple.h" #include "gtkimcontextsimple.h"
typedef struct _GtkComposeTable GtkComposeTable; typedef struct _GtkComposeTable GtkComposeTable;
@ -864,10 +863,10 @@ static void gtk_im_context_simple_get_preedit_string (GtkIMContext
static GObjectClass *parent_class; static GObjectClass *parent_class;
GtkType GType
gtk_im_context_simple_get_type (void) gtk_im_context_simple_get_type (void)
{ {
static GtkType im_context_simple_type = 0; static GType im_context_simple_type = 0;
if (!im_context_simple_type) if (!im_context_simple_type)
{ {
@ -884,9 +883,9 @@ gtk_im_context_simple_get_type (void)
(GInstanceInitFunc) gtk_im_context_simple_init, (GInstanceInitFunc) gtk_im_context_simple_init,
}; };
im_context_simple_type = g_type_register_static (GTK_TYPE_IM_CONTEXT, im_context_simple_type =
"GtkIMContextSimple", g_type_register_static (GTK_TYPE_IM_CONTEXT, "GtkIMContextSimple",
&im_context_simple_info, 0); &im_context_simple_info, 0);
} }
return im_context_simple_type; return im_context_simple_type;
@ -937,7 +936,7 @@ gtk_im_context_simple_finalize (GObject *obj)
GtkIMContext * GtkIMContext *
gtk_im_context_simple_new (void) gtk_im_context_simple_new (void)
{ {
return GTK_IM_CONTEXT (g_object_new (GTK_TYPE_IM_CONTEXT_SIMPLE, NULL)); return g_object_new (GTK_TYPE_IM_CONTEXT_SIMPLE, NULL);
} }
static void static void

View File

@ -28,11 +28,11 @@ extern "C" {
#define GTK_TYPE_IM_CONTEXT_SIMPLE (gtk_im_context_simple_get_type ()) #define GTK_TYPE_IM_CONTEXT_SIMPLE (gtk_im_context_simple_get_type ())
#define GTK_IM_CONTEXT_SIMPLE(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple)) #define GTK_IM_CONTEXT_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple))
#define GTK_IM_CONTEXT_SIMPLE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass)) #define GTK_IM_CONTEXT_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass))
#define GTK_IS_IM_CONTEXT_SIMPLE(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE)) #define GTK_IS_IM_CONTEXT_SIMPLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE))
#define GTK_IS_IM_CONTEXT_SIMPLE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT_SIMPLE)) #define GTK_IS_IM_CONTEXT_SIMPLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT_SIMPLE))
#define GTK_IM_CONTEXT_SIMPLE_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass)) #define GTK_IM_CONTEXT_SIMPLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass))
typedef struct _GtkIMContextSimple GtkIMContextSimple; typedef struct _GtkIMContextSimple GtkIMContextSimple;
@ -58,7 +58,7 @@ struct _GtkIMContextSimpleClass
GtkIMContextClass parent_class; GtkIMContextClass parent_class;
}; };
GtkType gtk_im_context_simple_get_type (void) G_GNUC_CONST; GType gtk_im_context_simple_get_type (void) G_GNUC_CONST;
GtkIMContext *gtk_im_context_simple_new (void); GtkIMContext *gtk_im_context_simple_new (void);
void gtk_im_context_simple_add_table (GtkIMContextSimple *context_simple, void gtk_im_context_simple_add_table (GtkIMContextSimple *context_simple,

View File

@ -179,7 +179,9 @@ gtk_im_module_get_type (void)
NULL, /* instance_init */ NULL, /* instance_init */
}; };
im_module_type = g_type_register_static (G_TYPE_TYPE_MODULE, "GtkIMModule", &im_module_info, 0); im_module_type =
g_type_register_static (G_TYPE_TYPE_MODULE, "GtkIMModule",
&im_module_info, 0);
} }
return im_module_type; return im_module_type;
@ -375,7 +377,7 @@ gtk_im_module_init ()
} }
g_slist_free (infos); g_slist_free (infos);
g_object_unref (G_OBJECT (module)); g_object_unref (module);
} }
else if (module) else if (module)
add_module (module, infos); add_module (module, infos);

View File

@ -20,7 +20,6 @@
#include <string.h> #include <string.h>
#include <locale.h> #include <locale.h>
#include "gtksignal.h"
#include "gtkimmulticontext.h" #include "gtkimmulticontext.h"
#include "gtkimmodule.h" #include "gtkimmodule.h"
#include "gtkradiomenuitem.h" #include "gtkradiomenuitem.h"
@ -75,10 +74,10 @@ static GtkIMContextClass *parent_class;
static const gchar *global_context_id = NULL; static const gchar *global_context_id = NULL;
GtkType GType
gtk_im_multicontext_get_type (void) gtk_im_multicontext_get_type (void)
{ {
static GtkType im_multicontext_type = 0; static GType im_multicontext_type = 0;
if (!im_multicontext_type) if (!im_multicontext_type)
{ {
@ -95,9 +94,9 @@ gtk_im_multicontext_get_type (void)
(GInstanceInitFunc) gtk_im_multicontext_init, (GInstanceInitFunc) gtk_im_multicontext_init,
}; };
im_multicontext_type = g_type_register_static (GTK_TYPE_IM_CONTEXT, im_multicontext_type =
"GtkIMMulticontext", g_type_register_static (GTK_TYPE_IM_CONTEXT, "GtkIMMulticontext",
&im_multicontext_info, 0); &im_multicontext_info, 0);
} }
return im_multicontext_type; return im_multicontext_type;
@ -141,7 +140,7 @@ gtk_im_multicontext_init (GtkIMMulticontext *multicontext)
GtkIMContext * GtkIMContext *
gtk_im_multicontext_new (void) gtk_im_multicontext_new (void)
{ {
return GTK_IM_CONTEXT (g_object_new (GTK_TYPE_IM_MULTICONTEXT, NULL)); return g_object_new (GTK_TYPE_IM_MULTICONTEXT, NULL);
} }
static void static void
@ -165,16 +164,16 @@ gtk_im_multicontext_set_slave (GtkIMMulticontext *multicontext,
gtk_im_context_reset (multicontext->slave); gtk_im_context_reset (multicontext->slave);
g_signal_handlers_disconnect_by_func (multicontext->slave, g_signal_handlers_disconnect_by_func (multicontext->slave,
(gpointer) gtk_im_multicontext_preedit_start_cb, gtk_im_multicontext_preedit_start_cb,
multicontext); multicontext);
g_signal_handlers_disconnect_by_func (multicontext->slave, g_signal_handlers_disconnect_by_func (multicontext->slave,
(gpointer) gtk_im_multicontext_preedit_end_cb, gtk_im_multicontext_preedit_end_cb,
multicontext); multicontext);
g_signal_handlers_disconnect_by_func (multicontext->slave, g_signal_handlers_disconnect_by_func (multicontext->slave,
(gpointer) gtk_im_multicontext_preedit_changed_cb, gtk_im_multicontext_preedit_changed_cb,
multicontext); multicontext);
g_signal_handlers_disconnect_by_func (multicontext->slave, g_signal_handlers_disconnect_by_func (multicontext->slave,
(gpointer) gtk_im_multicontext_commit_cb, gtk_im_multicontext_commit_cb,
multicontext); multicontext);
g_object_unref (multicontext->slave); g_object_unref (multicontext->slave);
@ -448,7 +447,7 @@ activate_cb (GtkWidget *menuitem,
{ {
if (GTK_CHECK_MENU_ITEM (menuitem)->active) if (GTK_CHECK_MENU_ITEM (menuitem)->active)
{ {
const gchar *id = gtk_object_get_data (GTK_OBJECT (menuitem), "gtk-context-id"); const gchar *id = g_object_get_data (G_OBJECT (menuitem), "gtk-context-id");
gtk_im_context_reset (GTK_IM_CONTEXT (context)); gtk_im_context_reset (GTK_IM_CONTEXT (context));
@ -489,12 +488,12 @@ gtk_im_multicontext_append_menuitems (GtkIMMulticontext *context,
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem), gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem),
TRUE); TRUE);
group = gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (menuitem)); group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem));
gtk_object_set_data (GTK_OBJECT (menuitem), "gtk-context-id", g_object_set_data (G_OBJECT (menuitem), "gtk-context-id",
(char *)contexts[i]->context_id); (char *)contexts[i]->context_id);
gtk_signal_connect (GTK_OBJECT (menuitem), "activate", g_signal_connect (menuitem, "activate",
G_CALLBACK (activate_cb), context); G_CALLBACK (activate_cb), context);
gtk_widget_show (menuitem); gtk_widget_show (menuitem);
gtk_menu_shell_append (menushell, menuitem); gtk_menu_shell_append (menushell, menuitem);

View File

@ -29,11 +29,11 @@ extern "C" {
#define GTK_TYPE_IM_MULTICONTEXT (gtk_im_multicontext_get_type ()) #define GTK_TYPE_IM_MULTICONTEXT (gtk_im_multicontext_get_type ())
#define GTK_IM_MULTICONTEXT(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontext)) #define GTK_IM_MULTICONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontext))
#define GTK_IM_MULTICONTEXT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontextClass)) #define GTK_IM_MULTICONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontextClass))
#define GTK_IS_IM_MULTICONTEXT(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_IM_MULTICONTEXT)) #define GTK_IS_IM_MULTICONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IM_MULTICONTEXT))
#define GTK_IS_IM_MULTICONTEXT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_MULTICONTEXT)) #define GTK_IS_IM_MULTICONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_MULTICONTEXT))
#define GTK_IM_MULTICONTEXT_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontextClass)) #define GTK_IM_MULTICONTEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_MULTICONTEXT, GtkIMMulticontextClass))
typedef struct _GtkIMMulticontext GtkIMMulticontext; typedef struct _GtkIMMulticontext GtkIMMulticontext;
@ -61,7 +61,7 @@ struct _GtkIMMulticontextClass
void (*_gtk_reserved4) (void); void (*_gtk_reserved4) (void);
}; };
GtkType gtk_im_multicontext_get_type (void) G_GNUC_CONST; GType gtk_im_multicontext_get_type (void) G_GNUC_CONST;
GtkIMContext *gtk_im_multicontext_new (void); GtkIMContext *gtk_im_multicontext_new (void);
void gtk_im_multicontext_append_menuitems (GtkIMMulticontext *context, void gtk_im_multicontext_append_menuitems (GtkIMMulticontext *context,

View File

@ -17,12 +17,12 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#include <string.h>
#include <gobject/gvaluecollector.h>
#include "gtktreemodel.h" #include "gtktreemodel.h"
#include "gtktreestore.h" #include "gtktreestore.h"
#include "gtktreedatalist.h" #include "gtktreedatalist.h"
#include "gtktreednd.h" #include "gtktreednd.h"
#include <string.h>
#include <gobject/gvaluecollector.h>
#define G_NODE(node) ((GNode *)node) #define G_NODE(node) ((GNode *)node)
#define GTK_TREE_STORE_IS_SORTED(tree) (GTK_TREE_STORE (tree)->sort_column_id != -2) #define GTK_TREE_STORE_IS_SORTED(tree) (GTK_TREE_STORE (tree)->sort_column_id != -2)
@ -126,7 +126,7 @@ validate_tree (GtkTreeStore *tree_store)
} }
} }
GtkType GType
gtk_tree_store_get_type (void) gtk_tree_store_get_type (void)
{ {
static GType tree_store_type = 0; static GType tree_store_type = 0;
@ -174,7 +174,8 @@ gtk_tree_store_get_type (void)
NULL NULL
}; };
tree_store_type = g_type_register_static (G_TYPE_OBJECT, "GtkTreeStore", &tree_store_info, 0); tree_store_type = g_type_register_static (G_TYPE_OBJECT, "GtkTreeStore",
&tree_store_info, 0);
g_type_add_interface_static (tree_store_type, g_type_add_interface_static (tree_store_type,
GTK_TYPE_TREE_MODEL, GTK_TYPE_TREE_MODEL,
@ -285,7 +286,7 @@ gtk_tree_store_new (gint n_columns,
g_return_val_if_fail (n_columns > 0, NULL); g_return_val_if_fail (n_columns > 0, NULL);
retval = GTK_TREE_STORE (g_object_new (GTK_TYPE_TREE_STORE, NULL)); retval = g_object_new (GTK_TYPE_TREE_STORE, NULL);
gtk_tree_store_set_n_columns (retval, n_columns); gtk_tree_store_set_n_columns (retval, n_columns);
va_start (args, n_columns); va_start (args, n_columns);
@ -295,8 +296,9 @@ gtk_tree_store_new (gint n_columns,
GType type = va_arg (args, GType); GType type = va_arg (args, GType);
if (! _gtk_tree_data_list_check_type (type)) if (! _gtk_tree_data_list_check_type (type))
{ {
g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n", G_STRLOC, g_type_name (type)); g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n",
g_object_unref (G_OBJECT (retval)); G_STRLOC, g_type_name (type));
g_object_unref (retval);
return NULL; return NULL;
} }
gtk_tree_store_set_column_type (retval, i, type); gtk_tree_store_set_column_type (retval, i, type);
@ -323,15 +325,16 @@ gtk_tree_store_newv (gint n_columns,
g_return_val_if_fail (n_columns > 0, NULL); g_return_val_if_fail (n_columns > 0, NULL);
retval = GTK_TREE_STORE (g_object_new (GTK_TYPE_TREE_STORE, NULL)); retval = g_object_new (GTK_TYPE_TREE_STORE, NULL);
gtk_tree_store_set_n_columns (retval, n_columns); gtk_tree_store_set_n_columns (retval, n_columns);
for (i = 0; i < n_columns; i++) for (i = 0; i < n_columns; i++)
{ {
if (! _gtk_tree_data_list_check_type (types[i])) if (! _gtk_tree_data_list_check_type (types[i]))
{ {
g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n", G_STRLOC, g_type_name (types[i])); g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n",
g_object_unref (G_OBJECT (retval)); G_STRLOC, g_type_name (types[i]));
g_object_unref (retval);
return NULL; return NULL;
} }
gtk_tree_store_set_column_type (retval, i, types[i]); gtk_tree_store_set_column_type (retval, i, types[i]);

View File

@ -29,11 +29,11 @@ extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
#define GTK_TYPE_TREE_STORE (gtk_tree_store_get_type ()) #define GTK_TYPE_TREE_STORE (gtk_tree_store_get_type ())
#define GTK_TREE_STORE(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_TREE_STORE, GtkTreeStore)) #define GTK_TREE_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_STORE, GtkTreeStore))
#define GTK_TREE_STORE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TREE_STORE, GtkTreeStoreClass)) #define GTK_TREE_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TREE_STORE, GtkTreeStoreClass))
#define GTK_IS_TREE_STORE(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_TREE_STORE)) #define GTK_IS_TREE_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_STORE))
#define GTK_IS_TREE_STORE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TREE_STORE)) #define GTK_IS_TREE_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TREE_STORE))
#define GTK_TREE_STORE_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TREE_STORE, GtkTreeStoreClass)) #define GTK_TREE_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TREE_STORE, GtkTreeStoreClass))
typedef struct _GtkTreeStore GtkTreeStore; typedef struct _GtkTreeStore GtkTreeStore;
typedef struct _GtkTreeStoreClass GtkTreeStoreClass; typedef struct _GtkTreeStoreClass GtkTreeStoreClass;
@ -68,7 +68,7 @@ struct _GtkTreeStoreClass
}; };
GtkType gtk_tree_store_get_type (void); GType gtk_tree_store_get_type (void);
GtkTreeStore *gtk_tree_store_new (gint n_columns, GtkTreeStore *gtk_tree_store_new (gint n_columns,
...); ...);
GtkTreeStore *gtk_tree_store_newv (gint n_columns, GtkTreeStore *gtk_tree_store_newv (gint n_columns,