summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorHideToshi Tajima <tajima@happy>2001-03-16 01:44:54 +0000
committerHidetoshi Tajima <tajima@src.gnome.org>2001-03-16 01:44:54 +0000
commitdf726ee8889e975ad4ee3143e0e8462c775244a1 (patch)
tree8e200ffc98f89c509922a531921108cb9489360f /gtk
parente4d1660042a437b041422ac442ee4845fbf7e6b6 (diff)
downloadgtk+-df726ee8889e975ad4ee3143e0e8462c775244a1.tar.gz
rename set_cursor_pos to set_cursor_location in GtkInputContext class
2001-03-15 HideToshi Tajima <tajima@happy> * modules/input/gtkimcontextxim.c (gtk_im_context_xim_set_cursor_locat ion): * gtk/gtkimmulticontext.c (gtk_im_multicontext_set_cursor_location): * gtk/gtkentry.c (update_im_cursor_location): * gtk/gtkimcontext.c (gtk_im_context_set_cursor_location): * gtk/gtkimcontext.h (struct _GtkIMContextClass): rename set_cursor_pos to set_cursor_location in GtkInputContext class
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkentry.c6
-rw-r--r--gtk/gtkimcontext.c10
-rw-r--r--gtk/gtkimcontext.h8
-rw-r--r--gtk/gtkimmulticontext.c10
4 files changed, 17 insertions, 17 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index ea91dfdbe8..88fd888594 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -2030,7 +2030,7 @@ gtk_entry_reset_layout (GtkEntry *entry)
}
static void
-update_im_cursor_position (GtkEntry *entry)
+update_im_cursor_location (GtkEntry *entry)
{
GdkRectangle area;
gint strong_x;
@@ -2055,7 +2055,7 @@ update_im_cursor_position (GtkEntry *entry)
area.width = area_width;
area.height = area_height;
- gtk_im_context_set_cursor_pos (entry->im_context, &area);
+ gtk_im_context_set_cursor_location (entry->im_context, &area);
}
static gboolean
@@ -2068,7 +2068,7 @@ recompute_idle_func (gpointer data)
entry->recompute_idle = FALSE;
- update_im_cursor_position (entry);
+ update_im_cursor_location (entry);
return FALSE;
}
diff --git a/gtk/gtkimcontext.c b/gtk/gtkimcontext.c
index bbb858d744..3e4e3c8439 100644
--- a/gtk/gtkimcontext.c
+++ b/gtk/gtkimcontext.c
@@ -285,15 +285,15 @@ gtk_im_context_reset (GtkIMContext *context)
/**
- * gtk_im_context_set_cursor_pos:
+ * gtk_im_context_set_cursor_location:
* @context: a #GtkIMContext
*
* Notify the input method that a change in cursor
* position has been made.
**/
void
-gtk_im_context_set_cursor_pos (GtkIMContext *context,
- GdkRectangle *area)
+gtk_im_context_set_cursor_location (GtkIMContext *context,
+ GdkRectangle *area)
{
GtkIMContextClass *klass;
@@ -301,7 +301,7 @@ gtk_im_context_set_cursor_pos (GtkIMContext *context,
g_return_if_fail (GTK_IS_IM_CONTEXT (context));
klass = GTK_IM_CONTEXT_GET_CLASS (context);
- if (klass->set_cursor_pos)
- klass->set_cursor_pos (context, area);
+ if (klass->set_cursor_location)
+ klass->set_cursor_location (context, area);
}
diff --git a/gtk/gtkimcontext.h b/gtk/gtkimcontext.h
index b3067ebd2d..3f8ea707f9 100644
--- a/gtk/gtkimcontext.h
+++ b/gtk/gtkimcontext.h
@@ -67,8 +67,8 @@ struct _GtkIMContextClass
void (*focus_in) (GtkIMContext *context);
void (*focus_out) (GtkIMContext *context);
void (*reset) (GtkIMContext *context);
- void (*set_cursor_pos) (GtkIMContext *context,
- GdkRectangle *area);
+ void (*set_cursor_location) (GtkIMContext *context,
+ GdkRectangle *area);
};
GtkType gtk_im_context_get_type (void) G_GNUC_CONST;
@@ -84,8 +84,8 @@ gboolean gtk_im_context_filter_keypress (GtkIMContext *context,
void gtk_im_context_focus_in (GtkIMContext *context);
void gtk_im_context_focus_out (GtkIMContext *context);
void gtk_im_context_reset (GtkIMContext *context);
-void gtk_im_context_set_cursor_pos (GtkIMContext *context,
- GdkRectangle *area);
+void gtk_im_context_set_cursor_location (GtkIMContext *context,
+ GdkRectangle *area);
#ifdef __cplusplus
}
diff --git a/gtk/gtkimmulticontext.c b/gtk/gtkimmulticontext.c
index fc40b5f1fb..3eeedcc4e5 100644
--- a/gtk/gtkimmulticontext.c
+++ b/gtk/gtkimmulticontext.c
@@ -48,7 +48,7 @@ static gboolean gtk_im_multicontext_filter_keypress (GtkIMContext
static void gtk_im_multicontext_focus_in (GtkIMContext *context);
static void gtk_im_multicontext_focus_out (GtkIMContext *context);
static void gtk_im_multicontext_reset (GtkIMContext *context);
-static void gtk_im_multicontext_set_cursor_pos (GtkIMContext *context,
+static void gtk_im_multicontext_set_cursor_location (GtkIMContext *context,
GdkRectangle *area);
void gtk_im_multicontext_preedit_start_cb (GtkIMContext *slave,
@@ -104,7 +104,7 @@ gtk_im_multicontext_class_init (GtkIMMulticontextClass *class)
im_context_class->focus_in = gtk_im_multicontext_focus_in;
im_context_class->focus_out = gtk_im_multicontext_focus_out;
im_context_class->reset = gtk_im_multicontext_reset;
- im_context_class->set_cursor_pos = gtk_im_multicontext_set_cursor_pos;
+ im_context_class->set_cursor_location = gtk_im_multicontext_set_cursor_location;
gobject_class->finalize = gtk_im_multicontext_finalize;
}
@@ -275,14 +275,14 @@ gtk_im_multicontext_reset (GtkIMContext *context)
}
static void
-gtk_im_multicontext_set_cursor_pos (GtkIMContext *context,
- GdkRectangle *area)
+gtk_im_multicontext_set_cursor_location (GtkIMContext *context,
+ GdkRectangle *area)
{
GtkIMMulticontext *multicontext = GTK_IM_MULTICONTEXT (context);
GtkIMContext *slave = gtk_im_multicontext_get_slave (multicontext);
if (slave)
- gtk_im_context_set_cursor_pos (slave, area);
+ gtk_im_context_set_cursor_location (slave, area);
}
void