]> Pileus Git - ~andy/gtk/blob - gtk/gtkentry.c
a7c73d60f56970c59797e08129286ce127be0942
[~andy/gtk] / gtk / gtkentry.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* GTK - The GIMP Toolkit
3  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4  * Copyright (C) 2004-2006 Christian Hammond
5  * Copyright (C) 2008 Cody Russell
6  * Copyright (C) 2008 Red Hat, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 /*
25  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
26  * file for a list of people on the GTK+ Team.  See the ChangeLog
27  * files for a list of changes.  These files are distributed with
28  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
29  */
30
31 #include "config.h"
32
33 #include <math.h>
34 #include <string.h>
35
36 #include "gtkalignment.h"
37 #include "gtkbindings.h"
38 #include "gtkcelleditable.h"
39 #include "gtkclipboard.h"
40 #include "gtkdnd.h"
41 #include "gtkentry.h"
42 #include "gtkentrybuffer.h"
43 #include "gtkimagemenuitem.h"
44 #include "gtkimcontextsimple.h"
45 #include "gtkimmulticontext.h"
46 #include "gtkintl.h"
47 #include "gtklabel.h"
48 #include "gtkmain.h"
49 #include "gtkmarshalers.h"
50 #include "gtkmenu.h"
51 #include "gtkmenuitem.h"
52 #include "gtkseparatormenuitem.h"
53 #include "gtkselection.h"
54 #include "gtksettings.h"
55 #include "gtkspinbutton.h"
56 #include "gtkstock.h"
57 #include "gtktextutil.h"
58 #include "gtkwindow.h"
59 #include "gtktreeview.h"
60 #include "gtktreeselection.h"
61 #include "gtktypebuiltins.h"
62 #include "gtkprivate.h"
63 #include "gtkentryprivate.h"
64 #include "gtkcelllayout.h"
65 #include "gtktooltip.h"
66 #include "gtkiconfactory.h"
67 #include "gtkicontheme.h"
68 #include "gtkwidgetprivate.h"
69 #include "gtkstylecontextprivate.h"
70
71 /**
72  * SECTION:gtkentry
73  * @Short_description: A single line text entry field
74  * @Title: GtkEntry
75  * @See_also: #GtkTextView, #GtkEntryCompletion
76  *
77  * The #GtkEntry widget is a single line text entry
78  * widget. A fairly large set of key bindings are supported
79  * by default. If the entered text is longer than the allocation
80  * of the widget, the widget will scroll so that the cursor
81  * position is visible.
82  *
83  * When using an entry for passwords and other sensitive information,
84  * it can be put into "password mode" using gtk_entry_set_visibility().
85  * In this mode, entered text is displayed using a 'invisible' character.
86  * By default, GTK+ picks the best invisible character that is available
87  * in the current font, but it can be changed with
88  * gtk_entry_set_invisible_char(). Since 2.16, GTK+ displays a warning
89  * when Caps Lock or input methods might interfere with entering text in
90  * a password entry. The warning can be turned off with the
91  * #GtkEntry:caps-lock-warning property.
92  *
93  * Since 2.16, GtkEntry has the ability to display progress or activity
94  * information behind the text. To make an entry display such information,
95  * use gtk_entry_set_progress_fraction() or gtk_entry_set_progress_pulse_step().
96  *
97  * Additionally, GtkEntry can show icons at either side of the entry. These
98  * icons can be activatable by clicking, can be set up as drag source and
99  * can have tooltips. To add an icon, use gtk_entry_set_icon_from_gicon() or
100  * one of the various other functions that set an icon from a stock id, an
101  * icon name or a pixbuf. To trigger an action when the user clicks an icon,
102  * connect to the #GtkEntry::icon-press signal. To allow DND operations
103  * from an icon, use gtk_entry_set_icon_drag_source(). To set a tooltip on
104  * an icon, use gtk_entry_set_icon_tooltip_text() or the corresponding function
105  * for markup.
106  *
107  * Note that functionality or information that is only available by clicking
108  * on an icon in an entry may not be accessible at all to users which are not
109  * able to use a mouse or other pointing device. It is therefore recommended
110  * that any such functionality should also be available by other means, e.g.
111  * via the context menu of the entry.
112  */
113
114
115 #define GTK_ENTRY_COMPLETION_KEY "gtk-entry-completion-key"
116
117 #define MIN_ENTRY_WIDTH  150
118 #define DRAW_TIMEOUT     20
119 #define COMPLETION_TIMEOUT 300
120 #define PASSWORD_HINT_MAX 8
121
122 #define MAX_ICONS 2
123
124 #define IS_VALID_ICON_POSITION(pos)               \
125   ((pos) == GTK_ENTRY_ICON_PRIMARY ||                   \
126    (pos) == GTK_ENTRY_ICON_SECONDARY)
127
128 static const GtkBorder default_inner_border = { 2, 2, 2, 2 };
129 static GQuark          quark_inner_border   = 0;
130 static GQuark          quark_password_hint  = 0;
131 static GQuark          quark_cursor_hadjustment = 0;
132 static GQuark          quark_capslock_feedback = 0;
133
134 typedef struct _EntryIconInfo EntryIconInfo;
135 typedef struct _GtkEntryPasswordHint GtkEntryPasswordHint;
136 typedef struct _GtkEntryCapslockFeedback GtkEntryCapslockFeedback;
137
138 struct _GtkEntryPrivate
139 {
140   EntryIconInfo         *icons[MAX_ICONS];
141
142   GtkEntryBuffer        *buffer;
143   GtkIMContext          *im_context;
144   GtkShadowType          shadow_type;
145   GtkWidget             *popup_menu;
146
147   GdkDevice             *completion_device;
148   GdkWindow             *text_area;
149
150   PangoLayout           *cached_layout;
151
152   gchar        *im_module;
153
154   gdouble       progress_fraction;
155   gdouble       progress_pulse_fraction;
156   gdouble       progress_pulse_current;
157
158   gchar        *placeholder_text;
159
160   gfloat        xalign;
161
162   gint          ascent;                     /* font ascent in pango units  */
163   gint          current_pos;
164   gint          descent;                    /* font descent in pango units */
165   gint          dnd_position;               /* In chars, -1 == no DND cursor */
166   gint          drag_start_x;
167   gint          drag_start_y;
168   gint          focus_width;
169   gint          icon_margin;
170   gint          insert_pos;
171   gint          selection_bound;
172   gint          scroll_offset;
173   gint          start_x;
174   gint          start_y;
175   gint          width_chars;
176
177   gunichar      invisible_char;
178
179   guint         button;
180   guint         blink_time;                  /* time in msec the cursor has blinked since last user event */
181   guint         blink_timeout;
182   guint         recompute_idle;
183
184   guint16       x_text_size;                 /* allocated size, in bytes */
185   guint16       x_n_bytes;                   /* length in use, in bytes */
186
187   guint16       preedit_length;              /* length of preedit string, in bytes */
188   guint16       preedit_cursor;              /* offset of cursor within preedit string, in chars */
189
190   guint         editable                : 1;
191   guint         in_drag                 : 1;
192   guint         overwrite_mode          : 1;
193   guint         visible                 : 1;
194
195   guint         activates_default       : 1;
196   guint         cache_includes_preedit  : 1;
197   guint         caps_lock_warning       : 1;
198   guint         caps_lock_warning_shown : 1;
199   guint         change_count            : 8;
200   guint         cursor_visible          : 1;
201   guint         editing_canceled        : 1; /* Only used by GtkCellRendererText */
202   guint         has_frame               : 1;
203   guint         in_click                : 1; /* Flag so we don't select all when clicking in entry to focus in */
204   guint         is_cell_renderer        : 1;
205   guint         invisible_char_set      : 1;
206   guint         interior_focus          : 1;
207   guint         mouse_cursor_obscured   : 1;
208   guint         need_im_reset           : 1;
209   guint         progress_pulse_mode     : 1;
210   guint         progress_pulse_way_back : 1;
211   guint         real_changed            : 1;
212   guint         resolved_dir            : 4; /* PangoDirection */
213   guint         select_words            : 1;
214   guint         select_lines            : 1;
215   guint         truncate_multiline      : 1;
216 };
217
218 struct _EntryIconInfo
219 {
220   GdkWindow *window;
221   gchar *tooltip;
222   guint insensitive    : 1;
223   guint nonactivatable : 1;
224   guint prelight       : 1;
225   guint in_drag        : 1;
226   guint pressed        : 1;
227
228   GtkImageType  storage_type;
229   GdkPixbuf    *pixbuf;
230   gchar        *stock_id;
231   gchar        *icon_name;
232   GIcon        *gicon;
233
234   GtkTargetList *target_list;
235   GdkDragAction actions;
236 };
237
238 struct _GtkEntryPasswordHint
239 {
240   gint position;      /* Position (in text) of the last password hint */
241   guint source_id;    /* Timeout source id */
242 };
243
244 struct _GtkEntryCapslockFeedback
245 {
246   GtkWidget *entry;
247   GtkWidget *window;
248   GtkWidget *label;
249 };
250
251 enum {
252   ACTIVATE,
253   POPULATE_POPUP,
254   MOVE_CURSOR,
255   INSERT_AT_CURSOR,
256   DELETE_FROM_CURSOR,
257   BACKSPACE,
258   CUT_CLIPBOARD,
259   COPY_CLIPBOARD,
260   PASTE_CLIPBOARD,
261   TOGGLE_OVERWRITE,
262   ICON_PRESS,
263   ICON_RELEASE,
264   PREEDIT_CHANGED,
265   LAST_SIGNAL
266 };
267
268 enum {
269   PROP_0,
270   PROP_BUFFER,
271   PROP_CURSOR_POSITION,
272   PROP_SELECTION_BOUND,
273   PROP_EDITABLE,
274   PROP_MAX_LENGTH,
275   PROP_VISIBILITY,
276   PROP_HAS_FRAME,
277   PROP_INNER_BORDER,
278   PROP_INVISIBLE_CHAR,
279   PROP_ACTIVATES_DEFAULT,
280   PROP_WIDTH_CHARS,
281   PROP_SCROLL_OFFSET,
282   PROP_TEXT,
283   PROP_XALIGN,
284   PROP_TRUNCATE_MULTILINE,
285   PROP_SHADOW_TYPE,
286   PROP_OVERWRITE_MODE,
287   PROP_TEXT_LENGTH,
288   PROP_INVISIBLE_CHAR_SET,
289   PROP_CAPS_LOCK_WARNING,
290   PROP_PROGRESS_FRACTION,
291   PROP_PROGRESS_PULSE_STEP,
292   PROP_PIXBUF_PRIMARY,
293   PROP_PIXBUF_SECONDARY,
294   PROP_STOCK_PRIMARY,
295   PROP_STOCK_SECONDARY,
296   PROP_ICON_NAME_PRIMARY,
297   PROP_ICON_NAME_SECONDARY,
298   PROP_GICON_PRIMARY,
299   PROP_GICON_SECONDARY,
300   PROP_STORAGE_TYPE_PRIMARY,
301   PROP_STORAGE_TYPE_SECONDARY,
302   PROP_ACTIVATABLE_PRIMARY,
303   PROP_ACTIVATABLE_SECONDARY,
304   PROP_SENSITIVE_PRIMARY,
305   PROP_SENSITIVE_SECONDARY,
306   PROP_TOOLTIP_TEXT_PRIMARY,
307   PROP_TOOLTIP_TEXT_SECONDARY,
308   PROP_TOOLTIP_MARKUP_PRIMARY,
309   PROP_TOOLTIP_MARKUP_SECONDARY,
310   PROP_IM_MODULE,
311   PROP_EDITING_CANCELED,
312   PROP_PLACEHOLDER_TEXT,
313   PROP_COMPLETION
314 };
315
316 static guint signals[LAST_SIGNAL] = { 0 };
317
318 typedef enum {
319   CURSOR_STANDARD,
320   CURSOR_DND
321 } CursorType;
322
323 typedef enum
324 {
325   DISPLAY_NORMAL,       /* The entry text is being shown */
326   DISPLAY_INVISIBLE,    /* In invisible mode, text replaced by (eg) bullets */
327   DISPLAY_BLANK         /* In invisible mode, nothing shown at all */
328 } DisplayMode;
329
330 /* GObject methods
331  */
332 static void   gtk_entry_editable_init        (GtkEditableInterface *iface);
333 static void   gtk_entry_cell_editable_init   (GtkCellEditableIface *iface);
334 static void   gtk_entry_set_property         (GObject          *object,
335                                               guint             prop_id,
336                                               const GValue     *value,
337                                               GParamSpec       *pspec);
338 static void   gtk_entry_get_property         (GObject          *object,
339                                               guint             prop_id,
340                                               GValue           *value,
341                                               GParamSpec       *pspec);
342 static void   gtk_entry_finalize             (GObject          *object);
343 static void   gtk_entry_dispose              (GObject          *object);
344
345 /* GtkWidget methods
346  */
347 static void   gtk_entry_destroy              (GtkWidget        *widget);
348 static void   gtk_entry_realize              (GtkWidget        *widget);
349 static void   gtk_entry_unrealize            (GtkWidget        *widget);
350 static void   gtk_entry_map                  (GtkWidget        *widget);
351 static void   gtk_entry_unmap                (GtkWidget        *widget);
352 static void   gtk_entry_get_preferred_width  (GtkWidget        *widget,
353                                               gint             *minimum,
354                                               gint             *natural);
355 static void   gtk_entry_get_preferred_height (GtkWidget        *widget,
356                                               gint             *minimum,
357                                               gint             *natural);
358 static void   gtk_entry_size_allocate        (GtkWidget        *widget,
359                                               GtkAllocation    *allocation);
360 static void   gtk_entry_draw_frame           (GtkWidget        *widget,
361                                               GtkStyleContext  *context,
362                                               cairo_t          *cr);
363 static void   gtk_entry_draw_progress        (GtkWidget        *widget,
364                                               GtkStyleContext  *context,
365                                               cairo_t          *cr);
366 static gint   gtk_entry_draw                 (GtkWidget        *widget,
367                                               cairo_t          *cr);
368 static gint   gtk_entry_button_press         (GtkWidget        *widget,
369                                               GdkEventButton   *event);
370 static gint   gtk_entry_button_release       (GtkWidget        *widget,
371                                               GdkEventButton   *event);
372 static gint   gtk_entry_enter_notify         (GtkWidget        *widget,
373                                               GdkEventCrossing *event);
374 static gint   gtk_entry_leave_notify         (GtkWidget        *widget,
375                                               GdkEventCrossing *event);
376 static gint   gtk_entry_motion_notify        (GtkWidget        *widget,
377                                               GdkEventMotion   *event);
378 static gint   gtk_entry_key_press            (GtkWidget        *widget,
379                                               GdkEventKey      *event);
380 static gint   gtk_entry_key_release          (GtkWidget        *widget,
381                                               GdkEventKey      *event);
382 static gint   gtk_entry_focus_in             (GtkWidget        *widget,
383                                               GdkEventFocus    *event);
384 static gint   gtk_entry_focus_out            (GtkWidget        *widget,
385                                               GdkEventFocus    *event);
386 static void   gtk_entry_grab_focus           (GtkWidget        *widget);
387 static void   gtk_entry_style_updated        (GtkWidget        *widget);
388 static gboolean gtk_entry_query_tooltip      (GtkWidget        *widget,
389                                               gint              x,
390                                               gint              y,
391                                               gboolean          keyboard_tip,
392                                               GtkTooltip       *tooltip);
393 static void   gtk_entry_direction_changed    (GtkWidget        *widget,
394                                               GtkTextDirection  previous_dir);
395 static void   gtk_entry_state_flags_changed  (GtkWidget        *widget,
396                                               GtkStateFlags     previous_state);
397 static void   gtk_entry_screen_changed       (GtkWidget        *widget,
398                                               GdkScreen        *old_screen);
399
400 static gboolean gtk_entry_drag_drop          (GtkWidget        *widget,
401                                               GdkDragContext   *context,
402                                               gint              x,
403                                               gint              y,
404                                               guint             time);
405 static gboolean gtk_entry_drag_motion        (GtkWidget        *widget,
406                                               GdkDragContext   *context,
407                                               gint              x,
408                                               gint              y,
409                                               guint             time);
410 static void     gtk_entry_drag_leave         (GtkWidget        *widget,
411                                               GdkDragContext   *context,
412                                               guint             time);
413 static void     gtk_entry_drag_data_received (GtkWidget        *widget,
414                                               GdkDragContext   *context,
415                                               gint              x,
416                                               gint              y,
417                                               GtkSelectionData *selection_data,
418                                               guint             info,
419                                               guint             time);
420 static void     gtk_entry_drag_data_get      (GtkWidget        *widget,
421                                               GdkDragContext   *context,
422                                               GtkSelectionData *selection_data,
423                                               guint             info,
424                                               guint             time);
425 static void     gtk_entry_drag_data_delete   (GtkWidget        *widget,
426                                               GdkDragContext   *context);
427 static void     gtk_entry_drag_begin         (GtkWidget        *widget,
428                                               GdkDragContext   *context);
429 static void     gtk_entry_drag_end           (GtkWidget        *widget,
430                                               GdkDragContext   *context);
431
432
433 /* GtkEditable method implementations
434  */
435 static void     gtk_entry_insert_text          (GtkEditable *editable,
436                                                 const gchar *new_text,
437                                                 gint         new_text_length,
438                                                 gint        *position);
439 static void     gtk_entry_delete_text          (GtkEditable *editable,
440                                                 gint         start_pos,
441                                                 gint         end_pos);
442 static gchar *  gtk_entry_get_chars            (GtkEditable *editable,
443                                                 gint         start_pos,
444                                                 gint         end_pos);
445 static void     gtk_entry_real_set_position    (GtkEditable *editable,
446                                                 gint         position);
447 static gint     gtk_entry_get_position         (GtkEditable *editable);
448 static void     gtk_entry_set_selection_bounds (GtkEditable *editable,
449                                                 gint         start,
450                                                 gint         end);
451 static gboolean gtk_entry_get_selection_bounds (GtkEditable *editable,
452                                                 gint        *start,
453                                                 gint        *end);
454
455 /* GtkCellEditable method implementations
456  */
457 static void gtk_entry_start_editing (GtkCellEditable *cell_editable,
458                                      GdkEvent        *event);
459
460 /* Default signal handlers
461  */
462 static void gtk_entry_real_insert_text   (GtkEditable     *editable,
463                                           const gchar     *new_text,
464                                           gint             new_text_length,
465                                           gint            *position);
466 static void gtk_entry_real_delete_text   (GtkEditable     *editable,
467                                           gint             start_pos,
468                                           gint             end_pos);
469 static void gtk_entry_move_cursor        (GtkEntry        *entry,
470                                           GtkMovementStep  step,
471                                           gint             count,
472                                           gboolean         extend_selection);
473 static void gtk_entry_insert_at_cursor   (GtkEntry        *entry,
474                                           const gchar     *str);
475 static void gtk_entry_delete_from_cursor (GtkEntry        *entry,
476                                           GtkDeleteType    type,
477                                           gint             count);
478 static void gtk_entry_backspace          (GtkEntry        *entry);
479 static void gtk_entry_cut_clipboard      (GtkEntry        *entry);
480 static void gtk_entry_copy_clipboard     (GtkEntry        *entry);
481 static void gtk_entry_paste_clipboard    (GtkEntry        *entry);
482 static void gtk_entry_toggle_overwrite   (GtkEntry        *entry);
483 static void gtk_entry_select_all         (GtkEntry        *entry);
484 static void gtk_entry_real_activate      (GtkEntry        *entry);
485 static gboolean gtk_entry_popup_menu     (GtkWidget       *widget);
486
487 static void keymap_direction_changed     (GdkKeymap       *keymap,
488                                           GtkEntry        *entry);
489 static void keymap_state_changed         (GdkKeymap       *keymap,
490                                           GtkEntry        *entry);
491 static void remove_capslock_feedback     (GtkEntry        *entry);
492
493 /* IM Context Callbacks
494  */
495 static void     gtk_entry_commit_cb               (GtkIMContext *context,
496                                                    const gchar  *str,
497                                                    GtkEntry     *entry);
498 static void     gtk_entry_preedit_changed_cb      (GtkIMContext *context,
499                                                    GtkEntry     *entry);
500 static gboolean gtk_entry_retrieve_surrounding_cb (GtkIMContext *context,
501                                                    GtkEntry     *entry);
502 static gboolean gtk_entry_delete_surrounding_cb   (GtkIMContext *context,
503                                                    gint          offset,
504                                                    gint          n_chars,
505                                                    GtkEntry     *entry);
506
507 /* Internal routines
508  */
509 static void         gtk_entry_enter_text               (GtkEntry       *entry,
510                                                         const gchar    *str);
511 static void         gtk_entry_set_positions            (GtkEntry       *entry,
512                                                         gint            current_pos,
513                                                         gint            selection_bound);
514 static void         gtk_entry_draw_text                (GtkEntry       *entry,
515                                                         cairo_t        *cr);
516 static void         gtk_entry_draw_cursor              (GtkEntry       *entry,
517                                                         cairo_t        *cr,
518                                                         CursorType      type);
519 static PangoLayout *gtk_entry_ensure_layout            (GtkEntry       *entry,
520                                                         gboolean        include_preedit);
521 static void         gtk_entry_reset_layout             (GtkEntry       *entry);
522 static void         gtk_entry_recompute                (GtkEntry       *entry);
523 static gint         gtk_entry_find_position            (GtkEntry       *entry,
524                                                         gint            x);
525 static void         gtk_entry_get_cursor_locations     (GtkEntry       *entry,
526                                                         CursorType      type,
527                                                         gint           *strong_x,
528                                                         gint           *weak_x);
529 static void         gtk_entry_adjust_scroll            (GtkEntry       *entry);
530 static gint         gtk_entry_move_visually            (GtkEntry       *editable,
531                                                         gint            start,
532                                                         gint            count);
533 static gint         gtk_entry_move_logically           (GtkEntry       *entry,
534                                                         gint            start,
535                                                         gint            count);
536 static gint         gtk_entry_move_forward_word        (GtkEntry       *entry,
537                                                         gint            start,
538                                                         gboolean        allow_whitespace);
539 static gint         gtk_entry_move_backward_word       (GtkEntry       *entry,
540                                                         gint            start,
541                                                         gboolean        allow_whitespace);
542 static void         gtk_entry_delete_whitespace        (GtkEntry       *entry);
543 static void         gtk_entry_select_word              (GtkEntry       *entry);
544 static void         gtk_entry_select_line              (GtkEntry       *entry);
545 static void         gtk_entry_paste                    (GtkEntry       *entry,
546                                                         GdkAtom         selection);
547 static void         gtk_entry_update_primary_selection (GtkEntry       *entry);
548 static void         gtk_entry_do_popup                 (GtkEntry       *entry,
549                                                         GdkEventButton *event);
550 static gboolean     gtk_entry_mnemonic_activate        (GtkWidget      *widget,
551                                                         gboolean        group_cycling);
552 static void         gtk_entry_check_cursor_blink       (GtkEntry       *entry);
553 static void         gtk_entry_pend_cursor_blink        (GtkEntry       *entry);
554 static void         gtk_entry_reset_blink_time         (GtkEntry       *entry);
555 static void         gtk_entry_get_text_area_size       (GtkEntry       *entry,
556                                                         gint           *x,
557                                                         gint           *y,
558                                                         gint           *width,
559                                                         gint           *height);
560 static void         get_text_area_size                 (GtkEntry       *entry,
561                                                         gint           *x,
562                                                         gint           *y,
563                                                         gint           *width,
564                                                         gint           *height);
565 static void         get_frame_size                     (GtkEntry       *entry,
566                                                         gboolean        relative_to_window,
567                                                         gint           *x,
568                                                         gint           *y,
569                                                         gint           *width,
570                                                         gint           *height);
571 static void         gtk_entry_move_adjustments         (GtkEntry             *entry);
572 static void         gtk_entry_ensure_pixbuf            (GtkEntry             *entry,
573                                                         GtkEntryIconPosition  icon_pos);
574
575
576 /* Completion */
577 static gint         gtk_entry_completion_timeout       (gpointer            data);
578 static gboolean     gtk_entry_completion_key_press     (GtkWidget          *widget,
579                                                         GdkEventKey        *event,
580                                                         gpointer            user_data);
581 static void         gtk_entry_completion_changed       (GtkWidget          *entry,
582                                                         gpointer            user_data);
583 static gboolean     check_completion_callback          (GtkEntryCompletion *completion);
584 static void         clear_completion_callback          (GtkEntry           *entry,
585                                                         GParamSpec         *pspec);
586 static gboolean     accept_completion_callback         (GtkEntry           *entry);
587 static void         completion_insert_text_callback    (GtkEntry           *entry,
588                                                         const gchar        *text,
589                                                         gint                length,
590                                                         gint                position,
591                                                         GtkEntryCompletion *completion);
592 static void         completion_changed                 (GtkEntryCompletion *completion,
593                                                         GParamSpec         *pspec,
594                                                         gpointer            data);
595 static void         disconnect_completion_signals      (GtkEntry           *entry,
596                                                         GtkEntryCompletion *completion);
597 static void         connect_completion_signals         (GtkEntry           *entry,
598                                                         GtkEntryCompletion *completion);
599
600 static void         begin_change                       (GtkEntry *entry);
601 static void         end_change                         (GtkEntry *entry);
602 static void         emit_changed                       (GtkEntry *entry);
603
604 static void         buffer_inserted_text               (GtkEntryBuffer *buffer, 
605                                                         guint           position,
606                                                         const gchar    *chars,
607                                                         guint           n_chars,
608                                                         GtkEntry       *entry);
609 static void         buffer_deleted_text                (GtkEntryBuffer *buffer, 
610                                                         guint           position,
611                                                         guint           n_chars,
612                                                         GtkEntry       *entry);
613 static void         buffer_notify_text                 (GtkEntryBuffer *buffer, 
614                                                         GParamSpec     *spec,
615                                                         GtkEntry       *entry);
616 static void         buffer_notify_length               (GtkEntryBuffer *buffer, 
617                                                         GParamSpec     *spec,
618                                                         GtkEntry       *entry);
619 static void         buffer_notify_max_length           (GtkEntryBuffer *buffer, 
620                                                         GParamSpec     *spec,
621                                                         GtkEntry       *entry);
622 static void         buffer_connect_signals             (GtkEntry       *entry);
623 static void         buffer_disconnect_signals          (GtkEntry       *entry);
624 static GtkEntryBuffer *get_buffer                      (GtkEntry       *entry);
625
626 G_DEFINE_TYPE_WITH_CODE (GtkEntry, gtk_entry, GTK_TYPE_WIDGET,
627                          G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
628                                                 gtk_entry_editable_init)
629                          G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_EDITABLE,
630                                                 gtk_entry_cell_editable_init))
631
632 static void
633 add_move_binding (GtkBindingSet  *binding_set,
634                   guint           keyval,
635                   guint           modmask,
636                   GtkMovementStep step,
637                   gint            count)
638 {
639   g_return_if_fail ((modmask & GDK_SHIFT_MASK) == 0);
640   
641   gtk_binding_entry_add_signal (binding_set, keyval, modmask,
642                                 "move-cursor", 3,
643                                 G_TYPE_ENUM, step,
644                                 G_TYPE_INT, count,
645                                 G_TYPE_BOOLEAN, FALSE);
646
647   /* Selection-extending version */
648   gtk_binding_entry_add_signal (binding_set, keyval, modmask | GDK_SHIFT_MASK,
649                                 "move-cursor", 3,
650                                 G_TYPE_ENUM, step,
651                                 G_TYPE_INT, count,
652                                 G_TYPE_BOOLEAN, TRUE);
653 }
654
655 static void
656 gtk_entry_class_init (GtkEntryClass *class)
657 {
658   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
659   GtkWidgetClass *widget_class;
660   GtkBindingSet *binding_set;
661
662   widget_class = (GtkWidgetClass*) class;
663
664   gobject_class->dispose = gtk_entry_dispose;
665   gobject_class->finalize = gtk_entry_finalize;
666   gobject_class->set_property = gtk_entry_set_property;
667   gobject_class->get_property = gtk_entry_get_property;
668
669   widget_class->destroy = gtk_entry_destroy;
670   widget_class->map = gtk_entry_map;
671   widget_class->unmap = gtk_entry_unmap;
672   widget_class->realize = gtk_entry_realize;
673   widget_class->unrealize = gtk_entry_unrealize;
674   widget_class->get_preferred_width = gtk_entry_get_preferred_width;
675   widget_class->get_preferred_height = gtk_entry_get_preferred_height;
676   widget_class->size_allocate = gtk_entry_size_allocate;
677   widget_class->draw = gtk_entry_draw;
678   widget_class->enter_notify_event = gtk_entry_enter_notify;
679   widget_class->leave_notify_event = gtk_entry_leave_notify;
680   widget_class->button_press_event = gtk_entry_button_press;
681   widget_class->button_release_event = gtk_entry_button_release;
682   widget_class->motion_notify_event = gtk_entry_motion_notify;
683   widget_class->key_press_event = gtk_entry_key_press;
684   widget_class->key_release_event = gtk_entry_key_release;
685   widget_class->focus_in_event = gtk_entry_focus_in;
686   widget_class->focus_out_event = gtk_entry_focus_out;
687   widget_class->grab_focus = gtk_entry_grab_focus;
688   widget_class->style_updated = gtk_entry_style_updated;
689   widget_class->query_tooltip = gtk_entry_query_tooltip;
690   widget_class->drag_begin = gtk_entry_drag_begin;
691   widget_class->drag_end = gtk_entry_drag_end;
692   widget_class->direction_changed = gtk_entry_direction_changed;
693   widget_class->state_flags_changed = gtk_entry_state_flags_changed;
694   widget_class->screen_changed = gtk_entry_screen_changed;
695   widget_class->mnemonic_activate = gtk_entry_mnemonic_activate;
696
697   widget_class->drag_drop = gtk_entry_drag_drop;
698   widget_class->drag_motion = gtk_entry_drag_motion;
699   widget_class->drag_leave = gtk_entry_drag_leave;
700   widget_class->drag_data_received = gtk_entry_drag_data_received;
701   widget_class->drag_data_get = gtk_entry_drag_data_get;
702   widget_class->drag_data_delete = gtk_entry_drag_data_delete;
703
704   widget_class->popup_menu = gtk_entry_popup_menu;
705
706   class->move_cursor = gtk_entry_move_cursor;
707   class->insert_at_cursor = gtk_entry_insert_at_cursor;
708   class->delete_from_cursor = gtk_entry_delete_from_cursor;
709   class->backspace = gtk_entry_backspace;
710   class->cut_clipboard = gtk_entry_cut_clipboard;
711   class->copy_clipboard = gtk_entry_copy_clipboard;
712   class->paste_clipboard = gtk_entry_paste_clipboard;
713   class->toggle_overwrite = gtk_entry_toggle_overwrite;
714   class->activate = gtk_entry_real_activate;
715   class->get_text_area_size = gtk_entry_get_text_area_size;
716   
717   quark_inner_border = g_quark_from_static_string ("gtk-entry-inner-border");
718   quark_password_hint = g_quark_from_static_string ("gtk-entry-password-hint");
719   quark_cursor_hadjustment = g_quark_from_static_string ("gtk-hadjustment");
720   quark_capslock_feedback = g_quark_from_static_string ("gtk-entry-capslock-feedback");
721
722   g_object_class_override_property (gobject_class,
723                                     PROP_EDITING_CANCELED,
724                                     "editing-canceled");
725
726   g_object_class_install_property (gobject_class,
727                                    PROP_BUFFER,
728                                    g_param_spec_object ("buffer",
729                                                         P_("Text Buffer"),
730                                                         P_("Text buffer object which actually stores entry text"),
731                                                         GTK_TYPE_ENTRY_BUFFER,
732                                                         GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
733
734   g_object_class_install_property (gobject_class,
735                                    PROP_CURSOR_POSITION,
736                                    g_param_spec_int ("cursor-position",
737                                                      P_("Cursor Position"),
738                                                      P_("The current position of the insertion cursor in chars"),
739                                                      0,
740                                                      GTK_ENTRY_BUFFER_MAX_SIZE,
741                                                      0,
742                                                      GTK_PARAM_READABLE));
743   
744   g_object_class_install_property (gobject_class,
745                                    PROP_SELECTION_BOUND,
746                                    g_param_spec_int ("selection-bound",
747                                                      P_("Selection Bound"),
748                                                      P_("The position of the opposite end of the selection from the cursor in chars"),
749                                                      0,
750                                                      GTK_ENTRY_BUFFER_MAX_SIZE,
751                                                      0,
752                                                      GTK_PARAM_READABLE));
753   
754   g_object_class_install_property (gobject_class,
755                                    PROP_EDITABLE,
756                                    g_param_spec_boolean ("editable",
757                                                          P_("Editable"),
758                                                          P_("Whether the entry contents can be edited"),
759                                                          TRUE,
760                                                          GTK_PARAM_READWRITE));
761   
762   g_object_class_install_property (gobject_class,
763                                    PROP_MAX_LENGTH,
764                                    g_param_spec_int ("max-length",
765                                                      P_("Maximum length"),
766                                                      P_("Maximum number of characters for this entry. Zero if no maximum"),
767                                                      0,
768                                                      GTK_ENTRY_BUFFER_MAX_SIZE,
769                                                      0,
770                                                      GTK_PARAM_READWRITE));
771   g_object_class_install_property (gobject_class,
772                                    PROP_VISIBILITY,
773                                    g_param_spec_boolean ("visibility",
774                                                          P_("Visibility"),
775                                                          P_("FALSE displays the \"invisible char\" instead of the actual text (password mode)"),
776                                                          TRUE,
777                                                          GTK_PARAM_READWRITE));
778
779   g_object_class_install_property (gobject_class,
780                                    PROP_HAS_FRAME,
781                                    g_param_spec_boolean ("has-frame",
782                                                          P_("Has Frame"),
783                                                          P_("FALSE removes outside bevel from entry"),
784                                                          TRUE,
785                                                          GTK_PARAM_READWRITE));
786
787   g_object_class_install_property (gobject_class,
788                                    PROP_INNER_BORDER,
789                                    g_param_spec_boxed ("inner-border",
790                                                        P_("Inner Border"),
791                                                        P_("Border between text and frame. Overrides the inner-border style property"),
792                                                        GTK_TYPE_BORDER,
793                                                        GTK_PARAM_READWRITE));
794
795   g_object_class_install_property (gobject_class,
796                                    PROP_INVISIBLE_CHAR,
797                                    g_param_spec_unichar ("invisible-char",
798                                                          P_("Invisible character"),
799                                                          P_("The character to use when masking entry contents (in \"password mode\")"),
800                                                          '*',
801                                                          GTK_PARAM_READWRITE));
802
803   g_object_class_install_property (gobject_class,
804                                    PROP_ACTIVATES_DEFAULT,
805                                    g_param_spec_boolean ("activates-default",
806                                                          P_("Activates default"),
807                                                          P_("Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed"),
808                                                          FALSE,
809                                                          GTK_PARAM_READWRITE));
810   g_object_class_install_property (gobject_class,
811                                    PROP_WIDTH_CHARS,
812                                    g_param_spec_int ("width-chars",
813                                                      P_("Width in chars"),
814                                                      P_("Number of characters to leave space for in the entry"),
815                                                      -1,
816                                                      G_MAXINT,
817                                                      -1,
818                                                      GTK_PARAM_READWRITE));
819
820   g_object_class_install_property (gobject_class,
821                                    PROP_SCROLL_OFFSET,
822                                    g_param_spec_int ("scroll-offset",
823                                                      P_("Scroll offset"),
824                                                      P_("Number of pixels of the entry scrolled off the screen to the left"),
825                                                      0,
826                                                      G_MAXINT,
827                                                      0,
828                                                      GTK_PARAM_READABLE));
829
830   g_object_class_install_property (gobject_class,
831                                    PROP_TEXT,
832                                    g_param_spec_string ("text",
833                                                         P_("Text"),
834                                                         P_("The contents of the entry"),
835                                                         "",
836                                                         GTK_PARAM_READWRITE));
837
838   /**
839    * GtkEntry:xalign:
840    *
841    * The horizontal alignment, from 0 (left) to 1 (right). 
842    * Reversed for RTL layouts.
843    * 
844    * Since: 2.4
845    */
846   g_object_class_install_property (gobject_class,
847                                    PROP_XALIGN,
848                                    g_param_spec_float ("xalign",
849                                                        P_("X align"),
850                                                        P_("The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts."),
851                                                        0.0,
852                                                        1.0,
853                                                        0.0,
854                                                        GTK_PARAM_READWRITE));
855
856   /**
857    * GtkEntry:truncate-multiline:
858    *
859    * When %TRUE, pasted multi-line text is truncated to the first line.
860    *
861    * Since: 2.10
862    */
863   g_object_class_install_property (gobject_class,
864                                    PROP_TRUNCATE_MULTILINE,
865                                    g_param_spec_boolean ("truncate-multiline",
866                                                          P_("Truncate multiline"),
867                                                          P_("Whether to truncate multiline pastes to one line."),
868                                                          FALSE,
869                                                          GTK_PARAM_READWRITE));
870
871   /**
872    * GtkEntry:shadow-type:
873    *
874    * Which kind of shadow to draw around the entry when 
875    * #GtkEntry:has-frame is set to %TRUE.
876    *
877    * Since: 2.12
878    */
879   g_object_class_install_property (gobject_class,
880                                    PROP_SHADOW_TYPE,
881                                    g_param_spec_enum ("shadow-type",
882                                                       P_("Shadow type"),
883                                                       P_("Which kind of shadow to draw around the entry when has-frame is set"),
884                                                       GTK_TYPE_SHADOW_TYPE,
885                                                       GTK_SHADOW_IN,
886                                                       GTK_PARAM_READWRITE));
887
888   /**
889    * GtkEntry:overwrite-mode:
890    *
891    * If text is overwritten when typing in the #GtkEntry.
892    *
893    * Since: 2.14
894    */
895   g_object_class_install_property (gobject_class,
896                                    PROP_OVERWRITE_MODE,
897                                    g_param_spec_boolean ("overwrite-mode",
898                                                          P_("Overwrite mode"),
899                                                          P_("Whether new text overwrites existing text"),
900                                                          FALSE,
901                                                          GTK_PARAM_READWRITE));
902
903   /**
904    * GtkEntry:text-length:
905    *
906    * The length of the text in the #GtkEntry.
907    *
908    * Since: 2.14
909    */
910   g_object_class_install_property (gobject_class,
911                                    PROP_TEXT_LENGTH,
912                                    g_param_spec_uint ("text-length",
913                                                       P_("Text length"),
914                                                       P_("Length of the text currently in the entry"),
915                                                       0, 
916                                                       G_MAXUINT16,
917                                                       0,
918                                                       GTK_PARAM_READABLE));
919   /**
920    * GtkEntry:invisible-char-set:
921    *
922    * Whether the invisible char has been set for the #GtkEntry.
923    *
924    * Since: 2.16
925    */
926   g_object_class_install_property (gobject_class,
927                                    PROP_INVISIBLE_CHAR_SET,
928                                    g_param_spec_boolean ("invisible-char-set",
929                                                          P_("Invisible character set"),
930                                                          P_("Whether the invisible character has been set"),
931                                                          FALSE,
932                                                          GTK_PARAM_READWRITE));
933
934   /**
935    * GtkEntry:caps-lock-warning
936    *
937    * Whether password entries will show a warning when Caps Lock is on.
938    *
939    * Note that the warning is shown using a secondary icon, and thus
940    * does not work if you are using the secondary icon position for some 
941    * other purpose.
942    *
943    * Since: 2.16
944    */
945   g_object_class_install_property (gobject_class,
946                                    PROP_CAPS_LOCK_WARNING,
947                                    g_param_spec_boolean ("caps-lock-warning",
948                                                          P_("Caps Lock warning"),
949                                                          P_("Whether password entries will show a warning when Caps Lock is on"),
950                                                          TRUE,
951                                                          GTK_PARAM_READWRITE));
952
953   /**
954    * GtkEntry:progress-fraction:
955    *
956    * The current fraction of the task that's been completed.
957    *
958    * Since: 2.16
959    */
960   g_object_class_install_property (gobject_class,
961                                    PROP_PROGRESS_FRACTION,
962                                    g_param_spec_double ("progress-fraction",
963                                                         P_("Progress Fraction"),
964                                                         P_("The current fraction of the task that's been completed"),
965                                                         0.0,
966                                                         1.0,
967                                                         0.0,
968                                                         GTK_PARAM_READWRITE));
969
970   /**
971    * GtkEntry:progress-pulse-step:
972    *
973    * The fraction of total entry width to move the progress
974    * bouncing block for each call to gtk_entry_progress_pulse().
975    *
976    * Since: 2.16
977    */
978   g_object_class_install_property (gobject_class,
979                                    PROP_PROGRESS_PULSE_STEP,
980                                    g_param_spec_double ("progress-pulse-step",
981                                                         P_("Progress Pulse Step"),
982                                                         P_("The fraction of total entry width to move the progress bouncing block for each call to gtk_entry_progress_pulse()"),
983                                                         0.0,
984                                                         1.0,
985                                                         0.1,
986                                                         GTK_PARAM_READWRITE));
987
988   /**
989   * GtkEntry:placeholder-text:
990   *
991   * The text that will be displayed in the #GtkEntry when it is empty and unfocused.
992   *
993   * Since: 3.2
994   */
995  g_object_class_install_property (gobject_class,
996                                   PROP_PLACEHOLDER_TEXT,
997                                   g_param_spec_string ("placeholder-text",
998                                                        P_("Placeholder text"),
999                                                        P_("Show text in the entry when it's empty and unfocused"),
1000                                                        NULL,
1001                                                        GTK_PARAM_READWRITE));
1002
1003    /**
1004    * GtkEntry:primary-icon-pixbuf:
1005    *
1006    * A pixbuf to use as the primary icon for the entry.
1007    *
1008    * Since: 2.16
1009    */
1010   g_object_class_install_property (gobject_class,
1011                                    PROP_PIXBUF_PRIMARY,
1012                                    g_param_spec_object ("primary-icon-pixbuf",
1013                                                         P_("Primary pixbuf"),
1014                                                         P_("Primary pixbuf for the entry"),
1015                                                         GDK_TYPE_PIXBUF,
1016                                                         GTK_PARAM_READWRITE));
1017   
1018   /**
1019    * GtkEntry:secondary-icon-pixbuf:
1020    *
1021    * An pixbuf to use as the secondary icon for the entry.
1022    *
1023    * Since: 2.16
1024    */
1025   g_object_class_install_property (gobject_class,
1026                                    PROP_PIXBUF_SECONDARY,
1027                                    g_param_spec_object ("secondary-icon-pixbuf",
1028                                                         P_("Secondary pixbuf"),
1029                                                         P_("Secondary pixbuf for the entry"),
1030                                                         GDK_TYPE_PIXBUF,
1031                                                         GTK_PARAM_READWRITE));
1032
1033   /**
1034    * GtkEntry:primary-icon-stock:
1035    *
1036    * The stock id to use for the primary icon for the entry.
1037    *
1038    * Since: 2.16
1039    */
1040   g_object_class_install_property (gobject_class,
1041                                    PROP_STOCK_PRIMARY,
1042                                    g_param_spec_string ("primary-icon-stock",
1043                                                         P_("Primary stock ID"),
1044                                                         P_("Stock ID for primary icon"),
1045                                                         NULL,
1046                                                         GTK_PARAM_READWRITE));
1047
1048   /**
1049    * GtkEntry:secondary-icon-stock:
1050    *
1051    * The stock id to use for the secondary icon for the entry.
1052    *
1053    * Since: 2.16
1054    */
1055   g_object_class_install_property (gobject_class,
1056                                    PROP_STOCK_SECONDARY,
1057                                    g_param_spec_string ("secondary-icon-stock",
1058                                                         P_("Secondary stock ID"),
1059                                                         P_("Stock ID for secondary icon"),
1060                                                         NULL,
1061                                                         GTK_PARAM_READWRITE));
1062   
1063   /**
1064    * GtkEntry:primary-icon-name:
1065    *
1066    * The icon name to use for the primary icon for the entry.
1067    *
1068    * Since: 2.16
1069    */
1070   g_object_class_install_property (gobject_class,
1071                                    PROP_ICON_NAME_PRIMARY,
1072                                    g_param_spec_string ("primary-icon-name",
1073                                                         P_("Primary icon name"),
1074                                                         P_("Icon name for primary icon"),
1075                                                         NULL,
1076                                                         GTK_PARAM_READWRITE));
1077   
1078   /**
1079    * GtkEntry:secondary-icon-name:
1080    *
1081    * The icon name to use for the secondary icon for the entry.
1082    *
1083    * Since: 2.16
1084    */
1085   g_object_class_install_property (gobject_class,
1086                                    PROP_ICON_NAME_SECONDARY,
1087                                    g_param_spec_string ("secondary-icon-name",
1088                                                         P_("Secondary icon name"),
1089                                                         P_("Icon name for secondary icon"),
1090                                                         NULL,
1091                                                         GTK_PARAM_READWRITE));
1092   
1093   /**
1094    * GtkEntry:primary-icon-gicon:
1095    *
1096    * The #GIcon to use for the primary icon for the entry.
1097    *
1098    * Since: 2.16
1099    */
1100   g_object_class_install_property (gobject_class,
1101                                    PROP_GICON_PRIMARY,
1102                                    g_param_spec_object ("primary-icon-gicon",
1103                                                         P_("Primary GIcon"),
1104                                                         P_("GIcon for primary icon"),
1105                                                         G_TYPE_ICON,
1106                                                         GTK_PARAM_READWRITE));
1107   
1108   /**
1109    * GtkEntry:secondary-icon-gicon:
1110    *
1111    * The #GIcon to use for the secondary icon for the entry.
1112    *
1113    * Since: 2.16
1114    */
1115   g_object_class_install_property (gobject_class,
1116                                    PROP_GICON_SECONDARY,
1117                                    g_param_spec_object ("secondary-icon-gicon",
1118                                                         P_("Secondary GIcon"),
1119                                                         P_("GIcon for secondary icon"),
1120                                                         G_TYPE_ICON,
1121                                                         GTK_PARAM_READWRITE));
1122   
1123   /**
1124    * GtkEntry:primary-icon-storage-type:
1125    *
1126    * The representation which is used for the primary icon of the entry.
1127    *
1128    * Since: 2.16
1129    */
1130   g_object_class_install_property (gobject_class,
1131                                    PROP_STORAGE_TYPE_PRIMARY,
1132                                    g_param_spec_enum ("primary-icon-storage-type",
1133                                                       P_("Primary storage type"),
1134                                                       P_("The representation being used for primary icon"),
1135                                                       GTK_TYPE_IMAGE_TYPE,
1136                                                       GTK_IMAGE_EMPTY,
1137                                                       GTK_PARAM_READABLE));
1138   
1139   /**
1140    * GtkEntry:secondary-icon-storage-type:
1141    *
1142    * The representation which is used for the secondary icon of the entry.
1143    *
1144    * Since: 2.16
1145    */
1146   g_object_class_install_property (gobject_class,
1147                                    PROP_STORAGE_TYPE_SECONDARY,
1148                                    g_param_spec_enum ("secondary-icon-storage-type",
1149                                                       P_("Secondary storage type"),
1150                                                       P_("The representation being used for secondary icon"),
1151                                                       GTK_TYPE_IMAGE_TYPE,
1152                                                       GTK_IMAGE_EMPTY,
1153                                                       GTK_PARAM_READABLE));
1154   
1155   /**
1156    * GtkEntry:primary-icon-activatable:
1157    *
1158    * Whether the primary icon is activatable.
1159    *
1160    * GTK+ emits the #GtkEntry::icon-press and #GtkEntry::icon-release 
1161    * signals only on sensitive, activatable icons. 
1162    *
1163    * Sensitive, but non-activatable icons can be used for purely 
1164    * informational purposes.
1165    *
1166    * Since: 2.16
1167    */
1168   g_object_class_install_property (gobject_class,
1169                                    PROP_ACTIVATABLE_PRIMARY,
1170                                    g_param_spec_boolean ("primary-icon-activatable",
1171                                                          P_("Primary icon activatable"),
1172                                                          P_("Whether the primary icon is activatable"),
1173                                                          TRUE,
1174                                                          GTK_PARAM_READWRITE));
1175   
1176   /**
1177    * GtkEntry:secondary-icon-activatable:
1178    *
1179    * Whether the secondary icon is activatable.
1180    *
1181    * GTK+ emits the #GtkEntry::icon-press and #GtkEntry::icon-release 
1182    * signals only on sensitive, activatable icons.
1183    *
1184    * Sensitive, but non-activatable icons can be used for purely 
1185    * informational purposes.
1186    *
1187    * Since: 2.16
1188    */
1189   g_object_class_install_property (gobject_class,
1190                                    PROP_ACTIVATABLE_SECONDARY,
1191                                    g_param_spec_boolean ("secondary-icon-activatable",
1192                                                          P_("Secondary icon activatable"),
1193                                                          P_("Whether the secondary icon is activatable"),
1194                                                          TRUE,
1195                                                          GTK_PARAM_READWRITE));
1196   
1197   
1198   /**
1199    * GtkEntry:primary-icon-sensitive:
1200    *
1201    * Whether the primary icon is sensitive.
1202    *
1203    * An insensitive icon appears grayed out. GTK+ does not emit the 
1204    * #GtkEntry::icon-press and #GtkEntry::icon-release signals and 
1205    * does not allow DND from insensitive icons.
1206    *
1207    * An icon should be set insensitive if the action that would trigger
1208    * when clicked is currently not available.
1209    * 
1210    * Since: 2.16
1211    */
1212   g_object_class_install_property (gobject_class,
1213                                    PROP_SENSITIVE_PRIMARY,
1214                                    g_param_spec_boolean ("primary-icon-sensitive",
1215                                                          P_("Primary icon sensitive"),
1216                                                          P_("Whether the primary icon is sensitive"),
1217                                                          TRUE,
1218                                                          GTK_PARAM_READWRITE));
1219   
1220   /**
1221    * GtkEntry:secondary-icon-sensitive:
1222    *
1223    * Whether the secondary icon is sensitive.
1224    *
1225    * An insensitive icon appears grayed out. GTK+ does not emit the 
1226    * #GtkEntry::icon-press and #GtkEntry::icon-release signals and 
1227    * does not allow DND from insensitive icons.
1228    *
1229    * An icon should be set insensitive if the action that would trigger
1230    * when clicked is currently not available.
1231    *
1232    * Since: 2.16
1233    */
1234   g_object_class_install_property (gobject_class,
1235                                    PROP_SENSITIVE_SECONDARY,
1236                                    g_param_spec_boolean ("secondary-icon-sensitive",
1237                                                          P_("Secondary icon sensitive"),
1238                                                          P_("Whether the secondary icon is sensitive"),
1239                                                          TRUE,
1240                                                          GTK_PARAM_READWRITE));
1241   
1242   /**
1243    * GtkEntry:primary-icon-tooltip-text:
1244    * 
1245    * The contents of the tooltip on the primary icon.
1246    *
1247    * Also see gtk_entry_set_icon_tooltip_text().
1248    *
1249    * Since: 2.16
1250    */
1251   g_object_class_install_property (gobject_class,
1252                                    PROP_TOOLTIP_TEXT_PRIMARY,
1253                                    g_param_spec_string ("primary-icon-tooltip-text",
1254                                                         P_("Primary icon tooltip text"),
1255                                                         P_("The contents of the tooltip on the primary icon"),                              
1256                                                         NULL,
1257                                                         GTK_PARAM_READWRITE));
1258   
1259   /**
1260    * GtkEntry:secondary-icon-tooltip-text:
1261    * 
1262    * The contents of the tooltip on the secondary icon.
1263    *
1264    * Also see gtk_entry_set_icon_tooltip_text().
1265    *
1266    * Since: 2.16
1267    */
1268   g_object_class_install_property (gobject_class,
1269                                    PROP_TOOLTIP_TEXT_SECONDARY,
1270                                    g_param_spec_string ("secondary-icon-tooltip-text",
1271                                                         P_("Secondary icon tooltip text"),
1272                                                         P_("The contents of the tooltip on the secondary icon"),                              
1273                                                         NULL,
1274                                                         GTK_PARAM_READWRITE));
1275
1276   /**
1277    * GtkEntry:primary-icon-tooltip-markup:
1278    * 
1279    * The contents of the tooltip on the primary icon, which is marked up
1280    * with the <link linkend="PangoMarkupFormat">Pango text markup 
1281    * language</link>.
1282    *
1283    * Also see gtk_entry_set_icon_tooltip_markup().
1284    *
1285    * Since: 2.16
1286    */
1287   g_object_class_install_property (gobject_class,
1288                                    PROP_TOOLTIP_MARKUP_PRIMARY,
1289                                    g_param_spec_string ("primary-icon-tooltip-markup",
1290                                                         P_("Primary icon tooltip markup"),
1291                                                         P_("The contents of the tooltip on the primary icon"),                              
1292                                                         NULL,
1293                                                         GTK_PARAM_READWRITE));
1294
1295   /**
1296    * GtkEntry:secondary-icon-tooltip-markup:
1297    * 
1298    * The contents of the tooltip on the secondary icon, which is marked up
1299    * with the <link linkend="PangoMarkupFormat">Pango text markup 
1300    * language</link>.
1301    *
1302    * Also see gtk_entry_set_icon_tooltip_markup().
1303    *
1304    * Since: 2.16
1305    */
1306   g_object_class_install_property (gobject_class,
1307                                    PROP_TOOLTIP_MARKUP_SECONDARY,
1308                                    g_param_spec_string ("secondary-icon-tooltip-markup",
1309                                                         P_("Secondary icon tooltip markup"),
1310                                                         P_("The contents of the tooltip on the secondary icon"),                              
1311                                                         NULL,
1312                                                         GTK_PARAM_READWRITE));
1313
1314   /**
1315    * GtkEntry:im-module:
1316    *
1317    * Which IM (input method) module should be used for this entry. 
1318    * See #GtkIMContext.
1319    * 
1320    * Setting this to a non-%NULL value overrides the
1321    * system-wide IM module setting. See the GtkSettings 
1322    * #GtkSettings:gtk-im-module property.
1323    *
1324    * Since: 2.16
1325    */  
1326   g_object_class_install_property (gobject_class,
1327                                    PROP_IM_MODULE,
1328                                    g_param_spec_string ("im-module",
1329                                                         P_("IM module"),
1330                                                         P_("Which IM module should be used"),
1331                                                         NULL,
1332                                                         GTK_PARAM_READWRITE));
1333
1334   /**
1335    * GtkEntry:completion:
1336    *
1337    * The auxiliary completion object to use with the entry.
1338    *
1339    * Since: 3.2
1340    */     
1341   g_object_class_install_property (gobject_class,
1342                                    PROP_COMPLETION,
1343                                    g_param_spec_object ("completion",
1344                                                         P_("Completion"),
1345                                                         P_("The auxiliary completion object"),
1346                                                         GTK_TYPE_ENTRY_COMPLETION,
1347                                                         GTK_PARAM_READWRITE));
1348
1349   /**
1350    * GtkEntry:icon-prelight:
1351    *
1352    * The prelight style property determines whether activatable
1353    * icons prelight on mouseover.
1354    *
1355    * Since: 2.16
1356    */
1357   gtk_widget_class_install_style_property (widget_class,
1358                                            g_param_spec_boolean ("icon-prelight",
1359                                                                  P_("Icon Prelight"),
1360                                                                  P_("Whether activatable icons should prelight when hovered"),
1361                                                                  TRUE,
1362                                                                  GTK_PARAM_READABLE));
1363
1364   /**
1365    * GtkEntry:progress-border:
1366    *
1367    * The border around the progress bar in the entry.
1368    *
1369    * Since: 2.16
1370    */
1371   gtk_widget_class_install_style_property (widget_class,
1372                                            g_param_spec_boxed ("progress-border",
1373                                                                P_("Progress Border"),
1374                                                                P_("Border around the progress bar"),
1375                                                                GTK_TYPE_BORDER,
1376                                                                GTK_PARAM_READABLE));
1377   
1378   /**
1379    * GtkEntry:invisible-char:
1380    *
1381    * The invisible character is used when masking entry contents (in
1382    * \"password mode\")"). When it is not explicitly set with the
1383    * #GtkEntry::invisible-char property, GTK+ determines the character
1384    * to use from a list of possible candidates, depending on availability
1385    * in the current font.
1386    *
1387    * This style property allows the theme to prepend a character
1388    * to the list of candidates.
1389    *
1390    * Since: 2.18
1391    */
1392   gtk_widget_class_install_style_property (widget_class,
1393                                            g_param_spec_unichar ("invisible-char",
1394                                                                  P_("Invisible character"),
1395                                                                  P_("The character to use when masking entry contents (in \"password mode\")"),
1396                                                                  0,
1397                                                                  GTK_PARAM_READABLE));
1398   
1399   /**
1400    * GtkEntry::populate-popup:
1401    * @entry: The entry on which the signal is emitted
1402    * @menu: the menu that is being populated
1403    *
1404    * The ::populate-popup signal gets emitted before showing the 
1405    * context menu of the entry. 
1406    *
1407    * If you need to add items to the context menu, connect
1408    * to this signal and append your menuitems to the @menu.
1409    */
1410   signals[POPULATE_POPUP] =
1411     g_signal_new (I_("populate-popup"),
1412                   G_OBJECT_CLASS_TYPE (gobject_class),
1413                   G_SIGNAL_RUN_LAST,
1414                   G_STRUCT_OFFSET (GtkEntryClass, populate_popup),
1415                   NULL, NULL,
1416                   _gtk_marshal_VOID__OBJECT,
1417                   G_TYPE_NONE, 1,
1418                   GTK_TYPE_MENU);
1419   
1420  /* Action signals */
1421   
1422   /**
1423    * GtkEntry::activate:
1424    * @entry: The entry on which the signal is emitted
1425    *
1426    * A  <link linkend="keybinding-signals">keybinding signal</link>
1427    * which gets emitted when the user activates the entry.
1428    * 
1429    * Applications should not connect to it, but may emit it with
1430    * g_signal_emit_by_name() if they need to control activation 
1431    * programmatically.
1432    *
1433    * The default bindings for this signal are all forms of the Enter key.
1434    */
1435   signals[ACTIVATE] =
1436     g_signal_new (I_("activate"),
1437                   G_OBJECT_CLASS_TYPE (gobject_class),
1438                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1439                   G_STRUCT_OFFSET (GtkEntryClass, activate),
1440                   NULL, NULL,
1441                   _gtk_marshal_VOID__VOID,
1442                   G_TYPE_NONE, 0);
1443   widget_class->activate_signal = signals[ACTIVATE];
1444
1445   /**
1446    * GtkEntry::move-cursor:
1447    * @entry: the object which received the signal
1448    * @step: the granularity of the move, as a #GtkMovementStep
1449    * @count: the number of @step units to move
1450    * @extend_selection: %TRUE if the move should extend the selection
1451    *
1452    * The ::move-cursor signal is a
1453    * <link linkend="keybinding-signals">keybinding signal</link>
1454    * which gets emitted when the user initiates a cursor movement.
1455    * If the cursor is not visible in @entry, this signal causes
1456    * the viewport to be moved instead.
1457    *
1458    * Applications should not connect to it, but may emit it with
1459    * g_signal_emit_by_name() if they need to control the cursor
1460    * programmatically.
1461    *
1462    * The default bindings for this signal come in two variants,
1463    * the variant with the Shift modifier extends the selection,
1464    * the variant without the Shift modifer does not.
1465    * There are too many key combinations to list them all here.
1466    * <itemizedlist>
1467    * <listitem>Arrow keys move by individual characters/lines</listitem>
1468    * <listitem>Ctrl-arrow key combinations move by words/paragraphs</listitem>
1469    * <listitem>Home/End keys move to the ends of the buffer</listitem>
1470    * </itemizedlist>
1471    */
1472   signals[MOVE_CURSOR] = 
1473     g_signal_new (I_("move-cursor"),
1474                   G_OBJECT_CLASS_TYPE (gobject_class),
1475                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1476                   G_STRUCT_OFFSET (GtkEntryClass, move_cursor),
1477                   NULL, NULL,
1478                   _gtk_marshal_VOID__ENUM_INT_BOOLEAN,
1479                   G_TYPE_NONE, 3,
1480                   GTK_TYPE_MOVEMENT_STEP,
1481                   G_TYPE_INT,
1482                   G_TYPE_BOOLEAN);
1483
1484   /**
1485    * GtkEntry::insert-at-cursor:
1486    * @entry: the object which received the signal
1487    * @string: the string to insert
1488    *
1489    * The ::insert-at-cursor signal is a
1490    * <link linkend="keybinding-signals">keybinding signal</link>
1491    * which gets emitted when the user initiates the insertion of a
1492    * fixed string at the cursor.
1493    *
1494    * This signal has no default bindings.
1495    */
1496   signals[INSERT_AT_CURSOR] = 
1497     g_signal_new (I_("insert-at-cursor"),
1498                   G_OBJECT_CLASS_TYPE (gobject_class),
1499                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1500                   G_STRUCT_OFFSET (GtkEntryClass, insert_at_cursor),
1501                   NULL, NULL,
1502                   _gtk_marshal_VOID__STRING,
1503                   G_TYPE_NONE, 1,
1504                   G_TYPE_STRING);
1505
1506   /**
1507    * GtkEntry::delete-from-cursor:
1508    * @entry: the object which received the signal
1509    * @type: the granularity of the deletion, as a #GtkDeleteType
1510    * @count: the number of @type units to delete
1511    *
1512    * The ::delete-from-cursor signal is a
1513    * <link linkend="keybinding-signals">keybinding signal</link>
1514    * which gets emitted when the user initiates a text deletion.
1515    *
1516    * If the @type is %GTK_DELETE_CHARS, GTK+ deletes the selection
1517    * if there is one, otherwise it deletes the requested number
1518    * of characters.
1519    *
1520    * The default bindings for this signal are
1521    * Delete for deleting a character and Ctrl-Delete for
1522    * deleting a word.
1523    */
1524   signals[DELETE_FROM_CURSOR] = 
1525     g_signal_new (I_("delete-from-cursor"),
1526                   G_OBJECT_CLASS_TYPE (gobject_class),
1527                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1528                   G_STRUCT_OFFSET (GtkEntryClass, delete_from_cursor),
1529                   NULL, NULL,
1530                   _gtk_marshal_VOID__ENUM_INT,
1531                   G_TYPE_NONE, 2,
1532                   GTK_TYPE_DELETE_TYPE,
1533                   G_TYPE_INT);
1534
1535   /**
1536    * GtkEntry::backspace:
1537    * @entry: the object which received the signal
1538    *
1539    * The ::backspace signal is a
1540    * <link linkend="keybinding-signals">keybinding signal</link>
1541    * which gets emitted when the user asks for it.
1542    *
1543    * The default bindings for this signal are
1544    * Backspace and Shift-Backspace.
1545    */
1546   signals[BACKSPACE] =
1547     g_signal_new (I_("backspace"),
1548                   G_OBJECT_CLASS_TYPE (gobject_class),
1549                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1550                   G_STRUCT_OFFSET (GtkEntryClass, backspace),
1551                   NULL, NULL,
1552                   _gtk_marshal_VOID__VOID,
1553                   G_TYPE_NONE, 0);
1554
1555   /**
1556    * GtkEntry::cut-clipboard:
1557    * @entry: the object which received the signal
1558    *
1559    * The ::cut-clipboard signal is a
1560    * <link linkend="keybinding-signals">keybinding signal</link>
1561    * which gets emitted to cut the selection to the clipboard.
1562    *
1563    * The default bindings for this signal are
1564    * Ctrl-x and Shift-Delete.
1565    */
1566   signals[CUT_CLIPBOARD] =
1567     g_signal_new (I_("cut-clipboard"),
1568                   G_OBJECT_CLASS_TYPE (gobject_class),
1569                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1570                   G_STRUCT_OFFSET (GtkEntryClass, cut_clipboard),
1571                   NULL, NULL,
1572                   _gtk_marshal_VOID__VOID,
1573                   G_TYPE_NONE, 0);
1574
1575   /**
1576    * GtkEntry::copy-clipboard:
1577    * @entry: the object which received the signal
1578    *
1579    * The ::copy-clipboard signal is a
1580    * <link linkend="keybinding-signals">keybinding signal</link>
1581    * which gets emitted to copy the selection to the clipboard.
1582    *
1583    * The default bindings for this signal are
1584    * Ctrl-c and Ctrl-Insert.
1585    */
1586   signals[COPY_CLIPBOARD] =
1587     g_signal_new (I_("copy-clipboard"),
1588                   G_OBJECT_CLASS_TYPE (gobject_class),
1589                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1590                   G_STRUCT_OFFSET (GtkEntryClass, copy_clipboard),
1591                   NULL, NULL,
1592                   _gtk_marshal_VOID__VOID,
1593                   G_TYPE_NONE, 0);
1594
1595   /**
1596    * GtkEntry::paste-clipboard:
1597    * @entry: the object which received the signal
1598    *
1599    * The ::paste-clipboard signal is a
1600    * <link linkend="keybinding-signals">keybinding signal</link>
1601    * which gets emitted to paste the contents of the clipboard
1602    * into the text view.
1603    *
1604    * The default bindings for this signal are
1605    * Ctrl-v and Shift-Insert.
1606    */
1607   signals[PASTE_CLIPBOARD] =
1608     g_signal_new (I_("paste-clipboard"),
1609                   G_OBJECT_CLASS_TYPE (gobject_class),
1610                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1611                   G_STRUCT_OFFSET (GtkEntryClass, paste_clipboard),
1612                   NULL, NULL,
1613                   _gtk_marshal_VOID__VOID,
1614                   G_TYPE_NONE, 0);
1615
1616   /**
1617    * GtkEntry::toggle-overwrite:
1618    * @entry: the object which received the signal
1619    *
1620    * The ::toggle-overwrite signal is a
1621    * <link linkend="keybinding-signals">keybinding signal</link>
1622    * which gets emitted to toggle the overwrite mode of the entry.
1623    *
1624    * The default bindings for this signal is Insert.
1625    */
1626   signals[TOGGLE_OVERWRITE] =
1627     g_signal_new (I_("toggle-overwrite"),
1628                   G_OBJECT_CLASS_TYPE (gobject_class),
1629                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1630                   G_STRUCT_OFFSET (GtkEntryClass, toggle_overwrite),
1631                   NULL, NULL,
1632                   _gtk_marshal_VOID__VOID,
1633                   G_TYPE_NONE, 0);
1634
1635   /**
1636    * GtkEntry::icon-press:
1637    * @entry: The entry on which the signal is emitted
1638    * @icon_pos: The position of the clicked icon
1639    * @event: (type Gdk.EventButton): the button press event
1640    *
1641    * The ::icon-press signal is emitted when an activatable icon
1642    * is clicked.
1643    *
1644    * Since: 2.16
1645    */
1646   signals[ICON_PRESS] =
1647     g_signal_new (I_("icon-press"),
1648                   G_TYPE_FROM_CLASS (gobject_class),
1649                   G_SIGNAL_RUN_LAST,
1650                   0,
1651                   NULL, NULL,
1652                   _gtk_marshal_VOID__ENUM_BOXED,
1653                   G_TYPE_NONE, 2,
1654                   GTK_TYPE_ENTRY_ICON_POSITION,
1655                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1656   
1657   /**
1658    * GtkEntry::icon-release:
1659    * @entry: The entry on which the signal is emitted
1660    * @icon_pos: The position of the clicked icon
1661    * @event: (type Gdk.EventButton): the button release event
1662    *
1663    * The ::icon-release signal is emitted on the button release from a
1664    * mouse click over an activatable icon.
1665    *
1666    * Since: 2.16
1667    */
1668   signals[ICON_RELEASE] =
1669     g_signal_new (I_("icon-release"),
1670                   G_TYPE_FROM_CLASS (gobject_class),
1671                   G_SIGNAL_RUN_LAST,
1672                   0,
1673                   NULL, NULL,
1674                   _gtk_marshal_VOID__ENUM_BOXED,
1675                   G_TYPE_NONE, 2,
1676                   GTK_TYPE_ENTRY_ICON_POSITION,
1677                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1678
1679   /**
1680    * GtkEntry::preedit-changed:
1681    * @entry: the object which received the signal
1682    * @preedit: the current preedit string
1683    *
1684    * If an input method is used, the typed text will not immediately
1685    * be committed to the buffer. So if you are interested in the text,
1686    * connect to this signal.
1687    *
1688    * Since: 2.20
1689    */
1690   signals[PREEDIT_CHANGED] =
1691     g_signal_new_class_handler (I_("preedit-changed"),
1692                                 G_OBJECT_CLASS_TYPE (gobject_class),
1693                                 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1694                                 NULL,
1695                                 NULL, NULL,
1696                                 _gtk_marshal_VOID__STRING,
1697                                 G_TYPE_NONE, 1,
1698                                 G_TYPE_STRING);
1699
1700
1701   /*
1702    * Key bindings
1703    */
1704
1705   binding_set = gtk_binding_set_by_class (class);
1706
1707   /* Moving the insertion point */
1708   add_move_binding (binding_set, GDK_KEY_Right, 0,
1709                     GTK_MOVEMENT_VISUAL_POSITIONS, 1);
1710   
1711   add_move_binding (binding_set, GDK_KEY_Left, 0,
1712                     GTK_MOVEMENT_VISUAL_POSITIONS, -1);
1713
1714   add_move_binding (binding_set, GDK_KEY_KP_Right, 0,
1715                     GTK_MOVEMENT_VISUAL_POSITIONS, 1);
1716   
1717   add_move_binding (binding_set, GDK_KEY_KP_Left, 0,
1718                     GTK_MOVEMENT_VISUAL_POSITIONS, -1);
1719   
1720   add_move_binding (binding_set, GDK_KEY_Right, GDK_CONTROL_MASK,
1721                     GTK_MOVEMENT_WORDS, 1);
1722
1723   add_move_binding (binding_set, GDK_KEY_Left, GDK_CONTROL_MASK,
1724                     GTK_MOVEMENT_WORDS, -1);
1725
1726   add_move_binding (binding_set, GDK_KEY_KP_Right, GDK_CONTROL_MASK,
1727                     GTK_MOVEMENT_WORDS, 1);
1728
1729   add_move_binding (binding_set, GDK_KEY_KP_Left, GDK_CONTROL_MASK,
1730                     GTK_MOVEMENT_WORDS, -1);
1731   
1732   add_move_binding (binding_set, GDK_KEY_Home, 0,
1733                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, -1);
1734
1735   add_move_binding (binding_set, GDK_KEY_End, 0,
1736                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, 1);
1737
1738   add_move_binding (binding_set, GDK_KEY_KP_Home, 0,
1739                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, -1);
1740
1741   add_move_binding (binding_set, GDK_KEY_KP_End, 0,
1742                     GTK_MOVEMENT_DISPLAY_LINE_ENDS, 1);
1743   
1744   add_move_binding (binding_set, GDK_KEY_Home, GDK_CONTROL_MASK,
1745                     GTK_MOVEMENT_BUFFER_ENDS, -1);
1746
1747   add_move_binding (binding_set, GDK_KEY_End, GDK_CONTROL_MASK,
1748                     GTK_MOVEMENT_BUFFER_ENDS, 1);
1749
1750   add_move_binding (binding_set, GDK_KEY_KP_Home, GDK_CONTROL_MASK,
1751                     GTK_MOVEMENT_BUFFER_ENDS, -1);
1752
1753   add_move_binding (binding_set, GDK_KEY_KP_End, GDK_CONTROL_MASK,
1754                     GTK_MOVEMENT_BUFFER_ENDS, 1);
1755
1756   /* Select all
1757    */
1758   gtk_binding_entry_add_signal (binding_set, GDK_KEY_a, GDK_CONTROL_MASK,
1759                                 "move-cursor", 3,
1760                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_BUFFER_ENDS,
1761                                 G_TYPE_INT, -1,
1762                                 G_TYPE_BOOLEAN, FALSE);
1763   gtk_binding_entry_add_signal (binding_set, GDK_KEY_a, GDK_CONTROL_MASK,
1764                                 "move-cursor", 3,
1765                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_BUFFER_ENDS,
1766                                 G_TYPE_INT, 1,
1767                                 G_TYPE_BOOLEAN, TRUE);  
1768
1769   gtk_binding_entry_add_signal (binding_set, GDK_KEY_slash, GDK_CONTROL_MASK,
1770                                 "move-cursor", 3,
1771                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_BUFFER_ENDS,
1772                                 G_TYPE_INT, -1,
1773                                 G_TYPE_BOOLEAN, FALSE);
1774   gtk_binding_entry_add_signal (binding_set, GDK_KEY_slash, GDK_CONTROL_MASK,
1775                                 "move-cursor", 3,
1776                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_BUFFER_ENDS,
1777                                 G_TYPE_INT, 1,
1778                                 G_TYPE_BOOLEAN, TRUE);  
1779   /* Unselect all 
1780    */
1781   gtk_binding_entry_add_signal (binding_set, GDK_KEY_backslash, GDK_CONTROL_MASK,
1782                                 "move-cursor", 3,
1783                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_VISUAL_POSITIONS,
1784                                 G_TYPE_INT, 0,
1785                                 G_TYPE_BOOLEAN, FALSE);
1786   gtk_binding_entry_add_signal (binding_set, GDK_KEY_a, GDK_SHIFT_MASK | GDK_CONTROL_MASK,
1787                                 "move-cursor", 3,
1788                                 GTK_TYPE_MOVEMENT_STEP, GTK_MOVEMENT_VISUAL_POSITIONS,
1789                                 G_TYPE_INT, 0,
1790                                 G_TYPE_BOOLEAN, FALSE);
1791
1792   /* Activate
1793    */
1794   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Return, 0,
1795                                 "activate", 0);
1796   gtk_binding_entry_add_signal (binding_set, GDK_KEY_ISO_Enter, 0,
1797                                 "activate", 0);
1798   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Enter, 0,
1799                                 "activate", 0);
1800   
1801   /* Deleting text */
1802   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Delete, 0,
1803                                 "delete-from-cursor", 2,
1804                                 G_TYPE_ENUM, GTK_DELETE_CHARS,
1805                                 G_TYPE_INT, 1);
1806
1807   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Delete, 0,
1808                                 "delete-from-cursor", 2,
1809                                 G_TYPE_ENUM, GTK_DELETE_CHARS,
1810                                 G_TYPE_INT, 1);
1811   
1812   gtk_binding_entry_add_signal (binding_set, GDK_KEY_BackSpace, 0,
1813                                 "backspace", 0);
1814
1815   /* Make this do the same as Backspace, to help with mis-typing */
1816   gtk_binding_entry_add_signal (binding_set, GDK_KEY_BackSpace, GDK_SHIFT_MASK,
1817                                 "backspace", 0);
1818
1819   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Delete, GDK_CONTROL_MASK,
1820                                 "delete-from-cursor", 2,
1821                                 G_TYPE_ENUM, GTK_DELETE_WORD_ENDS,
1822                                 G_TYPE_INT, 1);
1823
1824   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Delete, GDK_CONTROL_MASK,
1825                                 "delete-from-cursor", 2,
1826                                 G_TYPE_ENUM, GTK_DELETE_WORD_ENDS,
1827                                 G_TYPE_INT, 1);
1828   
1829   gtk_binding_entry_add_signal (binding_set, GDK_KEY_BackSpace, GDK_CONTROL_MASK,
1830                                 "delete-from-cursor", 2,
1831                                 G_TYPE_ENUM, GTK_DELETE_WORD_ENDS,
1832                                 G_TYPE_INT, -1);
1833
1834   /* Cut/copy/paste */
1835
1836   gtk_binding_entry_add_signal (binding_set, GDK_KEY_x, GDK_CONTROL_MASK,
1837                                 "cut-clipboard", 0);
1838   gtk_binding_entry_add_signal (binding_set, GDK_KEY_c, GDK_CONTROL_MASK,
1839                                 "copy-clipboard", 0);
1840   gtk_binding_entry_add_signal (binding_set, GDK_KEY_v, GDK_CONTROL_MASK,
1841                                 "paste-clipboard", 0);
1842
1843   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Delete, GDK_SHIFT_MASK,
1844                                 "cut-clipboard", 0);
1845   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_CONTROL_MASK,
1846                                 "copy-clipboard", 0);
1847   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, GDK_SHIFT_MASK,
1848                                 "paste-clipboard", 0);
1849
1850   /* Overwrite */
1851   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Insert, 0,
1852                                 "toggle-overwrite", 0);
1853   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Insert, 0,
1854                                 "toggle-overwrite", 0);
1855
1856   /**
1857    * GtkEntry:inner-border:
1858    *
1859    * Sets the text area's border between the text and the frame.
1860    *
1861    * Since: 2.10
1862    */
1863   gtk_widget_class_install_style_property (widget_class,
1864                                            g_param_spec_boxed ("inner-border",
1865                                                                P_("Inner Border"),
1866                                                                P_("Border between text and frame."),
1867                                                                GTK_TYPE_BORDER,
1868                                                                GTK_PARAM_READABLE)); 
1869
1870   g_type_class_add_private (gobject_class, sizeof (GtkEntryPrivate));
1871 }
1872
1873 static void
1874 gtk_entry_editable_init (GtkEditableInterface *iface)
1875 {
1876   iface->do_insert_text = gtk_entry_insert_text;
1877   iface->do_delete_text = gtk_entry_delete_text;
1878   iface->insert_text = gtk_entry_real_insert_text;
1879   iface->delete_text = gtk_entry_real_delete_text;
1880   iface->get_chars = gtk_entry_get_chars;
1881   iface->set_selection_bounds = gtk_entry_set_selection_bounds;
1882   iface->get_selection_bounds = gtk_entry_get_selection_bounds;
1883   iface->set_position = gtk_entry_real_set_position;
1884   iface->get_position = gtk_entry_get_position;
1885 }
1886
1887 static void
1888 gtk_entry_cell_editable_init (GtkCellEditableIface *iface)
1889 {
1890   iface->start_editing = gtk_entry_start_editing;
1891 }
1892
1893 static void
1894 gtk_entry_set_property (GObject         *object,
1895                         guint            prop_id,
1896                         const GValue    *value,
1897                         GParamSpec      *pspec)
1898 {
1899   GtkEntry *entry = GTK_ENTRY (object);
1900   GtkEntryPrivate *priv = entry->priv;
1901
1902   switch (prop_id)
1903     {
1904     case PROP_BUFFER:
1905       gtk_entry_set_buffer (entry, g_value_get_object (value));
1906       break;
1907
1908     case PROP_EDITABLE:
1909       {
1910         gboolean new_value = g_value_get_boolean (value);
1911
1912         if (new_value != priv->editable)
1913           {
1914             GtkWidget *widget = GTK_WIDGET (entry);
1915
1916             if (!new_value)
1917               {
1918                 _gtk_entry_reset_im_context (entry);
1919                 if (gtk_widget_has_focus (widget))
1920                   gtk_im_context_focus_out (priv->im_context);
1921
1922                 priv->preedit_length = 0;
1923                 priv->preedit_cursor = 0;
1924               }
1925
1926             priv->editable = new_value;
1927
1928             if (new_value && gtk_widget_has_focus (widget))
1929               gtk_im_context_focus_in (priv->im_context);
1930
1931             gtk_widget_queue_draw (widget);
1932           }
1933       }
1934       break;
1935
1936     case PROP_MAX_LENGTH:
1937       gtk_entry_set_max_length (entry, g_value_get_int (value));
1938       break;
1939       
1940     case PROP_VISIBILITY:
1941       gtk_entry_set_visibility (entry, g_value_get_boolean (value));
1942       break;
1943
1944     case PROP_HAS_FRAME:
1945       gtk_entry_set_has_frame (entry, g_value_get_boolean (value));
1946       break;
1947
1948     case PROP_INNER_BORDER:
1949       gtk_entry_set_inner_border (entry, g_value_get_boxed (value));
1950       break;
1951
1952     case PROP_INVISIBLE_CHAR:
1953       gtk_entry_set_invisible_char (entry, g_value_get_uint (value));
1954       break;
1955
1956     case PROP_ACTIVATES_DEFAULT:
1957       gtk_entry_set_activates_default (entry, g_value_get_boolean (value));
1958       break;
1959
1960     case PROP_WIDTH_CHARS:
1961       gtk_entry_set_width_chars (entry, g_value_get_int (value));
1962       break;
1963
1964     case PROP_TEXT:
1965       gtk_entry_set_text (entry, g_value_get_string (value));
1966       break;
1967
1968     case PROP_XALIGN:
1969       gtk_entry_set_alignment (entry, g_value_get_float (value));
1970       break;
1971
1972     case PROP_TRUNCATE_MULTILINE:
1973       priv->truncate_multiline = g_value_get_boolean (value);
1974       break;
1975
1976     case PROP_SHADOW_TYPE:
1977       priv->shadow_type = g_value_get_enum (value);
1978       break;
1979
1980     case PROP_OVERWRITE_MODE:
1981       gtk_entry_set_overwrite_mode (entry, g_value_get_boolean (value));
1982       break;
1983
1984     case PROP_INVISIBLE_CHAR_SET:
1985       if (g_value_get_boolean (value))
1986         priv->invisible_char_set = TRUE;
1987       else
1988         gtk_entry_unset_invisible_char (entry);
1989       break;
1990
1991     case PROP_CAPS_LOCK_WARNING:
1992       priv->caps_lock_warning = g_value_get_boolean (value);
1993       break;
1994
1995     case PROP_PROGRESS_FRACTION:
1996       gtk_entry_set_progress_fraction (entry, g_value_get_double (value));
1997       break;
1998
1999     case PROP_PROGRESS_PULSE_STEP:
2000       gtk_entry_set_progress_pulse_step (entry, g_value_get_double (value));
2001       break;
2002
2003     case PROP_PLACEHOLDER_TEXT:
2004       gtk_entry_set_placeholder_text (entry, g_value_get_string (value));
2005       break;
2006
2007     case PROP_PIXBUF_PRIMARY:
2008       gtk_entry_set_icon_from_pixbuf (entry,
2009                                       GTK_ENTRY_ICON_PRIMARY,
2010                                       g_value_get_object (value));
2011       break;
2012
2013     case PROP_PIXBUF_SECONDARY:
2014       gtk_entry_set_icon_from_pixbuf (entry,
2015                                       GTK_ENTRY_ICON_SECONDARY,
2016                                       g_value_get_object (value));
2017       break;
2018
2019     case PROP_STOCK_PRIMARY:
2020       gtk_entry_set_icon_from_stock (entry,
2021                                      GTK_ENTRY_ICON_PRIMARY,
2022                                      g_value_get_string (value));
2023       break;
2024
2025     case PROP_STOCK_SECONDARY:
2026       gtk_entry_set_icon_from_stock (entry,
2027                                      GTK_ENTRY_ICON_SECONDARY,
2028                                      g_value_get_string (value));
2029       break;
2030
2031     case PROP_ICON_NAME_PRIMARY:
2032       gtk_entry_set_icon_from_icon_name (entry,
2033                                          GTK_ENTRY_ICON_PRIMARY,
2034                                          g_value_get_string (value));
2035       break;
2036
2037     case PROP_ICON_NAME_SECONDARY:
2038       gtk_entry_set_icon_from_icon_name (entry,
2039                                          GTK_ENTRY_ICON_SECONDARY,
2040                                          g_value_get_string (value));
2041       break;
2042
2043     case PROP_GICON_PRIMARY:
2044       gtk_entry_set_icon_from_gicon (entry,
2045                                      GTK_ENTRY_ICON_PRIMARY,
2046                                      g_value_get_object (value));
2047       break;
2048
2049     case PROP_GICON_SECONDARY:
2050       gtk_entry_set_icon_from_gicon (entry,
2051                                      GTK_ENTRY_ICON_SECONDARY,
2052                                      g_value_get_object (value));
2053       break;
2054
2055     case PROP_ACTIVATABLE_PRIMARY:
2056       gtk_entry_set_icon_activatable (entry,
2057                                       GTK_ENTRY_ICON_PRIMARY,
2058                                       g_value_get_boolean (value));
2059       break;
2060
2061     case PROP_ACTIVATABLE_SECONDARY:
2062       gtk_entry_set_icon_activatable (entry,
2063                                       GTK_ENTRY_ICON_SECONDARY,
2064                                       g_value_get_boolean (value));
2065       break;
2066
2067     case PROP_SENSITIVE_PRIMARY:
2068       gtk_entry_set_icon_sensitive (entry,
2069                                     GTK_ENTRY_ICON_PRIMARY,
2070                                     g_value_get_boolean (value));
2071       break;
2072
2073     case PROP_SENSITIVE_SECONDARY:
2074       gtk_entry_set_icon_sensitive (entry,
2075                                     GTK_ENTRY_ICON_SECONDARY,
2076                                     g_value_get_boolean (value));
2077       break;
2078
2079     case PROP_TOOLTIP_TEXT_PRIMARY:
2080       gtk_entry_set_icon_tooltip_text (entry,
2081                                        GTK_ENTRY_ICON_PRIMARY,
2082                                        g_value_get_string (value));
2083       break;
2084
2085     case PROP_TOOLTIP_TEXT_SECONDARY:
2086       gtk_entry_set_icon_tooltip_text (entry,
2087                                        GTK_ENTRY_ICON_SECONDARY,
2088                                        g_value_get_string (value));
2089       break;
2090
2091     case PROP_TOOLTIP_MARKUP_PRIMARY:
2092       gtk_entry_set_icon_tooltip_markup (entry,
2093                                          GTK_ENTRY_ICON_PRIMARY,
2094                                          g_value_get_string (value));
2095       break;
2096
2097     case PROP_TOOLTIP_MARKUP_SECONDARY:
2098       gtk_entry_set_icon_tooltip_markup (entry,
2099                                          GTK_ENTRY_ICON_SECONDARY,
2100                                          g_value_get_string (value));
2101       break;
2102
2103     case PROP_IM_MODULE:
2104       g_free (priv->im_module);
2105       priv->im_module = g_value_dup_string (value);
2106       if (GTK_IS_IM_MULTICONTEXT (priv->im_context))
2107         gtk_im_multicontext_set_context_id (GTK_IM_MULTICONTEXT (priv->im_context), priv->im_module);
2108       break;
2109
2110     case PROP_EDITING_CANCELED:
2111       priv->editing_canceled = g_value_get_boolean (value);
2112       break;
2113
2114     case PROP_COMPLETION:
2115       gtk_entry_set_completion (entry, GTK_ENTRY_COMPLETION (g_value_get_object (value)));
2116       break;
2117
2118     case PROP_SCROLL_OFFSET:
2119     case PROP_CURSOR_POSITION:
2120     default:
2121       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2122       break;
2123     }
2124 }
2125
2126 static void
2127 gtk_entry_get_property (GObject         *object,
2128                         guint            prop_id,
2129                         GValue          *value,
2130                         GParamSpec      *pspec)
2131 {
2132   GtkEntry *entry = GTK_ENTRY (object);
2133   GtkEntryPrivate *priv = entry->priv;
2134
2135   switch (prop_id)
2136     {
2137     case PROP_BUFFER:
2138       g_value_set_object (value, gtk_entry_get_buffer (entry));
2139       break;
2140
2141     case PROP_CURSOR_POSITION:
2142       g_value_set_int (value, priv->current_pos);
2143       break;
2144
2145     case PROP_SELECTION_BOUND:
2146       g_value_set_int (value, priv->selection_bound);
2147       break;
2148
2149     case PROP_EDITABLE:
2150       g_value_set_boolean (value, priv->editable);
2151       break;
2152
2153     case PROP_MAX_LENGTH:
2154       g_value_set_int (value, gtk_entry_buffer_get_max_length (get_buffer (entry)));
2155       break;
2156
2157     case PROP_VISIBILITY:
2158       g_value_set_boolean (value, priv->visible);
2159       break;
2160
2161     case PROP_HAS_FRAME:
2162       g_value_set_boolean (value, priv->has_frame);
2163       break;
2164
2165     case PROP_INNER_BORDER:
2166       g_value_set_boxed (value, gtk_entry_get_inner_border (entry));
2167       break;
2168
2169     case PROP_INVISIBLE_CHAR:
2170       g_value_set_uint (value, priv->invisible_char);
2171       break;
2172
2173     case PROP_ACTIVATES_DEFAULT:
2174       g_value_set_boolean (value, priv->activates_default);
2175       break;
2176
2177     case PROP_WIDTH_CHARS:
2178       g_value_set_int (value, priv->width_chars);
2179       break;
2180
2181     case PROP_SCROLL_OFFSET:
2182       g_value_set_int (value, priv->scroll_offset);
2183       break;
2184
2185     case PROP_TEXT:
2186       g_value_set_string (value, gtk_entry_get_text (entry));
2187       break;
2188
2189     case PROP_XALIGN:
2190       g_value_set_float (value, gtk_entry_get_alignment (entry));
2191       break;
2192
2193     case PROP_TRUNCATE_MULTILINE:
2194       g_value_set_boolean (value, priv->truncate_multiline);
2195       break;
2196
2197     case PROP_SHADOW_TYPE:
2198       g_value_set_enum (value, priv->shadow_type);
2199       break;
2200
2201     case PROP_OVERWRITE_MODE:
2202       g_value_set_boolean (value, priv->overwrite_mode);
2203       break;
2204
2205     case PROP_TEXT_LENGTH:
2206       g_value_set_uint (value, gtk_entry_buffer_get_length (get_buffer (entry)));
2207       break;
2208
2209     case PROP_INVISIBLE_CHAR_SET:
2210       g_value_set_boolean (value, priv->invisible_char_set);
2211       break;
2212
2213     case PROP_IM_MODULE:
2214       g_value_set_string (value, priv->im_module);
2215       break;
2216
2217     case PROP_CAPS_LOCK_WARNING:
2218       g_value_set_boolean (value, priv->caps_lock_warning);
2219       break;
2220
2221     case PROP_PROGRESS_FRACTION:
2222       g_value_set_double (value, priv->progress_fraction);
2223       break;
2224
2225     case PROP_PROGRESS_PULSE_STEP:
2226       g_value_set_double (value, priv->progress_pulse_fraction);
2227       break;
2228
2229     case PROP_PLACEHOLDER_TEXT:
2230       g_value_set_string (value, gtk_entry_get_placeholder_text (entry));
2231       break;
2232
2233     case PROP_PIXBUF_PRIMARY:
2234       g_value_set_object (value,
2235                           gtk_entry_get_icon_pixbuf (entry,
2236                                                      GTK_ENTRY_ICON_PRIMARY));
2237       break;
2238
2239     case PROP_PIXBUF_SECONDARY:
2240       g_value_set_object (value,
2241                           gtk_entry_get_icon_pixbuf (entry,
2242                                                      GTK_ENTRY_ICON_SECONDARY));
2243       break;
2244
2245     case PROP_STOCK_PRIMARY:
2246       g_value_set_string (value,
2247                           gtk_entry_get_icon_stock (entry,
2248                                                     GTK_ENTRY_ICON_PRIMARY));
2249       break;
2250
2251     case PROP_STOCK_SECONDARY:
2252       g_value_set_string (value,
2253                           gtk_entry_get_icon_stock (entry,
2254                                                     GTK_ENTRY_ICON_SECONDARY));
2255       break;
2256
2257     case PROP_ICON_NAME_PRIMARY:
2258       g_value_set_string (value,
2259                           gtk_entry_get_icon_name (entry,
2260                                                    GTK_ENTRY_ICON_PRIMARY));
2261       break;
2262
2263     case PROP_ICON_NAME_SECONDARY:
2264       g_value_set_string (value,
2265                           gtk_entry_get_icon_name (entry,
2266                                                    GTK_ENTRY_ICON_SECONDARY));
2267       break;
2268
2269     case PROP_GICON_PRIMARY:
2270       g_value_set_object (value,
2271                           gtk_entry_get_icon_gicon (entry,
2272                                                     GTK_ENTRY_ICON_PRIMARY));
2273       break;
2274
2275     case PROP_GICON_SECONDARY:
2276       g_value_set_object (value,
2277                           gtk_entry_get_icon_gicon (entry,
2278                                                     GTK_ENTRY_ICON_SECONDARY));
2279       break;
2280
2281     case PROP_STORAGE_TYPE_PRIMARY:
2282       g_value_set_enum (value,
2283                         gtk_entry_get_icon_storage_type (entry, 
2284                                                          GTK_ENTRY_ICON_PRIMARY));
2285       break;
2286
2287     case PROP_STORAGE_TYPE_SECONDARY:
2288       g_value_set_enum (value,
2289                         gtk_entry_get_icon_storage_type (entry, 
2290                                                          GTK_ENTRY_ICON_SECONDARY));
2291       break;
2292
2293     case PROP_ACTIVATABLE_PRIMARY:
2294       g_value_set_boolean (value,
2295                            gtk_entry_get_icon_activatable (entry, GTK_ENTRY_ICON_PRIMARY));
2296       break;
2297
2298     case PROP_ACTIVATABLE_SECONDARY:
2299       g_value_set_boolean (value,
2300                            gtk_entry_get_icon_activatable (entry, GTK_ENTRY_ICON_SECONDARY));
2301       break;
2302
2303     case PROP_SENSITIVE_PRIMARY:
2304       g_value_set_boolean (value,
2305                            gtk_entry_get_icon_sensitive (entry, GTK_ENTRY_ICON_PRIMARY));
2306       break;
2307
2308     case PROP_SENSITIVE_SECONDARY:
2309       g_value_set_boolean (value,
2310                            gtk_entry_get_icon_sensitive (entry, GTK_ENTRY_ICON_SECONDARY));
2311       break;
2312
2313     case PROP_TOOLTIP_TEXT_PRIMARY:
2314       g_value_take_string (value,
2315                            gtk_entry_get_icon_tooltip_text (entry, GTK_ENTRY_ICON_PRIMARY));
2316       break;
2317
2318     case PROP_TOOLTIP_TEXT_SECONDARY:
2319       g_value_take_string (value,
2320                            gtk_entry_get_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY));
2321       break;
2322
2323     case PROP_TOOLTIP_MARKUP_PRIMARY:
2324       g_value_take_string (value,
2325                            gtk_entry_get_icon_tooltip_markup (entry, GTK_ENTRY_ICON_PRIMARY));
2326       break;
2327
2328     case PROP_TOOLTIP_MARKUP_SECONDARY:
2329       g_value_take_string (value,
2330                            gtk_entry_get_icon_tooltip_markup (entry, GTK_ENTRY_ICON_SECONDARY));
2331       break;
2332
2333     case PROP_EDITING_CANCELED:
2334       g_value_set_boolean (value,
2335                            priv->editing_canceled);
2336       break;
2337
2338     case PROP_COMPLETION:
2339       g_value_set_object (value, G_OBJECT (gtk_entry_get_completion (entry)));
2340       break;
2341
2342     default:
2343       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2344       break;
2345     }
2346 }
2347
2348 static gunichar
2349 find_invisible_char (GtkWidget *widget)
2350 {
2351   PangoLayout *layout;
2352   PangoAttrList *attr_list;
2353   gint i;
2354   gunichar invisible_chars [] = {
2355     0,
2356     0x25cf, /* BLACK CIRCLE */
2357     0x2022, /* BULLET */
2358     0x2731, /* HEAVY ASTERISK */
2359     0x273a  /* SIXTEEN POINTED ASTERISK */
2360   };
2361
2362   gtk_widget_style_get (widget,
2363                         "invisible-char", &invisible_chars[0],
2364                         NULL);
2365
2366   layout = gtk_widget_create_pango_layout (widget, NULL);
2367
2368   attr_list = pango_attr_list_new ();
2369   pango_attr_list_insert (attr_list, pango_attr_fallback_new (FALSE));
2370
2371   pango_layout_set_attributes (layout, attr_list);
2372   pango_attr_list_unref (attr_list);
2373
2374   for (i = (invisible_chars[0] != 0 ? 0 : 1); i < G_N_ELEMENTS (invisible_chars); i++)
2375     {
2376       gchar text[7] = { 0, };
2377       gint len, count;
2378
2379       len = g_unichar_to_utf8 (invisible_chars[i], text);
2380       pango_layout_set_text (layout, text, len);
2381
2382       count = pango_layout_get_unknown_glyphs_count (layout);
2383
2384       if (count == 0)
2385         {
2386           g_object_unref (layout);
2387           return invisible_chars[i];
2388         }
2389     }
2390
2391   g_object_unref (layout);
2392
2393   return '*';
2394 }
2395
2396 static void
2397 gtk_entry_init (GtkEntry *entry)
2398 {
2399   GtkStyleContext *context;
2400   GtkEntryPrivate *priv;
2401
2402   entry->priv = G_TYPE_INSTANCE_GET_PRIVATE (entry,
2403                                              GTK_TYPE_ENTRY,
2404                                              GtkEntryPrivate);
2405   priv = entry->priv;
2406
2407   gtk_widget_set_can_focus (GTK_WIDGET (entry), TRUE);
2408   gtk_widget_set_has_window (GTK_WIDGET (entry), FALSE);
2409
2410   priv->editable = TRUE;
2411   priv->visible = TRUE;
2412   priv->invisible_char = find_invisible_char (GTK_WIDGET (entry));
2413   priv->dnd_position = -1;
2414   priv->width_chars = -1;
2415   priv->is_cell_renderer = FALSE;
2416   priv->editing_canceled = FALSE;
2417   priv->has_frame = TRUE;
2418   priv->truncate_multiline = FALSE;
2419   priv->shadow_type = GTK_SHADOW_IN;
2420   priv->xalign = 0.0;
2421   priv->caps_lock_warning = TRUE;
2422   priv->caps_lock_warning_shown = FALSE;
2423   priv->progress_fraction = 0.0;
2424   priv->progress_pulse_fraction = 0.1;
2425
2426   gtk_drag_dest_set (GTK_WIDGET (entry),
2427                      GTK_DEST_DEFAULT_HIGHLIGHT,
2428                      NULL, 0,
2429                      GDK_ACTION_COPY | GDK_ACTION_MOVE);
2430   gtk_drag_dest_add_text_targets (GTK_WIDGET (entry));
2431
2432   /* This object is completely private. No external entity can gain a reference
2433    * to it; so we create it here and destroy it in finalize().
2434    */
2435   priv->im_context = gtk_im_multicontext_new ();
2436
2437   g_signal_connect (priv->im_context, "commit",
2438                     G_CALLBACK (gtk_entry_commit_cb), entry);
2439   g_signal_connect (priv->im_context, "preedit-changed",
2440                     G_CALLBACK (gtk_entry_preedit_changed_cb), entry);
2441   g_signal_connect (priv->im_context, "retrieve-surrounding",
2442                     G_CALLBACK (gtk_entry_retrieve_surrounding_cb), entry);
2443   g_signal_connect (priv->im_context, "delete-surrounding",
2444                     G_CALLBACK (gtk_entry_delete_surrounding_cb), entry);
2445
2446   context = gtk_widget_get_style_context (GTK_WIDGET (entry));
2447   gtk_style_context_add_class (context, GTK_STYLE_CLASS_ENTRY);
2448 }
2449
2450 static gint
2451 get_icon_width (GtkEntry             *entry,
2452                 GtkEntryIconPosition  icon_pos)
2453 {
2454   GtkEntryPrivate *priv = entry->priv;
2455   EntryIconInfo *icon_info = priv->icons[icon_pos];
2456   GdkScreen *screen;
2457   GtkSettings *settings;
2458   gint menu_icon_width;
2459
2460   if (!icon_info || icon_info->pixbuf == NULL)
2461     return 0;
2462
2463   screen = gtk_widget_get_screen (GTK_WIDGET (entry));
2464   settings = gtk_settings_get_for_screen (screen);
2465
2466   gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
2467                                      &menu_icon_width, NULL);
2468
2469   return MAX (gdk_pixbuf_get_width (icon_info->pixbuf), menu_icon_width);
2470 }
2471
2472 static void
2473 get_icon_allocations (GtkEntry      *entry,
2474                       GtkAllocation *primary,
2475                       GtkAllocation *secondary)
2476
2477 {
2478   GtkEntryPrivate *priv = entry->priv;
2479   gint x, y, width, height;
2480
2481   get_text_area_size (entry, &x, &y, &width, &height);
2482
2483   if (gtk_widget_has_focus (GTK_WIDGET (entry)) && !priv->interior_focus)
2484     y += priv->focus_width;
2485
2486   primary->y = y;
2487   primary->height = height;
2488   primary->width = get_icon_width (entry, GTK_ENTRY_ICON_PRIMARY);
2489   if (primary->width > 0)
2490     primary->width += 2 * priv->icon_margin;
2491
2492   secondary->y = y;
2493   secondary->height = height;
2494   secondary->width = get_icon_width (entry, GTK_ENTRY_ICON_SECONDARY);
2495   if (secondary->width > 0)
2496     secondary->width += 2 * priv->icon_margin;
2497
2498   if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL)
2499     {
2500       primary->x = x + width - primary->width;
2501       secondary->x = x;
2502     }
2503   else
2504     {
2505       primary->x = x;
2506       secondary->x = x + width - secondary->width;
2507     }
2508 }
2509
2510
2511 static void
2512 begin_change (GtkEntry *entry)
2513 {
2514   GtkEntryPrivate *priv = entry->priv;
2515
2516   priv->change_count++;
2517 }
2518
2519 static void
2520 end_change (GtkEntry *entry)
2521 {
2522   GtkEditable *editable = GTK_EDITABLE (entry);
2523   GtkEntryPrivate *priv = entry->priv;
2524
2525   g_return_if_fail (priv->change_count > 0);
2526
2527   priv->change_count--;
2528
2529   if (priv->change_count == 0)
2530     {
2531        if (priv->real_changed)
2532          {
2533            g_signal_emit_by_name (editable, "changed");
2534            priv->real_changed = FALSE;
2535          }
2536     }
2537 }
2538
2539 static void
2540 emit_changed (GtkEntry *entry)
2541 {
2542   GtkEditable *editable = GTK_EDITABLE (entry);
2543   GtkEntryPrivate *priv = entry->priv;
2544
2545   if (priv->change_count == 0)
2546     g_signal_emit_by_name (editable, "changed");
2547   else
2548     priv->real_changed = TRUE;
2549 }
2550
2551 static void
2552 gtk_entry_destroy (GtkWidget *widget)
2553 {
2554   GtkEntry *entry = GTK_ENTRY (widget);
2555   GtkEntryPrivate *priv = entry->priv;
2556
2557   priv->current_pos = priv->selection_bound = 0;
2558   _gtk_entry_reset_im_context (entry);
2559   gtk_entry_reset_layout (entry);
2560
2561   if (priv->blink_timeout)
2562     {
2563       g_source_remove (priv->blink_timeout);
2564       priv->blink_timeout = 0;
2565     }
2566
2567   if (priv->recompute_idle)
2568     {
2569       g_source_remove (priv->recompute_idle);
2570       priv->recompute_idle = 0;
2571     }
2572
2573   GTK_WIDGET_CLASS (gtk_entry_parent_class)->destroy (widget);
2574 }
2575
2576 static void
2577 gtk_entry_dispose (GObject *object)
2578 {
2579   GtkEntry *entry = GTK_ENTRY (object);
2580   GtkEntryPrivate *priv = entry->priv;
2581
2582   gtk_entry_set_icon_from_pixbuf (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
2583   gtk_entry_set_icon_tooltip_markup (entry, GTK_ENTRY_ICON_PRIMARY, NULL);
2584   gtk_entry_set_icon_from_pixbuf (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
2585   gtk_entry_set_icon_tooltip_markup (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
2586
2587   if (priv->buffer)
2588     {
2589       buffer_disconnect_signals (entry);
2590       g_object_unref (priv->buffer);
2591       priv->buffer = NULL;
2592     }
2593
2594   G_OBJECT_CLASS (gtk_entry_parent_class)->dispose (object);
2595 }
2596
2597 static void
2598 gtk_entry_finalize (GObject *object)
2599 {
2600   GtkEntry *entry = GTK_ENTRY (object);
2601   GtkEntryPrivate *priv = entry->priv;
2602   EntryIconInfo *icon_info = NULL;
2603   gint i;
2604
2605   for (i = 0; i < MAX_ICONS; i++)
2606     {
2607       if ((icon_info = priv->icons[i]) != NULL)
2608         {
2609           if (icon_info->target_list != NULL)
2610             {
2611               gtk_target_list_unref (icon_info->target_list);
2612               icon_info->target_list = NULL;
2613             }
2614
2615           g_slice_free (EntryIconInfo, icon_info);
2616           priv->icons[i] = NULL;
2617         }
2618     }
2619
2620   gtk_entry_set_completion (entry, NULL);
2621
2622   if (priv->cached_layout)
2623     g_object_unref (priv->cached_layout);
2624
2625   g_object_unref (priv->im_context);
2626
2627   if (priv->blink_timeout)
2628     g_source_remove (priv->blink_timeout);
2629
2630   if (priv->recompute_idle)
2631     g_source_remove (priv->recompute_idle);
2632
2633   g_free (priv->placeholder_text);
2634   g_free (priv->im_module);
2635
2636   G_OBJECT_CLASS (gtk_entry_parent_class)->finalize (object);
2637 }
2638
2639 static DisplayMode
2640 gtk_entry_get_display_mode (GtkEntry *entry)
2641 {
2642   GtkEntryPrivate *priv = entry->priv;
2643
2644   if (priv->visible)
2645     return DISPLAY_NORMAL;
2646
2647   if (priv->invisible_char == 0 && priv->invisible_char_set)
2648     return DISPLAY_BLANK;
2649
2650   return DISPLAY_INVISIBLE;
2651 }
2652
2653 static gchar*
2654 gtk_entry_get_display_text (GtkEntry *entry,
2655                             gint      start_pos,
2656                             gint      end_pos)
2657 {
2658   GtkEntryPasswordHint *password_hint;
2659   GtkEntryPrivate *priv;
2660   gunichar invisible_char;
2661   const gchar *start;
2662   const gchar *end;
2663   const gchar *text;
2664   gchar char_str[7];
2665   gint char_len;
2666   GString *str;
2667   guint length;
2668   gint i;
2669
2670   priv = entry->priv;
2671   text = gtk_entry_buffer_get_text (get_buffer (entry));
2672   length = gtk_entry_buffer_get_length (get_buffer (entry));
2673
2674   if (end_pos < 0)
2675     end_pos = length;
2676   if (start_pos > length)
2677     start_pos = length;
2678
2679   if (end_pos <= start_pos)
2680       return g_strdup ("");
2681   else if (priv->visible)
2682     {
2683       start = g_utf8_offset_to_pointer (text, start_pos);
2684       end = g_utf8_offset_to_pointer (start, end_pos - start_pos);
2685       return g_strndup (start, end - start);
2686     }
2687   else
2688     {
2689       str = g_string_sized_new (length * 2);
2690
2691       /* Figure out what our invisible char is and encode it */
2692       if (!priv->invisible_char)
2693           invisible_char = priv->invisible_char_set ? ' ' : '*';
2694       else
2695           invisible_char = priv->invisible_char;
2696       char_len = g_unichar_to_utf8 (invisible_char, char_str);
2697
2698       /*
2699        * Add hidden characters for each character in the text
2700        * buffer. If there is a password hint, then keep that
2701        * character visible.
2702        */
2703
2704       password_hint = g_object_get_qdata (G_OBJECT (entry), quark_password_hint);
2705       for (i = start_pos; i < end_pos; ++i)
2706         {
2707           if (password_hint && i == password_hint->position)
2708             {
2709               start = g_utf8_offset_to_pointer (text, i);
2710               g_string_append_len (str, start, g_utf8_next_char (start) - start);
2711             }
2712           else
2713             {
2714               g_string_append_len (str, char_str, char_len);
2715             }
2716         }
2717
2718       return g_string_free (str, FALSE);
2719     }
2720 }
2721
2722 static void
2723 update_cursors (GtkWidget *widget)
2724 {
2725   GtkEntry *entry = GTK_ENTRY (widget);
2726   GtkEntryPrivate *priv = entry->priv;
2727   EntryIconInfo *icon_info = NULL;
2728   GdkDisplay *display;
2729   GdkCursor *cursor;
2730   gint i;
2731
2732   for (i = 0; i < MAX_ICONS; i++)
2733     {
2734       if ((icon_info = priv->icons[i]) != NULL)
2735         {
2736           if (icon_info->pixbuf != NULL && icon_info->window != NULL)
2737             gdk_window_show_unraised (icon_info->window);
2738
2739           /* The icon windows are not children of the visible entry window,
2740            * thus we can't just inherit the xterm cursor. Slight complication 
2741            * here is that for the entry, insensitive => arrow cursor, but for 
2742            * an icon in a sensitive entry, insensitive => xterm cursor.
2743            */
2744           if (gtk_widget_is_sensitive (widget) &&
2745               (icon_info->insensitive || 
2746                (icon_info->nonactivatable && icon_info->target_list == NULL)))
2747             {
2748               display = gtk_widget_get_display (widget);
2749               cursor = gdk_cursor_new_for_display (display, GDK_XTERM);
2750               gdk_window_set_cursor (icon_info->window, cursor);
2751               g_object_unref (cursor);
2752             }
2753           else
2754             {
2755               gdk_window_set_cursor (icon_info->window, NULL);
2756             }
2757         }
2758     }
2759 }
2760
2761 static void
2762 realize_icon_info (GtkWidget            *widget, 
2763                    GtkEntryIconPosition  icon_pos)
2764 {
2765   GtkEntry *entry = GTK_ENTRY (widget);
2766   GtkEntryPrivate *priv = entry->priv;
2767   EntryIconInfo *icon_info = priv->icons[icon_pos];
2768   GdkWindowAttr attributes;
2769   gint attributes_mask;
2770
2771   g_return_if_fail (icon_info != NULL);
2772
2773   attributes.x = 0;
2774   attributes.y = 0;
2775   attributes.width = 1;
2776   attributes.height = 1;
2777   attributes.window_type = GDK_WINDOW_CHILD;
2778   attributes.wclass = GDK_INPUT_ONLY;
2779   attributes.event_mask = gtk_widget_get_events (widget);
2780   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
2781                                 GDK_BUTTON_RELEASE_MASK |
2782                                 GDK_BUTTON1_MOTION_MASK |
2783                                 GDK_BUTTON3_MOTION_MASK |
2784                                 GDK_POINTER_MOTION_HINT_MASK |
2785                                 GDK_POINTER_MOTION_MASK |
2786                                 GDK_ENTER_NOTIFY_MASK |
2787                             GDK_LEAVE_NOTIFY_MASK);
2788   attributes_mask = GDK_WA_X | GDK_WA_Y;
2789
2790   icon_info->window = gdk_window_new (gtk_widget_get_window (widget),
2791                                       &attributes,
2792                                       attributes_mask);
2793   gdk_window_set_user_data (icon_info->window, widget);
2794
2795   gtk_widget_queue_resize (widget);
2796 }
2797
2798 static EntryIconInfo*
2799 construct_icon_info (GtkWidget            *widget, 
2800                      GtkEntryIconPosition  icon_pos)
2801 {
2802   GtkEntry *entry = GTK_ENTRY (widget);
2803   GtkEntryPrivate *priv = entry->priv;
2804   EntryIconInfo *icon_info;
2805
2806   g_return_val_if_fail (priv->icons[icon_pos] == NULL, NULL);
2807
2808   icon_info = g_slice_new0 (EntryIconInfo);
2809   priv->icons[icon_pos] = icon_info;
2810
2811   if (gtk_widget_get_realized (widget))
2812     realize_icon_info (widget, icon_pos);
2813
2814   return icon_info;
2815 }
2816
2817 static void
2818 gtk_entry_map (GtkWidget *widget)
2819 {
2820   GtkEntry *entry = GTK_ENTRY (widget);
2821   GtkEntryPrivate *priv = entry->priv;
2822   EntryIconInfo *icon_info = NULL;
2823   gint i;
2824
2825   GTK_WIDGET_CLASS (gtk_entry_parent_class)->map (widget);
2826
2827   gdk_window_show (priv->text_area);
2828
2829   for (i = 0; i < MAX_ICONS; i++)
2830     {
2831       if ((icon_info = priv->icons[i]) != NULL)
2832         {
2833           if (icon_info->pixbuf != NULL && icon_info->window != NULL)
2834             gdk_window_show (icon_info->window);
2835         }
2836     }
2837
2838   update_cursors (widget);
2839 }
2840
2841 static void
2842 gtk_entry_unmap (GtkWidget *widget)
2843 {
2844   GtkEntry *entry = GTK_ENTRY (widget);
2845   GtkEntryPrivate *priv = entry->priv;
2846   EntryIconInfo *icon_info = NULL;
2847   gint i;
2848
2849   for (i = 0; i < MAX_ICONS; i++)
2850     {
2851       if ((icon_info = priv->icons[i]) != NULL)
2852         {
2853           if (icon_info->pixbuf != NULL && icon_info->window != NULL)
2854             gdk_window_hide (icon_info->window);
2855         }
2856     }
2857
2858   gdk_window_hide (priv->text_area);
2859
2860   GTK_WIDGET_CLASS (gtk_entry_parent_class)->unmap (widget);
2861 }
2862
2863 static void
2864 gtk_entry_realize (GtkWidget *widget)
2865 {
2866   GtkEntry *entry;
2867   GtkEntryPrivate *priv;
2868   EntryIconInfo *icon_info;
2869   GdkWindow *window;
2870   GdkWindowAttr attributes;
2871   gint attributes_mask;
2872   gint frame_x, frame_y;
2873   int i;
2874
2875   gtk_widget_set_realized (widget, TRUE);
2876   window = gtk_widget_get_parent_window (widget);
2877   gtk_widget_set_window (widget, window);
2878   g_object_ref (window);
2879
2880   entry = GTK_ENTRY (widget);
2881   priv = entry->priv;
2882
2883   attributes.window_type = GDK_WINDOW_CHILD;
2884   attributes.wclass = GDK_INPUT_ONLY;
2885   attributes.event_mask = gtk_widget_get_events (widget);
2886   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
2887                             GDK_BUTTON_RELEASE_MASK |
2888                             GDK_BUTTON1_MOTION_MASK |
2889                             GDK_BUTTON3_MOTION_MASK |
2890                             GDK_POINTER_MOTION_HINT_MASK |
2891                             GDK_POINTER_MOTION_MASK |
2892                             GDK_ENTER_NOTIFY_MASK |
2893                             GDK_LEAVE_NOTIFY_MASK);
2894   attributes_mask = GDK_WA_X | GDK_WA_Y;
2895
2896   get_text_area_size (entry, &attributes.x, &attributes.y, &attributes.width, &attributes.height);
2897
2898   get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
2899   attributes.x += frame_x;
2900   attributes.y += frame_y;
2901
2902   if (gtk_widget_is_sensitive (widget))
2903     {
2904       attributes.cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_XTERM);
2905       attributes_mask |= GDK_WA_CURSOR;
2906     }
2907
2908   priv->text_area = gdk_window_new (gtk_widget_get_window (widget),
2909                                     &attributes,
2910                                     attributes_mask);
2911
2912   gdk_window_set_user_data (priv->text_area, entry);
2913
2914   if (attributes_mask & GDK_WA_CURSOR)
2915     g_object_unref (attributes.cursor);
2916
2917   gtk_im_context_set_client_window (priv->im_context, priv->text_area);
2918
2919   gtk_entry_adjust_scroll (entry);
2920   gtk_entry_update_primary_selection (entry);
2921
2922
2923   /* If the icon positions are already setup, create their windows.
2924    * Otherwise if they don't exist yet, then construct_icon_info()
2925    * will create the windows once the widget is already realized.
2926    */
2927   for (i = 0; i < MAX_ICONS; i++)
2928     {
2929       if ((icon_info = priv->icons[i]) != NULL)
2930         {
2931           if (icon_info->window == NULL)
2932             realize_icon_info (widget, i);
2933         }
2934     }
2935 }
2936
2937 static void
2938 gtk_entry_unrealize (GtkWidget *widget)
2939 {
2940   GtkEntry *entry = GTK_ENTRY (widget);
2941   GtkEntryPrivate *priv = entry->priv;
2942   GtkClipboard *clipboard;
2943   EntryIconInfo *icon_info;
2944   gint i;
2945
2946   gtk_entry_reset_layout (entry);
2947   
2948   gtk_im_context_set_client_window (priv->im_context, NULL);
2949
2950   clipboard = gtk_widget_get_clipboard (widget, GDK_SELECTION_PRIMARY);
2951   if (gtk_clipboard_get_owner (clipboard) == G_OBJECT (entry))
2952     gtk_clipboard_clear (clipboard);
2953   
2954   if (priv->text_area)
2955     {
2956       gdk_window_set_user_data (priv->text_area, NULL);
2957       gdk_window_destroy (priv->text_area);
2958       priv->text_area = NULL;
2959     }
2960
2961   if (priv->popup_menu)
2962     {
2963       gtk_widget_destroy (priv->popup_menu);
2964       priv->popup_menu = NULL;
2965     }
2966
2967   GTK_WIDGET_CLASS (gtk_entry_parent_class)->unrealize (widget);
2968
2969   for (i = 0; i < MAX_ICONS; i++)
2970     {
2971       if ((icon_info = priv->icons[i]) != NULL)
2972         {
2973           if (icon_info->window != NULL)
2974             {
2975               gdk_window_destroy (icon_info->window);
2976               icon_info->window = NULL;
2977             }
2978         }
2979     }
2980 }
2981
2982 void
2983 _gtk_entry_get_borders (GtkEntry *entry,
2984                         gint     *xborder,
2985                         gint     *yborder)
2986 {
2987   GtkEntryPrivate *priv = entry->priv;
2988   GtkWidget *widget = GTK_WIDGET (entry);
2989
2990   if (priv->has_frame)
2991     {
2992       GtkStyleContext *context;
2993       GtkBorder padding;
2994
2995       context = gtk_widget_get_style_context (widget);
2996       gtk_style_context_get_padding (context, 0, &padding);
2997
2998       *xborder = padding.left;
2999       *yborder = padding.top;
3000     }
3001   else
3002     {
3003       *xborder = 0;
3004       *yborder = 0;
3005     }
3006
3007   if (!priv->interior_focus)
3008     {
3009       *xborder += priv->focus_width;
3010       *yborder += priv->focus_width;
3011     }
3012 }
3013
3014 static void
3015 gtk_entry_get_preferred_width (GtkWidget *widget,
3016                                gint      *minimum,
3017                                gint      *natural)
3018 {
3019   GtkEntry *entry = GTK_ENTRY (widget);
3020   GtkEntryPrivate *priv = entry->priv;
3021   PangoFontMetrics *metrics;
3022   gint xborder, yborder;
3023   GtkBorder inner_border;
3024   PangoContext *context;
3025   GtkStyleContext *style_context;
3026   GtkStateFlags state;
3027   gint icon_widths = 0;
3028   gint icon_width, i;
3029   gint width;
3030
3031   context = gtk_widget_get_pango_context (widget);
3032
3033   style_context = gtk_widget_get_style_context (widget);
3034   state = gtk_widget_get_state_flags (widget);
3035
3036   metrics = pango_context_get_metrics (context,
3037                                        gtk_style_context_get_font (style_context, state),
3038                                        pango_context_get_language (context));
3039
3040   _gtk_entry_get_borders (entry, &xborder, &yborder);
3041   _gtk_entry_effective_inner_border (entry, &inner_border);
3042
3043   if (priv->width_chars < 0)
3044     width = MIN_ENTRY_WIDTH + xborder * 2 + inner_border.left + inner_border.right;
3045   else
3046     {
3047       gint char_width = pango_font_metrics_get_approximate_char_width (metrics);
3048       gint digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
3049       gint char_pixels = (MAX (char_width, digit_width) + PANGO_SCALE - 1) / PANGO_SCALE;
3050
3051       width = char_pixels * priv->width_chars + xborder * 2 + inner_border.left + inner_border.right;
3052     }
3053
3054   for (i = 0; i < MAX_ICONS; i++)
3055     {
3056       icon_width = get_icon_width (entry, i);
3057       if (icon_width > 0)
3058         icon_widths += icon_width + 2 * priv->icon_margin;
3059     }
3060
3061   if (icon_widths > width)
3062     width += icon_widths;
3063
3064   pango_font_metrics_unref (metrics);
3065
3066   *minimum = width;
3067   *natural = width;
3068 }
3069
3070 static void
3071 gtk_entry_get_preferred_height (GtkWidget *widget,
3072                                 gint      *minimum,
3073                                 gint      *natural)
3074 {
3075   GtkEntry *entry = GTK_ENTRY (widget);
3076   GtkEntryPrivate *priv = entry->priv;
3077   PangoFontMetrics *metrics;
3078   gint xborder, yborder;
3079   GtkBorder inner_border;
3080   GtkStyleContext *style_context;
3081   GtkStateFlags state;
3082   PangoContext *context;
3083   gint height;
3084
3085   context = gtk_widget_get_pango_context (widget);
3086
3087   style_context = gtk_widget_get_style_context (widget);
3088   state = gtk_widget_get_state_flags (widget);
3089
3090   metrics = pango_context_get_metrics (context,
3091                                        gtk_style_context_get_font (style_context, state),
3092                                        pango_context_get_language (context));
3093
3094   priv->ascent = pango_font_metrics_get_ascent (metrics);
3095   priv->descent = pango_font_metrics_get_descent (metrics);
3096
3097   _gtk_entry_get_borders (entry, &xborder, &yborder);
3098   _gtk_entry_effective_inner_border (entry, &inner_border);
3099
3100   height = PANGO_PIXELS (priv->ascent + priv->descent) + yborder * 2 + inner_border.top + inner_border.bottom;
3101
3102   pango_font_metrics_unref (metrics);
3103
3104   *minimum = height;
3105   *natural = height;
3106 }
3107
3108 static void
3109 place_windows (GtkEntry *entry)
3110 {
3111   GtkWidget *widget = GTK_WIDGET (entry);
3112   GtkEntryPrivate *priv = entry->priv;
3113   gint x, y, width, height;
3114   gint frame_x, frame_y;
3115   GtkAllocation primary;
3116   GtkAllocation secondary;
3117   EntryIconInfo *icon_info = NULL;
3118
3119   get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
3120   get_text_area_size (entry, &x, &y, &width, &height);
3121   get_icon_allocations (entry, &primary, &secondary);
3122
3123   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3124     y += priv->focus_width;
3125
3126   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
3127     x += secondary.width;
3128   else
3129     x += primary.width;
3130   width -= primary.width + secondary.width;
3131
3132   x += frame_x;
3133   y += frame_y;
3134   primary.x += frame_x;
3135   primary.y += frame_y;
3136   secondary.x += frame_x;
3137   secondary.y += frame_y;
3138
3139   if ((icon_info = priv->icons[GTK_ENTRY_ICON_PRIMARY]) != NULL)
3140     gdk_window_move_resize (icon_info->window,
3141                             primary.x, primary.y,
3142                             primary.width, primary.height);
3143
3144   if ((icon_info = priv->icons[GTK_ENTRY_ICON_SECONDARY]) != NULL)
3145     gdk_window_move_resize (icon_info->window,
3146                             secondary.x, secondary.y,
3147                             secondary.width, secondary.height);
3148
3149   gdk_window_move_resize (priv->text_area, x, y, width, height);
3150 }
3151
3152 static void
3153 gtk_entry_get_text_area_size (GtkEntry *entry,
3154                               gint     *x,
3155                               gint     *y,
3156                               gint     *width,
3157                               gint     *height)
3158 {
3159   GtkEntryPrivate *priv = entry->priv;
3160   GtkWidget *widget = GTK_WIDGET (entry);
3161   GtkAllocation allocation;
3162   GtkRequisition requisition;
3163   gint frame_height;
3164   gint xborder, yborder;
3165
3166   gtk_widget_get_preferred_size (widget, &requisition, NULL);
3167   gtk_widget_get_allocation (widget, &allocation);
3168   _gtk_entry_get_borders (entry, &xborder, &yborder);
3169
3170   if (gtk_widget_get_realized (widget))
3171     get_frame_size (entry, TRUE, NULL, NULL, NULL, &frame_height);
3172   else
3173     frame_height = requisition.height;
3174
3175   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3176     frame_height -= 2 * priv->focus_width;
3177
3178   if (x)
3179     *x = xborder;
3180
3181   if (y)
3182     *y = frame_height / 2 - (requisition.height - yborder * 2) / 2;
3183
3184   if (width)
3185     *width = allocation.width - xborder * 2;
3186
3187   if (height)
3188     *height = requisition.height - yborder * 2;
3189 }
3190
3191 static void
3192 get_text_area_size (GtkEntry *entry,
3193                     gint     *x,
3194                     gint     *y,
3195                     gint     *width,
3196                     gint     *height)
3197 {
3198   GtkEntryClass *class;
3199
3200   g_return_if_fail (GTK_IS_ENTRY (entry));
3201
3202   class = GTK_ENTRY_GET_CLASS (entry);
3203
3204   if (class->get_text_area_size)
3205     class->get_text_area_size (entry, x, y, width, height);
3206 }
3207
3208
3209 static void
3210 get_frame_size (GtkEntry *entry,
3211                 gboolean  relative_to_window,
3212                 gint     *x,
3213                 gint     *y,
3214                 gint     *width,
3215                 gint     *height)
3216 {
3217   GtkEntryPrivate *priv = entry->priv;
3218   GtkAllocation allocation;
3219   GtkRequisition requisition;
3220   GtkWidget *widget = GTK_WIDGET (entry);
3221
3222   gtk_widget_get_preferred_size (widget, &requisition, NULL);
3223   gtk_widget_get_allocation (widget, &allocation);
3224
3225   if (x)
3226     *x = relative_to_window ? allocation.x : 0;
3227
3228   if (y)
3229     {
3230       if (priv->is_cell_renderer)
3231         *y = 0;
3232       else
3233         *y = (allocation.height - requisition.height) / 2;
3234
3235       if (relative_to_window)
3236         *y += allocation.y;
3237     }
3238
3239   if (width)
3240     *width = allocation.width;
3241
3242   if (height)
3243     {
3244       if (priv->is_cell_renderer)
3245         *height = allocation.height;
3246       else
3247         *height = requisition.height;
3248     }
3249 }
3250
3251 void
3252 _gtk_entry_effective_inner_border (GtkEntry  *entry,
3253                                    GtkBorder *border)
3254 {
3255   GtkBorder *tmp_border;
3256
3257   tmp_border = g_object_get_qdata (G_OBJECT (entry), quark_inner_border);
3258
3259   if (tmp_border)
3260     {
3261       *border = *tmp_border;
3262       return;
3263     }
3264
3265   gtk_widget_style_get (GTK_WIDGET (entry), "inner-border", &tmp_border, NULL);
3266
3267   if (tmp_border)
3268     {
3269       *border = *tmp_border;
3270       gtk_border_free (tmp_border);
3271       return;
3272     }
3273
3274   *border = default_inner_border;
3275 }
3276
3277 static void
3278 gtk_entry_size_allocate (GtkWidget     *widget,
3279                          GtkAllocation *allocation)
3280 {
3281   GtkEntry *entry = GTK_ENTRY (widget);
3282
3283   gtk_widget_set_allocation (widget, allocation);
3284
3285   if (gtk_widget_get_realized (widget))
3286     {
3287       GtkEntryCompletion* completion;
3288
3289       place_windows (entry);
3290       gtk_entry_recompute (entry);
3291
3292       completion = gtk_entry_get_completion (entry);
3293       if (completion && gtk_widget_get_mapped (completion->priv->popup_window))
3294         _gtk_entry_completion_resize_popup (completion);
3295     }
3296 }
3297
3298 static gboolean
3299 should_prelight (GtkEntry             *entry,
3300                  GtkEntryIconPosition  icon_pos)
3301 {
3302   GtkEntryPrivate *priv = entry->priv;
3303   EntryIconInfo *icon_info = priv->icons[icon_pos];
3304   gboolean prelight;
3305
3306   if (!icon_info)
3307     return FALSE;
3308
3309   if (icon_info->nonactivatable && icon_info->target_list == NULL)
3310     return FALSE;
3311
3312   if (icon_info->pressed)
3313     return FALSE;
3314
3315   gtk_widget_style_get (GTK_WIDGET (entry),
3316                         "icon-prelight", &prelight,
3317                         NULL);
3318
3319   return prelight;
3320 }
3321
3322 static void
3323 draw_icon (GtkWidget            *widget,
3324            cairo_t              *cr,
3325            GtkEntryIconPosition  icon_pos)
3326 {
3327   GtkEntry *entry = GTK_ENTRY (widget);
3328   GtkEntryPrivate *priv = entry->priv;
3329   EntryIconInfo *icon_info = priv->icons[icon_pos];
3330   GdkPixbuf *pixbuf;
3331   gint x, y, width, height;
3332   GtkStyleContext *context;
3333   GtkIconSource *icon_source;
3334   GtkStateFlags state;
3335
3336   if (!icon_info)
3337     return;
3338
3339   gtk_entry_ensure_pixbuf (entry, icon_pos);
3340
3341   if (icon_info->pixbuf == NULL)
3342     return;
3343
3344   width = gdk_window_get_width (icon_info->window);
3345   height = gdk_window_get_height (icon_info->window);
3346
3347   /* size_allocate hasn't been called yet. These are the default values.
3348    */
3349   if (width == 1 || height == 1)
3350     return;
3351
3352   pixbuf = icon_info->pixbuf;
3353   g_object_ref (pixbuf);
3354
3355   if (gdk_pixbuf_get_height (pixbuf) > height)
3356     {
3357       GdkPixbuf *temp_pixbuf;
3358       gint scale;
3359
3360       scale = height - 2 * priv->icon_margin;
3361       temp_pixbuf = gdk_pixbuf_scale_simple (pixbuf, scale, scale,
3362                                              GDK_INTERP_BILINEAR);
3363       g_object_unref (pixbuf);
3364       pixbuf = temp_pixbuf;
3365     }
3366
3367   x = (width  - gdk_pixbuf_get_width (pixbuf)) / 2;
3368   y = (height - gdk_pixbuf_get_height (pixbuf)) / 2;
3369
3370   icon_source = gtk_icon_source_new ();
3371   gtk_icon_source_set_pixbuf (icon_source, pixbuf);
3372   gtk_icon_source_set_state_wildcarded (icon_source, TRUE);
3373
3374   state = 0;
3375   if (!gtk_widget_is_sensitive (widget) || icon_info->insensitive)
3376     state |= GTK_STATE_FLAG_INSENSITIVE;
3377   else if (icon_info->prelight)
3378     state |= GTK_STATE_FLAG_PRELIGHT;
3379
3380   context = gtk_widget_get_style_context (widget);
3381   gtk_style_context_save (context);
3382   gtk_style_context_set_state (context, state);
3383   pixbuf = gtk_render_icon_pixbuf (context, icon_source, (GtkIconSize)-1);
3384   gtk_style_context_restore (context);
3385
3386   gtk_icon_source_free (icon_source);
3387
3388   gdk_cairo_set_source_pixbuf (cr, pixbuf, x, y);
3389   cairo_paint (cr);
3390
3391   g_object_unref (pixbuf);
3392 }
3393
3394
3395 static void
3396 gtk_entry_draw_frame (GtkWidget       *widget,
3397                       GtkStyleContext *context,
3398                       cairo_t         *cr)
3399 {
3400   GtkEntry *entry = GTK_ENTRY (widget);
3401   GtkEntryPrivate *priv = entry->priv;
3402   gint x = 0, y = 0, width, height;
3403   GtkAllocation allocation;
3404   gint frame_x, frame_y;
3405
3406   cairo_save (cr);
3407
3408   get_frame_size (GTK_ENTRY (widget), TRUE, &frame_x, &frame_y, &width, &height);
3409   gtk_widget_get_allocation (widget, &allocation);
3410
3411   cairo_translate (cr, frame_x - allocation.x, frame_y - allocation.y);
3412
3413   /* Fix a problem with some themes which assume that entry->text_area's
3414    * width equals widget->window's width
3415    * http://bugzilla.gnome.org/show_bug.cgi?id=466000 */
3416   if (GTK_IS_SPIN_BUTTON (widget))
3417     {
3418       gint xborder, yborder;
3419
3420       gtk_entry_get_text_area_size (GTK_ENTRY (widget), &x, NULL, &width, NULL);
3421       _gtk_entry_get_borders (GTK_ENTRY (widget), &xborder, &yborder);
3422
3423       x -= xborder;
3424       width += xborder * 2;
3425     }
3426
3427   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3428     {
3429       x += priv->focus_width;
3430       y += priv->focus_width;
3431       width -= 2 * priv->focus_width;
3432       height -= 2 * priv->focus_width;
3433     }
3434
3435   gtk_render_background (context, cr,
3436                          x, y, width, height);
3437
3438   if (priv->has_frame)
3439     gtk_render_frame (context, cr,
3440                       x, y, width, height);
3441
3442   gtk_entry_draw_progress (widget, context, cr);
3443
3444   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3445     {
3446       x -= priv->focus_width;
3447       y -= priv->focus_width;
3448       width += 2 * priv->focus_width;
3449       height += 2 * priv->focus_width;
3450
3451       gtk_render_focus (context, cr,
3452                         0, 0, width, height);
3453     }
3454
3455   cairo_restore (cr);
3456 }
3457
3458 static void
3459 get_progress_area (GtkWidget *widget,
3460                    gint       *x,
3461                    gint       *y,
3462                    gint       *width,
3463                    gint       *height)
3464 {
3465   GtkEntry *entry = GTK_ENTRY (widget);
3466   GtkEntryPrivate *private = entry->priv;
3467   GtkBorder *progress_border;
3468
3469   get_text_area_size (entry, x, y, width, height);
3470
3471   if (!private->interior_focus)
3472     {
3473       *x -= private->focus_width;
3474       *y -= private->focus_width;
3475       *width += 2 * private->focus_width;
3476       *height += 2 * private->focus_width;
3477     }
3478
3479   gtk_widget_style_get (widget, "progress-border", &progress_border, NULL);
3480
3481   if (progress_border)
3482     {
3483       *x += progress_border->left;
3484       *y += progress_border->top;
3485       *width -= progress_border->left + progress_border->right;
3486       *height -= progress_border->top + progress_border->bottom;
3487
3488       gtk_border_free (progress_border);
3489     }
3490
3491   if (private->progress_pulse_mode)
3492     {
3493       gdouble value = private->progress_pulse_current;
3494
3495       *x += (gint) floor(value * (*width));
3496       *width = (gint) ceil(private->progress_pulse_fraction * (*width));
3497     }
3498   else if (private->progress_fraction > 0)
3499     {
3500       gdouble value = private->progress_fraction;
3501
3502       if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL)
3503         {
3504           gint bar_width;
3505
3506           bar_width = floor(value * (*width) + 0.5);
3507           *x += *width - bar_width;
3508           *width = bar_width;
3509         }
3510       else
3511         {
3512           *width = (gint) floor(value * (*width) + 0.5);
3513         }
3514     }
3515   else
3516     {
3517       *width = 0;
3518       *height = 0;
3519     }
3520 }
3521
3522 static void
3523 gtk_entry_draw_progress (GtkWidget       *widget,
3524                          GtkStyleContext *context,
3525                          cairo_t         *cr)
3526 {
3527   gint x, y, width, height;
3528
3529   get_progress_area (widget, &x, &y, &width, &height);
3530
3531   if ((width <= 0) || (height <= 0))
3532     return;
3533
3534   gtk_style_context_save (context);
3535   gtk_style_context_add_class (context, GTK_STYLE_CLASS_PROGRESSBAR);
3536
3537   gtk_render_activity (context, cr,
3538                        x, y, width, height);
3539
3540   gtk_style_context_restore (context);
3541 }
3542
3543 static gint
3544 gtk_entry_draw (GtkWidget *widget,
3545                 cairo_t   *cr)
3546 {
3547   GtkEntry *entry = GTK_ENTRY (widget);
3548   GtkStyleContext *context;
3549   GtkStateFlags state;
3550   GtkEntryPrivate *priv = entry->priv;
3551   int i;
3552
3553   context = gtk_widget_get_style_context (widget);
3554   state = gtk_widget_get_state_flags (widget);
3555
3556   gtk_style_context_save (context);
3557   gtk_style_context_set_state (context, state);
3558
3559   if (gtk_cairo_should_draw_window (cr, gtk_widget_get_window (widget)))
3560     {
3561       /* Draw entry_bg, shadow, progress and focus */
3562       gtk_entry_draw_frame (widget, context, cr);
3563
3564       /* Draw text and cursor */
3565       cairo_save (cr);
3566
3567       gtk_cairo_transform_to_window (cr, widget, priv->text_area);
3568
3569       if (priv->dnd_position != -1)
3570         gtk_entry_draw_cursor (GTK_ENTRY (widget), cr, CURSOR_DND);
3571       
3572       gtk_entry_draw_text (GTK_ENTRY (widget), cr);
3573
3574       /* When no text is being displayed at all, don't show the cursor */
3575       if (gtk_entry_get_display_mode (entry) != DISPLAY_BLANK &&
3576           gtk_widget_has_focus (widget) &&
3577           priv->selection_bound == priv->current_pos && priv->cursor_visible)
3578         gtk_entry_draw_cursor (GTK_ENTRY (widget), cr, CURSOR_STANDARD);
3579
3580       cairo_restore (cr);
3581
3582       /* Draw icons */
3583       for (i = 0; i < MAX_ICONS; i++)
3584         {
3585           EntryIconInfo *icon_info = priv->icons[i];
3586
3587           if (icon_info != NULL)
3588             {
3589               cairo_save (cr);
3590
3591               gtk_cairo_transform_to_window (cr, widget, icon_info->window);
3592
3593               draw_icon (widget, cr, i);
3594
3595               cairo_restore (cr);
3596             }
3597         }
3598     }
3599
3600   gtk_style_context_restore (context);
3601
3602   return FALSE;
3603 }
3604
3605 static gint
3606 gtk_entry_enter_notify (GtkWidget *widget,
3607                         GdkEventCrossing *event)
3608 {
3609   GtkEntry *entry = GTK_ENTRY (widget);
3610   GtkEntryPrivate *priv = entry->priv;
3611   gint i;
3612
3613   for (i = 0; i < MAX_ICONS; i++)
3614     {
3615       EntryIconInfo *icon_info = priv->icons[i];
3616
3617       if (icon_info != NULL && event->window == icon_info->window)
3618         {
3619           if (should_prelight (entry, i))
3620             {
3621               icon_info->prelight = TRUE;
3622               gtk_widget_queue_draw (widget);
3623             }
3624
3625           break;
3626         }
3627     }
3628
3629     return FALSE;
3630 }
3631
3632 static gint
3633 gtk_entry_leave_notify (GtkWidget        *widget,
3634                         GdkEventCrossing *event)
3635 {
3636   GtkEntry *entry = GTK_ENTRY (widget);
3637   GtkEntryPrivate *priv = entry->priv;
3638   gint i;
3639
3640   for (i = 0; i < MAX_ICONS; i++)
3641     {
3642       EntryIconInfo *icon_info = priv->icons[i];
3643
3644       if (icon_info != NULL && event->window == icon_info->window)
3645         {
3646           /* a grab means that we may never see the button release */
3647           if (event->mode == GDK_CROSSING_GRAB || event->mode == GDK_CROSSING_GTK_GRAB)
3648             icon_info->pressed = FALSE;
3649
3650           if (should_prelight (entry, i))
3651             {
3652               icon_info->prelight = FALSE;
3653               gtk_widget_queue_draw (widget);
3654             }
3655
3656           break;
3657         }
3658     }
3659
3660   return FALSE;
3661 }
3662
3663 static void
3664 gtk_entry_get_pixel_ranges (GtkEntry  *entry,
3665                             gint     **ranges,
3666                             gint      *n_ranges)
3667 {
3668   gint start_char, end_char;
3669
3670   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start_char, &end_char))
3671     {
3672       PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
3673       PangoLayoutLine *line = pango_layout_get_lines_readonly (layout)->data;
3674       const char *text = pango_layout_get_text (layout);
3675       gint start_index = g_utf8_offset_to_pointer (text, start_char) - text;
3676       gint end_index = g_utf8_offset_to_pointer (text, end_char) - text;
3677       gint real_n_ranges, i;
3678
3679       pango_layout_line_get_x_ranges (line, start_index, end_index, ranges, &real_n_ranges);
3680
3681       if (ranges)
3682         {
3683           gint *r = *ranges;
3684           
3685           for (i = 0; i < real_n_ranges; ++i)
3686             {
3687               r[2 * i + 1] = (r[2 * i + 1] - r[2 * i]) / PANGO_SCALE;
3688               r[2 * i] = r[2 * i] / PANGO_SCALE;
3689             }
3690         }
3691       
3692       if (n_ranges)
3693         *n_ranges = real_n_ranges;
3694     }
3695   else
3696     {
3697       if (n_ranges)
3698         *n_ranges = 0;
3699       if (ranges)
3700         *ranges = NULL;
3701     }
3702 }
3703
3704 static gboolean
3705 in_selection (GtkEntry *entry,
3706               gint      x)
3707 {
3708   gint *ranges;
3709   gint n_ranges, i;
3710   gint retval = FALSE;
3711
3712   gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
3713
3714   for (i = 0; i < n_ranges; ++i)
3715     {
3716       if (x >= ranges[2 * i] && x < ranges[2 * i] + ranges[2 * i + 1])
3717         {
3718           retval = TRUE;
3719           break;
3720         }
3721     }
3722
3723   g_free (ranges);
3724   return retval;
3725 }
3726               
3727 static gint
3728 gtk_entry_button_press (GtkWidget      *widget,
3729                         GdkEventButton *event)
3730 {
3731   GtkEntry *entry = GTK_ENTRY (widget);
3732   GtkEditable *editable = GTK_EDITABLE (widget);
3733   GtkEntryPrivate *priv = entry->priv;
3734   EntryIconInfo *icon_info = NULL;
3735   gint tmp_pos;
3736   gint sel_start, sel_end;
3737   gint i;
3738
3739   for (i = 0; i < MAX_ICONS; i++)
3740     {
3741       icon_info = priv->icons[i];
3742
3743       if (!icon_info || icon_info->insensitive)
3744         continue;
3745
3746       if (event->window == icon_info->window)
3747         {
3748           if (should_prelight (entry, i))
3749             {
3750               icon_info->prelight = FALSE;
3751               gtk_widget_queue_draw (widget);
3752             }
3753
3754           priv->start_x = event->x;
3755           priv->start_y = event->y;
3756           icon_info->pressed = TRUE;
3757
3758           if (!icon_info->nonactivatable)
3759             g_signal_emit (entry, signals[ICON_PRESS], 0, i, event);
3760
3761           return TRUE;
3762         }
3763     }
3764
3765   if (event->window != priv->text_area ||
3766       (priv->button && event->button != priv->button))
3767     return FALSE;
3768
3769   gtk_entry_reset_blink_time (entry);
3770
3771   priv->button = event->button;
3772   
3773   if (!gtk_widget_has_focus (widget))
3774     {
3775       priv->in_click = TRUE;
3776       gtk_widget_grab_focus (widget);
3777       priv->in_click = FALSE;
3778     }
3779   
3780   tmp_pos = gtk_entry_find_position (entry, event->x + priv->scroll_offset);
3781     
3782   if (event->button == 1)
3783     {
3784       gboolean have_selection = gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end);
3785       
3786       priv->select_words = FALSE;
3787       priv->select_lines = FALSE;
3788
3789       if (event->state & GDK_SHIFT_MASK)
3790         {
3791           _gtk_entry_reset_im_context (entry);
3792           
3793           if (!have_selection) /* select from the current position to the clicked position */
3794             sel_start = sel_end = priv->current_pos;
3795           
3796           if (tmp_pos > sel_start && tmp_pos < sel_end)
3797             {
3798               /* Truncate current selection, but keep it as big as possible */
3799               if (tmp_pos - sel_start > sel_end - tmp_pos)
3800                 gtk_entry_set_positions (entry, sel_start, tmp_pos);
3801               else
3802                 gtk_entry_set_positions (entry, tmp_pos, sel_end);
3803             }
3804           else
3805             {
3806               gboolean extend_to_left;
3807               gint start, end;
3808
3809               /* Figure out what click selects and extend current selection */
3810               switch (event->type)
3811                 {
3812                 case GDK_BUTTON_PRESS:
3813                   gtk_entry_set_positions (entry, tmp_pos, tmp_pos);
3814                   break;
3815                   
3816                 case GDK_2BUTTON_PRESS:
3817                   priv->select_words = TRUE;
3818                   gtk_entry_select_word (entry);
3819                   break;
3820                   
3821                 case GDK_3BUTTON_PRESS:
3822                   priv->select_lines = TRUE;
3823                   gtk_entry_select_line (entry);
3824                   break;
3825
3826                 default:
3827                   break;
3828                 }
3829
3830               start = MIN (priv->current_pos, priv->selection_bound);
3831               start = MIN (sel_start, start);
3832               
3833               end = MAX (priv->current_pos, priv->selection_bound);
3834               end = MAX (sel_end, end);
3835
3836               if (tmp_pos == sel_start || tmp_pos == sel_end)
3837                 extend_to_left = (tmp_pos == start);
3838               else
3839                 extend_to_left = (end == sel_end);
3840               
3841               if (extend_to_left)
3842                 gtk_entry_set_positions (entry, start, end);
3843               else
3844                 gtk_entry_set_positions (entry, end, start);
3845             }
3846         }
3847       else /* no shift key */
3848         switch (event->type)
3849         {
3850         case GDK_BUTTON_PRESS:
3851           if (in_selection (entry, event->x + priv->scroll_offset))
3852             {
3853               /* Click inside the selection - we'll either start a drag, or
3854                * clear the selection
3855                */
3856               priv->in_drag = TRUE;
3857               priv->drag_start_x = event->x + priv->scroll_offset;
3858               priv->drag_start_y = event->y;
3859             }
3860           else
3861             gtk_editable_set_position (editable, tmp_pos);
3862           break;
3863  
3864         case GDK_2BUTTON_PRESS:
3865           /* We ALWAYS receive a GDK_BUTTON_PRESS immediately before 
3866            * receiving a GDK_2BUTTON_PRESS so we need to reset
3867            * priv->in_drag which may have been set above
3868            */
3869           priv->in_drag = FALSE;
3870           priv->select_words = TRUE;
3871           gtk_entry_select_word (entry);
3872           break;
3873         
3874         case GDK_3BUTTON_PRESS:
3875           /* We ALWAYS receive a GDK_BUTTON_PRESS immediately before
3876            * receiving a GDK_3BUTTON_PRESS so we need to reset
3877            * priv->in_drag which may have been set above
3878            */
3879           priv->in_drag = FALSE;
3880           priv->select_lines = TRUE;
3881           gtk_entry_select_line (entry);
3882           break;
3883
3884         default:
3885           break;
3886         }
3887
3888       return TRUE;
3889     }
3890   else if (event->button == 2 && event->type == GDK_BUTTON_PRESS)
3891     {
3892       if (priv->editable)
3893         {
3894           priv->insert_pos = tmp_pos;
3895           gtk_entry_paste (entry, GDK_SELECTION_PRIMARY);
3896           return TRUE;
3897         }
3898       else
3899         {
3900           gtk_widget_error_bell (widget);
3901         }
3902     }
3903   else if (event->button == 3 && event->type == GDK_BUTTON_PRESS)
3904     {
3905       gtk_entry_do_popup (entry, event);
3906       priv->button = 0; /* Don't wait for release, since the menu will gtk_grab_add */
3907
3908       return TRUE;
3909     }
3910
3911   return FALSE;
3912 }
3913
3914 static gint
3915 gtk_entry_button_release (GtkWidget      *widget,
3916                           GdkEventButton *event)
3917 {
3918   GtkEntry *entry = GTK_ENTRY (widget);
3919   GtkEntryPrivate *priv = entry->priv;
3920   EntryIconInfo *icon_info = NULL;
3921   gint i;
3922
3923   for (i = 0; i < MAX_ICONS; i++)
3924     {
3925       icon_info = priv->icons[i];
3926
3927       if (!icon_info || icon_info->insensitive)
3928         continue;
3929
3930       if (event->window == icon_info->window)
3931         {
3932           icon_info->pressed = FALSE;
3933
3934           if (should_prelight (entry, i) &&
3935               event->x >= 0 && event->y >= 0 &&
3936               event->x < gdk_window_get_width (icon_info->window) &&
3937               event->y < gdk_window_get_height (icon_info->window))
3938             {
3939               icon_info->prelight = TRUE;
3940               gtk_widget_queue_draw (widget);
3941             }
3942
3943           if (!icon_info->nonactivatable)
3944             g_signal_emit (entry, signals[ICON_RELEASE], 0, i, event);
3945
3946           return TRUE;
3947         }
3948     }
3949
3950   if (event->window != priv->text_area || priv->button != event->button)
3951     return FALSE;
3952
3953   if (priv->in_drag)
3954     {
3955       gint tmp_pos = gtk_entry_find_position (entry, priv->drag_start_x);
3956
3957       gtk_editable_set_position (GTK_EDITABLE (entry), tmp_pos);
3958
3959       priv->in_drag = 0;
3960     }
3961   
3962   priv->button = 0;
3963   
3964   gtk_entry_update_primary_selection (entry);
3965               
3966   return TRUE;
3967 }
3968
3969 static gchar *
3970 _gtk_entry_get_selected_text (GtkEntry *entry)
3971 {
3972   GtkEditable *editable = GTK_EDITABLE (entry);
3973   gint         start_text, end_text;
3974   gchar       *text = NULL;
3975
3976   if (gtk_editable_get_selection_bounds (editable, &start_text, &end_text))
3977     text = gtk_editable_get_chars (editable, start_text, end_text);
3978
3979   return text;
3980 }
3981
3982 static gint
3983 gtk_entry_motion_notify (GtkWidget      *widget,
3984                          GdkEventMotion *event)
3985 {
3986   GtkEntry *entry = GTK_ENTRY (widget);
3987   GtkEntryPrivate *priv = entry->priv;
3988   EntryIconInfo *icon_info = NULL;
3989   gint tmp_pos;
3990   gint i;
3991
3992   for (i = 0; i < MAX_ICONS; i++)
3993     {
3994       icon_info = priv->icons[i];
3995
3996       if (!icon_info || icon_info->insensitive)
3997         continue;
3998
3999       if (event->window == icon_info->window)
4000         {
4001           if (icon_info->pressed &&
4002               icon_info->target_list != NULL &&
4003               gtk_drag_check_threshold (widget,
4004                                         priv->start_x,
4005                                         priv->start_y,
4006                                         event->x,
4007                                         event->y))
4008             {
4009               icon_info->in_drag = TRUE;
4010               icon_info->pressed = FALSE;
4011               gtk_drag_begin (widget,
4012                               icon_info->target_list,
4013                               icon_info->actions,
4014                               1,
4015                               (GdkEvent*)event);
4016             }
4017
4018           return TRUE;
4019         }
4020     }
4021
4022   if (priv->mouse_cursor_obscured)
4023     {
4024       GdkCursor *cursor;
4025
4026       cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_XTERM);
4027       gdk_window_set_cursor (priv->text_area, cursor);
4028       g_object_unref (cursor);
4029       priv->mouse_cursor_obscured = FALSE;
4030     }
4031
4032   if (event->window != priv->text_area || priv->button != 1)
4033     return FALSE;
4034
4035   if (priv->select_lines)
4036     return TRUE;
4037
4038   gdk_event_request_motions (event);
4039
4040   if (priv->in_drag)
4041     {
4042       if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL &&
4043           gtk_drag_check_threshold (widget,
4044                                     priv->drag_start_x, priv->drag_start_y,
4045                                     event->x + priv->scroll_offset, event->y))
4046         {
4047           GdkDragContext *context;
4048           GtkTargetList  *target_list = gtk_target_list_new (NULL, 0);
4049           guint actions = priv->editable ? GDK_ACTION_COPY | GDK_ACTION_MOVE : GDK_ACTION_COPY;
4050           gchar *text = NULL;
4051           cairo_surface_t *surface;
4052
4053           gtk_target_list_add_text_targets (target_list, 0);
4054
4055           text = _gtk_entry_get_selected_text (entry);
4056           surface = _gtk_text_util_create_drag_icon (widget, text, -1);
4057
4058           context = gtk_drag_begin (widget, target_list, actions,
4059                                     priv->button, (GdkEvent *)event);
4060           
4061           if (surface)
4062             gtk_drag_set_icon_surface (context, surface);
4063           else
4064             gtk_drag_set_icon_default (context);
4065           
4066           if (surface)
4067             cairo_surface_destroy (surface);
4068           g_free (text);
4069
4070           priv->in_drag = FALSE;
4071           priv->button = 0;
4072           
4073           gtk_target_list_unref (target_list);
4074         }
4075     }
4076   else
4077     {
4078       if (event->y < 0)
4079         tmp_pos = 0;
4080       else if (event->y >= gdk_window_get_height (priv->text_area))
4081         tmp_pos = gtk_entry_buffer_get_length (get_buffer (entry));
4082       else
4083         tmp_pos = gtk_entry_find_position (entry, event->x + priv->scroll_offset);
4084
4085       if (priv->select_words)
4086         {
4087           gint min, max;
4088           gint old_min, old_max;
4089           gint pos, bound;
4090           
4091           min = gtk_entry_move_backward_word (entry, tmp_pos, TRUE);
4092           max = gtk_entry_move_forward_word (entry, tmp_pos, TRUE);
4093
4094           pos = priv->current_pos;
4095           bound = priv->selection_bound;
4096
4097           old_min = MIN(priv->current_pos, priv->selection_bound);
4098           old_max = MAX(priv->current_pos, priv->selection_bound);
4099           
4100           if (min < old_min)
4101             {
4102               pos = min;
4103               bound = old_max;
4104             }
4105           else if (old_max < max) 
4106             {
4107               pos = max;
4108               bound = old_min;
4109             }
4110           else if (pos == old_min) 
4111             {
4112               if (priv->current_pos != min)
4113                 pos = max;
4114             }
4115           else 
4116             {
4117               if (priv->current_pos != max)
4118                 pos = min;
4119             }
4120         
4121           gtk_entry_set_positions (entry, pos, bound);
4122         }
4123       else
4124         gtk_entry_set_positions (entry, tmp_pos, -1);
4125     }
4126       
4127   return TRUE;
4128 }
4129
4130 static void
4131 set_invisible_cursor (GdkWindow *window)
4132 {
4133   GdkDisplay *display;
4134   GdkCursor *cursor;
4135
4136   display = gdk_window_get_display (window);
4137   cursor = gdk_cursor_new_for_display (display, GDK_BLANK_CURSOR);
4138
4139   gdk_window_set_cursor (window, cursor);
4140
4141   g_object_unref (cursor);
4142 }
4143
4144 static void
4145 gtk_entry_obscure_mouse_cursor (GtkEntry *entry)
4146 {
4147   GtkEntryPrivate *priv = entry->priv;
4148
4149   if (priv->mouse_cursor_obscured)
4150     return;
4151
4152   set_invisible_cursor (priv->text_area);
4153
4154   priv->mouse_cursor_obscured = TRUE;
4155 }
4156
4157 static gint
4158 gtk_entry_key_press (GtkWidget   *widget,
4159                      GdkEventKey *event)
4160 {
4161   GtkEntry *entry = GTK_ENTRY (widget);
4162   GtkEntryPrivate *priv = entry->priv;
4163
4164   gtk_entry_reset_blink_time (entry);
4165   gtk_entry_pend_cursor_blink (entry);
4166
4167   if (priv->editable)
4168     {
4169       if (gtk_im_context_filter_keypress (priv->im_context, event))
4170         {
4171           gtk_entry_obscure_mouse_cursor (entry);
4172           priv->need_im_reset = TRUE;
4173           return TRUE;
4174         }
4175     }
4176
4177   if (event->keyval == GDK_KEY_Return || 
4178       event->keyval == GDK_KEY_KP_Enter || 
4179       event->keyval == GDK_KEY_ISO_Enter || 
4180       event->keyval == GDK_KEY_Escape)
4181     {
4182       GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
4183
4184       if (completion && completion->priv->completion_timeout)
4185         {
4186           g_source_remove (completion->priv->completion_timeout);
4187           completion->priv->completion_timeout = 0;
4188         }
4189
4190       _gtk_entry_reset_im_context (entry);
4191     }
4192
4193   if (GTK_WIDGET_CLASS (gtk_entry_parent_class)->key_press_event (widget, event))
4194     /* Activate key bindings
4195      */
4196     return TRUE;
4197
4198   if (!priv->editable && event->length)
4199     gtk_widget_error_bell (widget);
4200
4201   return FALSE;
4202 }
4203
4204 static gint
4205 gtk_entry_key_release (GtkWidget   *widget,
4206                        GdkEventKey *event)
4207 {
4208   GtkEntry *entry = GTK_ENTRY (widget);
4209   GtkEntryPrivate *priv = entry->priv;
4210
4211   if (priv->editable)
4212     {
4213       if (gtk_im_context_filter_keypress (priv->im_context, event))
4214         {
4215           priv->need_im_reset = TRUE;
4216           return TRUE;
4217         }
4218     }
4219
4220   return GTK_WIDGET_CLASS (gtk_entry_parent_class)->key_release_event (widget, event);
4221 }
4222
4223 static gint
4224 gtk_entry_focus_in (GtkWidget     *widget,
4225                     GdkEventFocus *event)
4226 {
4227   GtkEntry *entry = GTK_ENTRY (widget);
4228   GtkEntryPrivate *priv = entry->priv;
4229   GdkKeymap *keymap;
4230
4231   gtk_widget_queue_draw (widget);
4232
4233   keymap = gdk_keymap_get_for_display (gtk_widget_get_display (widget));
4234
4235   if (priv->editable)
4236     {
4237       priv->need_im_reset = TRUE;
4238       gtk_im_context_focus_in (priv->im_context);
4239       keymap_state_changed (keymap, entry);
4240       g_signal_connect (keymap, "state-changed", 
4241                         G_CALLBACK (keymap_state_changed), entry);
4242     }
4243
4244   g_signal_connect (keymap, "direction-changed",
4245                     G_CALLBACK (keymap_direction_changed), entry);
4246
4247   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
4248       priv->placeholder_text != NULL)
4249     {
4250       gtk_entry_recompute (entry);
4251     }
4252   else
4253     {
4254       gtk_entry_reset_blink_time (entry);
4255       gtk_entry_check_cursor_blink (entry);
4256     }
4257
4258   return FALSE;
4259 }
4260
4261 static gint
4262 gtk_entry_focus_out (GtkWidget     *widget,
4263                      GdkEventFocus *event)
4264 {
4265   GtkEntry *entry = GTK_ENTRY (widget);
4266   GtkEntryPrivate *priv = entry->priv;
4267   GtkEntryCompletion *completion;
4268   GdkKeymap *keymap;
4269
4270   gtk_widget_queue_draw (widget);
4271
4272   keymap = gdk_keymap_get_for_display (gtk_widget_get_display (widget));
4273
4274   if (priv->editable)
4275     {
4276       priv->need_im_reset = TRUE;
4277       gtk_im_context_focus_out (priv->im_context);
4278       remove_capslock_feedback (entry);
4279     }
4280
4281   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
4282       priv->placeholder_text != NULL)
4283     {
4284       gtk_entry_recompute (entry);
4285     }
4286   else
4287     {
4288       gtk_entry_check_cursor_blink (entry);
4289     }
4290
4291   g_signal_handlers_disconnect_by_func (keymap, keymap_state_changed, entry);
4292   g_signal_handlers_disconnect_by_func (keymap, keymap_direction_changed, entry);
4293
4294   completion = gtk_entry_get_completion (entry);
4295   if (completion)
4296     _gtk_entry_completion_popdown (completion);
4297   
4298   return FALSE;
4299 }
4300
4301 static void
4302 gtk_entry_grab_focus (GtkWidget        *widget)
4303 {
4304   GtkEntry *entry = GTK_ENTRY (widget);
4305   GtkEntryPrivate *priv = entry->priv;
4306   gboolean select_on_focus;
4307   
4308   GTK_WIDGET_CLASS (gtk_entry_parent_class)->grab_focus (widget);
4309
4310   if (priv->editable && !priv->in_click)
4311     {
4312       g_object_get (gtk_widget_get_settings (widget),
4313                     "gtk-entry-select-on-focus",
4314                     &select_on_focus,
4315                     NULL);
4316   
4317       if (select_on_focus)
4318         gtk_editable_select_region (GTK_EDITABLE (widget), 0, -1);
4319     }
4320 }
4321
4322 static void 
4323 gtk_entry_direction_changed (GtkWidget        *widget,
4324                              GtkTextDirection  previous_dir)
4325 {
4326   GtkEntry *entry = GTK_ENTRY (widget);
4327
4328   gtk_entry_recompute (entry);
4329       
4330   GTK_WIDGET_CLASS (gtk_entry_parent_class)->direction_changed (widget, previous_dir);
4331 }
4332
4333 static void
4334 gtk_entry_state_flags_changed (GtkWidget     *widget,
4335                                GtkStateFlags  previous_state)
4336 {
4337   GtkEntry *entry = GTK_ENTRY (widget);
4338   GtkEntryPrivate *priv = entry->priv;
4339   GdkCursor *cursor;
4340   
4341   if (gtk_widget_get_realized (widget))
4342     {
4343       if (gtk_widget_is_sensitive (widget))
4344         cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_XTERM);
4345       else 
4346         cursor = NULL;
4347
4348       gdk_window_set_cursor (priv->text_area, cursor);
4349
4350       if (cursor)
4351         g_object_unref (cursor);
4352
4353       priv->mouse_cursor_obscured = FALSE;
4354
4355       update_cursors (widget);
4356     }
4357
4358   if (!gtk_widget_is_sensitive (widget))
4359     {
4360       /* Clear any selection */
4361       gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
4362     }
4363   
4364   gtk_widget_queue_draw (widget);
4365 }
4366
4367 static void
4368 gtk_entry_screen_changed (GtkWidget *widget,
4369                           GdkScreen *old_screen)
4370 {
4371   gtk_entry_recompute (GTK_ENTRY (widget));
4372 }
4373
4374 /* GtkEditable method implementations
4375  */
4376 static void
4377 gtk_entry_insert_text (GtkEditable *editable,
4378                        const gchar *new_text,
4379                        gint         new_text_length,
4380                        gint        *position)
4381 {
4382   g_object_ref (editable);
4383
4384   /*
4385    * The incoming text may a password or other secret. We make sure
4386    * not to copy it into temporary buffers.
4387    */
4388
4389   g_signal_emit_by_name (editable, "insert-text", new_text, new_text_length, position);
4390
4391   g_object_unref (editable);
4392 }
4393
4394 static void
4395 gtk_entry_delete_text (GtkEditable *editable,
4396                        gint         start_pos,
4397                        gint         end_pos)
4398 {
4399   g_object_ref (editable);
4400
4401   g_signal_emit_by_name (editable, "delete-text", start_pos, end_pos);
4402
4403   g_object_unref (editable);
4404 }
4405
4406 static gchar *    
4407 gtk_entry_get_chars      (GtkEditable   *editable,
4408                           gint           start_pos,
4409                           gint           end_pos)
4410 {
4411   GtkEntry *entry = GTK_ENTRY (editable);
4412   const gchar *text;
4413   gint text_length;
4414   gint start_index, end_index;
4415
4416   text = gtk_entry_buffer_get_text (get_buffer (entry));
4417   text_length = gtk_entry_buffer_get_length (get_buffer (entry));
4418
4419   if (end_pos < 0)
4420     end_pos = text_length;
4421
4422   start_pos = MIN (text_length, start_pos);
4423   end_pos = MIN (text_length, end_pos);
4424
4425   start_index = g_utf8_offset_to_pointer (text, start_pos) - text;
4426   end_index = g_utf8_offset_to_pointer (text, end_pos) - text;
4427
4428   return g_strndup (text + start_index, end_index - start_index);
4429 }
4430
4431 static void
4432 gtk_entry_real_set_position (GtkEditable *editable,
4433                              gint         position)
4434 {
4435   GtkEntry *entry = GTK_ENTRY (editable);
4436   GtkEntryPrivate *priv = entry->priv;
4437
4438   guint length;
4439
4440   length = gtk_entry_buffer_get_length (get_buffer (entry));
4441   if (position < 0 || position > length)
4442     position = length;
4443
4444   if (position != priv->current_pos ||
4445       position != priv->selection_bound)
4446     {
4447       _gtk_entry_reset_im_context (entry);
4448       gtk_entry_set_positions (entry, position, position);
4449     }
4450 }
4451
4452 static gint
4453 gtk_entry_get_position (GtkEditable *editable)
4454 {
4455   GtkEntry *entry = GTK_ENTRY (editable);
4456   GtkEntryPrivate *priv = entry->priv;
4457
4458   return priv->current_pos;
4459 }
4460
4461 static void
4462 gtk_entry_set_selection_bounds (GtkEditable *editable,
4463                                 gint         start,
4464                                 gint         end)
4465 {
4466   GtkEntry *entry = GTK_ENTRY (editable);
4467   guint length;
4468
4469   length = gtk_entry_buffer_get_length (get_buffer (entry));
4470   if (start < 0)
4471     start = length;
4472   if (end < 0)
4473     end = length;
4474   
4475   _gtk_entry_reset_im_context (entry);
4476
4477   gtk_entry_set_positions (entry,
4478                            MIN (end, length),
4479                            MIN (start, length));
4480
4481   gtk_entry_update_primary_selection (entry);
4482 }
4483
4484 static gboolean
4485 gtk_entry_get_selection_bounds (GtkEditable *editable,
4486                                 gint        *start,
4487                                 gint        *end)
4488 {
4489   GtkEntry *entry = GTK_ENTRY (editable);
4490   GtkEntryPrivate *priv = entry->priv;
4491
4492   *start = priv->selection_bound;
4493   *end = priv->current_pos;
4494
4495   return (priv->selection_bound != priv->current_pos);
4496 }
4497
4498 static void
4499 icon_theme_changed (GtkEntry *entry)
4500 {
4501   GtkEntryPrivate *priv = entry->priv;
4502   gint i;
4503
4504   for (i = 0; i < MAX_ICONS; i++)
4505     {
4506       EntryIconInfo *icon_info = priv->icons[i];
4507       if (icon_info != NULL) 
4508         {
4509           if (icon_info->storage_type == GTK_IMAGE_ICON_NAME)
4510             gtk_entry_set_icon_from_icon_name (entry, i, icon_info->icon_name);
4511           else if (icon_info->storage_type == GTK_IMAGE_STOCK)
4512             gtk_entry_set_icon_from_stock (entry, i, icon_info->stock_id);
4513           else if (icon_info->storage_type == GTK_IMAGE_GICON)
4514             gtk_entry_set_icon_from_gicon (entry, i, icon_info->gicon);
4515         }
4516     }
4517
4518   gtk_widget_queue_draw (GTK_WIDGET (entry));
4519 }
4520
4521 static void
4522 icon_margin_changed (GtkEntry *entry)
4523 {
4524   GtkEntryPrivate *priv = entry->priv;
4525   GtkBorder border;
4526
4527   _gtk_entry_effective_inner_border (GTK_ENTRY (entry), &border);
4528
4529   priv->icon_margin = border.left;
4530 }
4531
4532 static void 
4533 gtk_entry_style_updated (GtkWidget *widget)
4534 {
4535   GtkEntry *entry = GTK_ENTRY (widget);
4536   GtkEntryPrivate *priv = entry->priv;
4537   gint focus_width;
4538   gboolean interior_focus;
4539
4540   GTK_WIDGET_CLASS (gtk_entry_parent_class)->style_updated (widget);
4541
4542   gtk_widget_style_get (widget,
4543                         "focus-line-width", &focus_width,
4544                         "interior-focus", &interior_focus,
4545                         NULL);
4546
4547   priv->focus_width = focus_width;
4548   priv->interior_focus = interior_focus;
4549
4550   if (!priv->invisible_char_set)
4551     priv->invisible_char = find_invisible_char (GTK_WIDGET (entry));
4552
4553   gtk_entry_recompute (entry);
4554
4555   icon_theme_changed (entry);
4556   icon_margin_changed (entry);
4557 }
4558
4559 /* GtkCellEditable method implementations
4560  */
4561 static void
4562 gtk_cell_editable_entry_activated (GtkEntry *entry, gpointer data)
4563 {
4564   gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4565   gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4566 }
4567
4568 static gboolean
4569 gtk_cell_editable_key_press_event (GtkEntry    *entry,
4570                                    GdkEventKey *key_event,
4571                                    gpointer     data)
4572 {
4573   GtkEntryPrivate *priv = entry->priv;
4574
4575   if (key_event->keyval == GDK_KEY_Escape)
4576     {
4577       priv->editing_canceled = TRUE;
4578       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4579       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4580
4581       return TRUE;
4582     }
4583
4584   /* override focus */
4585   if (key_event->keyval == GDK_KEY_Up || key_event->keyval == GDK_KEY_Down)
4586     {
4587       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4588       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4589
4590       return TRUE;
4591     }
4592
4593   return FALSE;
4594 }
4595
4596 static void
4597 gtk_entry_start_editing (GtkCellEditable *cell_editable,
4598                          GdkEvent        *event)
4599 {
4600   GtkEntry *entry = GTK_ENTRY (cell_editable);
4601   GtkEntryPrivate *priv = entry->priv;
4602
4603   priv->is_cell_renderer = TRUE;
4604
4605   g_signal_connect (cell_editable, "activate",
4606                     G_CALLBACK (gtk_cell_editable_entry_activated), NULL);
4607   g_signal_connect (cell_editable, "key-press-event",
4608                     G_CALLBACK (gtk_cell_editable_key_press_event), NULL);
4609 }
4610
4611 static void
4612 gtk_entry_password_hint_free (GtkEntryPasswordHint *password_hint)
4613 {
4614   if (password_hint->source_id)
4615     g_source_remove (password_hint->source_id);
4616
4617   g_slice_free (GtkEntryPasswordHint, password_hint);
4618 }
4619
4620
4621 static gboolean
4622 gtk_entry_remove_password_hint (gpointer data)
4623 {
4624   GtkEntryPasswordHint *password_hint = g_object_get_qdata (data, quark_password_hint);
4625   password_hint->position = -1;
4626
4627   /* Force the string to be redrawn, but now without a visible character */
4628   gtk_entry_recompute (GTK_ENTRY (data));
4629   return FALSE;
4630 }
4631
4632 /* Default signal handlers
4633  */
4634 static void
4635 gtk_entry_real_insert_text (GtkEditable *editable,
4636                             const gchar *new_text,
4637                             gint         new_text_length,
4638                             gint        *position)
4639 {
4640   guint n_inserted;
4641   gint n_chars;
4642
4643   n_chars = g_utf8_strlen (new_text, new_text_length);
4644
4645   /*
4646    * The actual insertion into the buffer. This will end up firing the
4647    * following signal handlers: buffer_inserted_text(), buffer_notify_display_text(),
4648    * buffer_notify_text(), buffer_notify_length()
4649    */
4650   n_inserted = gtk_entry_buffer_insert_text (get_buffer (GTK_ENTRY (editable)), *position, new_text, n_chars);
4651
4652   if (n_inserted != n_chars)
4653       gtk_widget_error_bell (GTK_WIDGET (editable));
4654
4655   *position += n_inserted;
4656 }
4657
4658 static void
4659 gtk_entry_real_delete_text (GtkEditable *editable,
4660                             gint         start_pos,
4661                             gint         end_pos)
4662 {
4663   /*
4664    * The actual deletion from the buffer. This will end up firing the
4665    * following signal handlers: buffer_deleted_text(), buffer_notify_display_text(),
4666    * buffer_notify_text(), buffer_notify_length()
4667    */
4668
4669   gtk_entry_buffer_delete_text (get_buffer (GTK_ENTRY (editable)), start_pos, end_pos - start_pos);
4670 }
4671
4672 /* GtkEntryBuffer signal handlers
4673  */
4674 static void
4675 buffer_inserted_text (GtkEntryBuffer *buffer,
4676                       guint           position,
4677                       const gchar    *chars,
4678                       guint           n_chars,
4679                       GtkEntry       *entry)
4680 {
4681   GtkEntryPrivate *priv = entry->priv;
4682   guint password_hint_timeout;
4683
4684   if (priv->current_pos > position)
4685     priv->current_pos += n_chars;
4686
4687   if (priv->selection_bound > position)
4688     priv->selection_bound += n_chars;
4689
4690   /* Calculate the password hint if it needs to be displayed. */
4691   if (n_chars == 1 && !priv->visible)
4692     {
4693       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
4694                     "gtk-entry-password-hint-timeout", &password_hint_timeout,
4695                     NULL);
4696
4697       if (password_hint_timeout > 0)
4698         {
4699           GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
4700                                                                     quark_password_hint);
4701           if (!password_hint)
4702             {
4703               password_hint = g_slice_new0 (GtkEntryPasswordHint);
4704               g_object_set_qdata_full (G_OBJECT (entry), quark_password_hint, password_hint,
4705                                        (GDestroyNotify)gtk_entry_password_hint_free);
4706             }
4707
4708           password_hint->position = position;
4709           if (password_hint->source_id)
4710             g_source_remove (password_hint->source_id);
4711           password_hint->source_id = gdk_threads_add_timeout (password_hint_timeout,
4712                                                               (GSourceFunc)gtk_entry_remove_password_hint, entry);
4713         }
4714     }
4715 }
4716
4717 static void
4718 buffer_deleted_text (GtkEntryBuffer *buffer,
4719                      guint           position,
4720                      guint           n_chars,
4721                      GtkEntry       *entry)
4722 {
4723   GtkEntryPrivate *priv = entry->priv;
4724   guint end_pos = position + n_chars;
4725   gint selection_bound;
4726   guint current_pos;
4727
4728   current_pos = priv->current_pos;
4729   if (current_pos > position)
4730     current_pos -= MIN (current_pos, end_pos) - position;
4731
4732   selection_bound = priv->selection_bound;
4733   if (selection_bound > position)
4734     selection_bound -= MIN (selection_bound, end_pos) - position;
4735
4736   gtk_entry_set_positions (entry, current_pos, selection_bound);
4737
4738   /* We might have deleted the selection */
4739   gtk_entry_update_primary_selection (entry);
4740
4741   /* Disable the password hint if one exists. */
4742   if (!priv->visible)
4743     {
4744       GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
4745                                                                 quark_password_hint);
4746       if (password_hint)
4747         {
4748           if (password_hint->source_id)
4749             g_source_remove (password_hint->source_id);
4750           password_hint->source_id = 0;
4751           password_hint->position = -1;
4752         }
4753     }
4754 }
4755
4756 static void
4757 buffer_notify_text (GtkEntryBuffer *buffer,
4758                     GParamSpec     *spec,
4759                     GtkEntry       *entry)
4760 {
4761   gtk_entry_recompute (entry);
4762   emit_changed (entry);
4763   g_object_notify (G_OBJECT (entry), "text");
4764 }
4765
4766 static void
4767 buffer_notify_length (GtkEntryBuffer *buffer,
4768                       GParamSpec     *spec,
4769                       GtkEntry       *entry)
4770 {
4771   g_object_notify (G_OBJECT (entry), "text-length");
4772 }
4773
4774 static void
4775 buffer_notify_max_length (GtkEntryBuffer *buffer,
4776                           GParamSpec     *spec,
4777                           GtkEntry       *entry)
4778 {
4779   g_object_notify (G_OBJECT (entry), "max-length");
4780 }
4781
4782 static void
4783 buffer_connect_signals (GtkEntry *entry)
4784 {
4785   g_signal_connect (get_buffer (entry), "inserted-text", G_CALLBACK (buffer_inserted_text), entry);
4786   g_signal_connect (get_buffer (entry), "deleted-text", G_CALLBACK (buffer_deleted_text), entry);
4787   g_signal_connect (get_buffer (entry), "notify::text", G_CALLBACK (buffer_notify_text), entry);
4788   g_signal_connect (get_buffer (entry), "notify::length", G_CALLBACK (buffer_notify_length), entry);
4789   g_signal_connect (get_buffer (entry), "notify::max-length", G_CALLBACK (buffer_notify_max_length), entry);
4790 }
4791
4792 static void
4793 buffer_disconnect_signals (GtkEntry *entry)
4794 {
4795   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_inserted_text, entry);
4796   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_deleted_text, entry);
4797   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_text, entry);
4798   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_length, entry);
4799   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_max_length, entry);
4800 }
4801
4802 /* Compute the X position for an offset that corresponds to the "more important
4803  * cursor position for that offset. We use this when trying to guess to which
4804  * end of the selection we should go to when the user hits the left or
4805  * right arrow key.
4806  */
4807 static gint
4808 get_better_cursor_x (GtkEntry *entry,
4809                      gint      offset)
4810 {
4811   GtkEntryPrivate *priv = entry->priv;
4812   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
4813   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
4814   gboolean split_cursor;
4815   
4816   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
4817   const gchar *text = pango_layout_get_text (layout);
4818   gint index = g_utf8_offset_to_pointer (text, offset) - text;
4819   
4820   PangoRectangle strong_pos, weak_pos;
4821   
4822   g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
4823                 "gtk-split-cursor", &split_cursor,
4824                 NULL);
4825
4826   pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
4827
4828   if (split_cursor)
4829     return strong_pos.x / PANGO_SCALE;
4830   else
4831     return (keymap_direction == priv->resolved_dir) ? strong_pos.x / PANGO_SCALE : weak_pos.x / PANGO_SCALE;
4832 }
4833
4834 static void
4835 gtk_entry_move_cursor (GtkEntry       *entry,
4836                        GtkMovementStep step,
4837                        gint            count,
4838                        gboolean        extend_selection)
4839 {
4840   GtkEntryPrivate *priv = entry->priv;
4841   gint new_pos = priv->current_pos;
4842
4843   _gtk_entry_reset_im_context (entry);
4844
4845   if (priv->current_pos != priv->selection_bound && !extend_selection)
4846     {
4847       /* If we have a current selection and aren't extending it, move to the
4848        * start/or end of the selection as appropriate
4849        */
4850       switch (step)
4851         {
4852         case GTK_MOVEMENT_VISUAL_POSITIONS:
4853           {
4854             gint current_x = get_better_cursor_x (entry, priv->current_pos);
4855             gint bound_x = get_better_cursor_x (entry, priv->selection_bound);
4856
4857             if (count <= 0)
4858               new_pos = current_x < bound_x ? priv->current_pos : priv->selection_bound;
4859             else 
4860               new_pos = current_x > bound_x ? priv->current_pos : priv->selection_bound;
4861             break;
4862           }
4863         case GTK_MOVEMENT_LOGICAL_POSITIONS:
4864         case GTK_MOVEMENT_WORDS:
4865           if (count < 0)
4866             new_pos = MIN (priv->current_pos, priv->selection_bound);
4867           else
4868             new_pos = MAX (priv->current_pos, priv->selection_bound);
4869           break;
4870         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
4871         case GTK_MOVEMENT_PARAGRAPH_ENDS:
4872         case GTK_MOVEMENT_BUFFER_ENDS:
4873           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
4874           break;
4875         case GTK_MOVEMENT_DISPLAY_LINES:
4876         case GTK_MOVEMENT_PARAGRAPHS:
4877         case GTK_MOVEMENT_PAGES:
4878         case GTK_MOVEMENT_HORIZONTAL_PAGES:
4879           break;
4880         }
4881     }
4882   else
4883     {
4884       switch (step)
4885         {
4886         case GTK_MOVEMENT_LOGICAL_POSITIONS:
4887           new_pos = gtk_entry_move_logically (entry, new_pos, count);
4888           break;
4889         case GTK_MOVEMENT_VISUAL_POSITIONS:
4890           new_pos = gtk_entry_move_visually (entry, new_pos, count);
4891           if (priv->current_pos == new_pos)
4892             {
4893               if (!extend_selection)
4894                 {
4895                   if (!gtk_widget_keynav_failed (GTK_WIDGET (entry),
4896                                                  count > 0 ?
4897                                                  GTK_DIR_RIGHT : GTK_DIR_LEFT))
4898                     {
4899                       GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (entry));
4900
4901                       if (toplevel)
4902                         gtk_widget_child_focus (toplevel,
4903                                                 count > 0 ?
4904                                                 GTK_DIR_RIGHT : GTK_DIR_LEFT);
4905                     }
4906                 }
4907               else
4908                 {
4909                   gtk_widget_error_bell (GTK_WIDGET (entry));
4910                 }
4911             }
4912           break;
4913         case GTK_MOVEMENT_WORDS:
4914           while (count > 0)
4915             {
4916               new_pos = gtk_entry_move_forward_word (entry, new_pos, FALSE);
4917               count--;
4918             }
4919           while (count < 0)
4920             {
4921               new_pos = gtk_entry_move_backward_word (entry, new_pos, FALSE);
4922               count++;
4923             }
4924           if (priv->current_pos == new_pos)
4925             gtk_widget_error_bell (GTK_WIDGET (entry));
4926           break;
4927         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
4928         case GTK_MOVEMENT_PARAGRAPH_ENDS:
4929         case GTK_MOVEMENT_BUFFER_ENDS:
4930           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
4931           if (priv->current_pos == new_pos)
4932             gtk_widget_error_bell (GTK_WIDGET (entry));
4933           break;
4934         case GTK_MOVEMENT_DISPLAY_LINES:
4935         case GTK_MOVEMENT_PARAGRAPHS:
4936         case GTK_MOVEMENT_PAGES:
4937         case GTK_MOVEMENT_HORIZONTAL_PAGES:
4938           break;
4939         }
4940     }
4941
4942   if (extend_selection)
4943     gtk_editable_select_region (GTK_EDITABLE (entry), priv->selection_bound, new_pos);
4944   else
4945     gtk_editable_set_position (GTK_EDITABLE (entry), new_pos);
4946   
4947   gtk_entry_pend_cursor_blink (entry);
4948 }
4949
4950 static void
4951 gtk_entry_insert_at_cursor (GtkEntry    *entry,
4952                             const gchar *str)
4953 {
4954   GtkEntryPrivate *priv = entry->priv;
4955   GtkEditable *editable = GTK_EDITABLE (entry);
4956   gint pos = priv->current_pos;
4957
4958   if (priv->editable)
4959     {
4960       _gtk_entry_reset_im_context (entry);
4961
4962       gtk_editable_insert_text (editable, str, -1, &pos);
4963       gtk_editable_set_position (editable, pos);
4964     }
4965 }
4966
4967 static void
4968 gtk_entry_delete_from_cursor (GtkEntry       *entry,
4969                               GtkDeleteType   type,
4970                               gint            count)
4971 {
4972   GtkEntryPrivate *priv = entry->priv;
4973   GtkEditable *editable = GTK_EDITABLE (entry);
4974   gint start_pos = priv->current_pos;
4975   gint end_pos = priv->current_pos;
4976   gint old_n_bytes = gtk_entry_buffer_get_bytes (get_buffer (entry));
4977   
4978   _gtk_entry_reset_im_context (entry);
4979
4980   if (!priv->editable)
4981     {
4982       gtk_widget_error_bell (GTK_WIDGET (entry));
4983       return;
4984     }
4985
4986   if (priv->selection_bound != priv->current_pos)
4987     {
4988       gtk_editable_delete_selection (editable);
4989       return;
4990     }
4991   
4992   switch (type)
4993     {
4994     case GTK_DELETE_CHARS:
4995       end_pos = gtk_entry_move_logically (entry, priv->current_pos, count);
4996       gtk_editable_delete_text (editable, MIN (start_pos, end_pos), MAX (start_pos, end_pos));
4997       break;
4998     case GTK_DELETE_WORDS:
4999       if (count < 0)
5000         {
5001           /* Move to end of current word, or if not on a word, end of previous word */
5002           end_pos = gtk_entry_move_backward_word (entry, end_pos, FALSE);
5003           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5004         }
5005       else if (count > 0)
5006         {
5007           /* Move to beginning of current word, or if not on a word, begining of next word */
5008           start_pos = gtk_entry_move_forward_word (entry, start_pos, FALSE);
5009           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5010         }
5011         
5012       /* Fall through */
5013     case GTK_DELETE_WORD_ENDS:
5014       while (count < 0)
5015         {
5016           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5017           count++;
5018         }
5019       while (count > 0)
5020         {
5021           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5022           count--;
5023         }
5024       gtk_editable_delete_text (editable, start_pos, end_pos);
5025       break;
5026     case GTK_DELETE_DISPLAY_LINE_ENDS:
5027     case GTK_DELETE_PARAGRAPH_ENDS:
5028       if (count < 0)
5029         gtk_editable_delete_text (editable, 0, priv->current_pos);
5030       else
5031         gtk_editable_delete_text (editable, priv->current_pos, -1);
5032       break;
5033     case GTK_DELETE_DISPLAY_LINES:
5034     case GTK_DELETE_PARAGRAPHS:
5035       gtk_editable_delete_text (editable, 0, -1);  
5036       break;
5037     case GTK_DELETE_WHITESPACE:
5038       gtk_entry_delete_whitespace (entry);
5039       break;
5040     }
5041
5042   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == old_n_bytes)
5043     gtk_widget_error_bell (GTK_WIDGET (entry));
5044
5045   gtk_entry_pend_cursor_blink (entry);
5046 }
5047
5048 static void
5049 gtk_entry_backspace (GtkEntry *entry)
5050 {
5051   GtkEntryPrivate *priv = entry->priv;
5052   GtkEditable *editable = GTK_EDITABLE (entry);
5053   gint prev_pos;
5054
5055   _gtk_entry_reset_im_context (entry);
5056
5057   if (!priv->editable)
5058     {
5059       gtk_widget_error_bell (GTK_WIDGET (entry));
5060       return;
5061     }
5062
5063   if (priv->selection_bound != priv->current_pos)
5064     {
5065       gtk_editable_delete_selection (editable);
5066       return;
5067     }
5068
5069   prev_pos = gtk_entry_move_logically (entry, priv->current_pos, -1);
5070
5071   if (prev_pos < priv->current_pos)
5072     {
5073       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
5074       PangoLogAttr *log_attrs;
5075       gint n_attrs;
5076
5077       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
5078
5079       /* Deleting parts of characters */
5080       if (log_attrs[priv->current_pos].backspace_deletes_character)
5081         {
5082           gchar *cluster_text;
5083           gchar *normalized_text;
5084           glong  len;
5085
5086           cluster_text = gtk_entry_get_display_text (entry, prev_pos,
5087                                                      priv->current_pos);
5088           normalized_text = g_utf8_normalize (cluster_text,
5089                                               strlen (cluster_text),
5090                                               G_NORMALIZE_NFD);
5091           len = g_utf8_strlen (normalized_text, -1);
5092
5093           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5094           if (len > 1)
5095             {
5096               gint pos = priv->current_pos;
5097
5098               gtk_editable_insert_text (editable, normalized_text,
5099                                         g_utf8_offset_to_pointer (normalized_text, len - 1) - normalized_text,
5100                                         &pos);
5101               gtk_editable_set_position (editable, pos);
5102             }
5103
5104           g_free (normalized_text);
5105           g_free (cluster_text);
5106         }
5107       else
5108         {
5109           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5110         }
5111       
5112       g_free (log_attrs);
5113     }
5114   else
5115     {
5116       gtk_widget_error_bell (GTK_WIDGET (entry));
5117     }
5118
5119   gtk_entry_pend_cursor_blink (entry);
5120 }
5121
5122 static void
5123 gtk_entry_copy_clipboard (GtkEntry *entry)
5124 {
5125   GtkEntryPrivate *priv = entry->priv;
5126   GtkEditable *editable = GTK_EDITABLE (entry);
5127   gint start, end;
5128   gchar *str;
5129
5130   if (gtk_editable_get_selection_bounds (editable, &start, &end))
5131     {
5132       if (!priv->visible)
5133         {
5134           gtk_widget_error_bell (GTK_WIDGET (entry));
5135           return;
5136         }
5137
5138       str = gtk_entry_get_display_text (entry, start, end);
5139       gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
5140                                                         GDK_SELECTION_CLIPBOARD),
5141                               str, -1);
5142       g_free (str);
5143     }
5144 }
5145
5146 static void
5147 gtk_entry_cut_clipboard (GtkEntry *entry)
5148 {
5149   GtkEntryPrivate *priv = entry->priv;
5150   GtkEditable *editable = GTK_EDITABLE (entry);
5151   gint start, end;
5152
5153   if (!priv->visible)
5154     {
5155       gtk_widget_error_bell (GTK_WIDGET (entry));
5156       return;
5157     }
5158
5159   gtk_entry_copy_clipboard (entry);
5160
5161   if (priv->editable)
5162     {
5163       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5164         gtk_editable_delete_text (editable, start, end);
5165     }
5166   else
5167     {
5168       gtk_widget_error_bell (GTK_WIDGET (entry));
5169     }
5170 }
5171
5172 static void
5173 gtk_entry_paste_clipboard (GtkEntry *entry)
5174 {
5175   GtkEntryPrivate *priv = entry->priv;
5176
5177   if (priv->editable)
5178     gtk_entry_paste (entry, GDK_SELECTION_CLIPBOARD);
5179   else
5180     gtk_widget_error_bell (GTK_WIDGET (entry));
5181 }
5182
5183 static void
5184 gtk_entry_delete_cb (GtkEntry *entry)
5185 {
5186   GtkEntryPrivate *priv = entry->priv;
5187   GtkEditable *editable = GTK_EDITABLE (entry);
5188   gint start, end;
5189
5190   if (priv->editable)
5191     {
5192       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5193         gtk_editable_delete_text (editable, start, end);
5194     }
5195 }
5196
5197 static void
5198 gtk_entry_toggle_overwrite (GtkEntry *entry)
5199 {
5200   GtkEntryPrivate *priv = entry->priv;
5201
5202   priv->overwrite_mode = !priv->overwrite_mode;
5203   gtk_entry_pend_cursor_blink (entry);
5204   gtk_widget_queue_draw (GTK_WIDGET (entry));
5205 }
5206
5207 static void
5208 gtk_entry_select_all (GtkEntry *entry)
5209 {
5210   gtk_entry_select_line (entry);
5211 }
5212
5213 static void
5214 gtk_entry_real_activate (GtkEntry *entry)
5215 {
5216   GtkEntryPrivate *priv = entry->priv;
5217   GtkWindow *window;
5218   GtkWidget *default_widget, *focus_widget;
5219   GtkWidget *toplevel;
5220   GtkWidget *widget;
5221
5222   widget = GTK_WIDGET (entry);
5223
5224   if (priv->activates_default)
5225     {
5226       toplevel = gtk_widget_get_toplevel (widget);
5227       if (GTK_IS_WINDOW (toplevel))
5228         {
5229           window = GTK_WINDOW (toplevel);
5230
5231           if (window)
5232             {
5233               default_widget = gtk_window_get_default_widget (window);
5234               focus_widget = gtk_window_get_focus (window);
5235               if (widget != default_widget &&
5236                   !(widget == focus_widget && (!default_widget || !gtk_widget_get_sensitive (default_widget))))
5237                 gtk_window_activate_default (window);
5238             }
5239         }
5240     }
5241 }
5242
5243 static void
5244 keymap_direction_changed (GdkKeymap *keymap,
5245                           GtkEntry  *entry)
5246 {
5247   gtk_entry_recompute (entry);
5248 }
5249
5250 /* IM Context Callbacks
5251  */
5252
5253 static void
5254 gtk_entry_commit_cb (GtkIMContext *context,
5255                      const gchar  *str,
5256                      GtkEntry     *entry)
5257 {
5258   GtkEntryPrivate *priv = entry->priv;
5259
5260   if (priv->editable)
5261     gtk_entry_enter_text (entry, str);
5262 }
5263
5264 static void 
5265 gtk_entry_preedit_changed_cb (GtkIMContext *context,
5266                               GtkEntry     *entry)
5267 {
5268   GtkEntryPrivate *priv = entry->priv;
5269
5270   if (priv->editable)
5271     {
5272       gchar *preedit_string;
5273       gint cursor_pos;
5274
5275       gtk_im_context_get_preedit_string (priv->im_context,
5276                                          &preedit_string, NULL,
5277                                          &cursor_pos);
5278       g_signal_emit (entry, signals[PREEDIT_CHANGED], 0, preedit_string);
5279       priv->preedit_length = strlen (preedit_string);
5280       cursor_pos = CLAMP (cursor_pos, 0, g_utf8_strlen (preedit_string, -1));
5281       priv->preedit_cursor = cursor_pos;
5282       g_free (preedit_string);
5283     
5284       gtk_entry_recompute (entry);
5285     }
5286 }
5287
5288 static gboolean
5289 gtk_entry_retrieve_surrounding_cb (GtkIMContext *context,
5290                                    GtkEntry     *entry)
5291 {
5292   GtkEntryPrivate *priv = entry->priv;
5293   gchar *text;
5294
5295   /* XXXX ??? does this even make sense when text is not visible? Should we return FALSE? */
5296   text = gtk_entry_get_display_text (entry, 0, -1);
5297   gtk_im_context_set_surrounding (context, text, strlen (text), /* Length in bytes */
5298                                   g_utf8_offset_to_pointer (text, priv->current_pos) - text);
5299   g_free (text);
5300
5301   return TRUE;
5302 }
5303
5304 static gboolean
5305 gtk_entry_delete_surrounding_cb (GtkIMContext *slave,
5306                                  gint          offset,
5307                                  gint          n_chars,
5308                                  GtkEntry     *entry)
5309 {
5310   GtkEntryPrivate *priv = entry->priv;
5311
5312   if (priv->editable)
5313     gtk_editable_delete_text (GTK_EDITABLE (entry),
5314                               priv->current_pos + offset,
5315                               priv->current_pos + offset + n_chars);
5316
5317   return TRUE;
5318 }
5319
5320 /* Internal functions
5321  */
5322
5323 /* Used for im_commit_cb and inserting Unicode chars */
5324 static void
5325 gtk_entry_enter_text (GtkEntry       *entry,
5326                       const gchar    *str)
5327 {
5328   GtkEntryPrivate *priv = entry->priv;
5329   GtkEditable *editable = GTK_EDITABLE (entry);
5330   gint tmp_pos;
5331   gboolean old_need_im_reset;
5332
5333   old_need_im_reset = priv->need_im_reset;
5334   priv->need_im_reset = FALSE;
5335
5336   if (gtk_editable_get_selection_bounds (editable, NULL, NULL))
5337     gtk_editable_delete_selection (editable);
5338   else
5339     {
5340       if (priv->overwrite_mode)
5341         gtk_entry_delete_from_cursor (entry, GTK_DELETE_CHARS, 1);
5342     }
5343
5344   tmp_pos = priv->current_pos;
5345   gtk_editable_insert_text (editable, str, strlen (str), &tmp_pos);
5346   gtk_editable_set_position (editable, tmp_pos);
5347
5348   priv->need_im_reset = old_need_im_reset;
5349 }
5350
5351 /* All changes to priv->current_pos and priv->selection_bound
5352  * should go through this function.
5353  */
5354 static void
5355 gtk_entry_set_positions (GtkEntry *entry,
5356                          gint      current_pos,
5357                          gint      selection_bound)
5358 {
5359   GtkEntryPrivate *priv = entry->priv;
5360   gboolean changed = FALSE;
5361
5362   g_object_freeze_notify (G_OBJECT (entry));
5363   
5364   if (current_pos != -1 &&
5365       priv->current_pos != current_pos)
5366     {
5367       priv->current_pos = current_pos;
5368       changed = TRUE;
5369
5370       g_object_notify (G_OBJECT (entry), "cursor-position");
5371     }
5372
5373   if (selection_bound != -1 &&
5374       priv->selection_bound != selection_bound)
5375     {
5376       priv->selection_bound = selection_bound;
5377       changed = TRUE;
5378       
5379       g_object_notify (G_OBJECT (entry), "selection-bound");
5380     }
5381
5382   g_object_thaw_notify (G_OBJECT (entry));
5383
5384   if (changed) 
5385     {
5386       gtk_entry_move_adjustments (entry);
5387       gtk_entry_recompute (entry);
5388     }
5389 }
5390
5391 static void
5392 gtk_entry_reset_layout (GtkEntry *entry)
5393 {
5394   GtkEntryPrivate *priv = entry->priv;
5395
5396   if (priv->cached_layout)
5397     {
5398       g_object_unref (priv->cached_layout);
5399       priv->cached_layout = NULL;
5400     }
5401 }
5402
5403 static void
5404 update_im_cursor_location (GtkEntry *entry)
5405 {
5406   GtkEntryPrivate *priv = entry->priv;
5407   GdkRectangle area;
5408   gint strong_x;
5409   gint strong_xoffset;
5410   gint area_width, area_height;
5411
5412   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
5413   gtk_entry_get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5414
5415   strong_xoffset = strong_x - priv->scroll_offset;
5416   if (strong_xoffset < 0)
5417     {
5418       strong_xoffset = 0;
5419     }
5420   else if (strong_xoffset > area_width)
5421     {
5422       strong_xoffset = area_width;
5423     }
5424   area.x = strong_xoffset;
5425   area.y = 0;
5426   area.width = 0;
5427   area.height = area_height;
5428
5429   gtk_im_context_set_cursor_location (priv->im_context, &area);
5430 }
5431
5432 static gboolean
5433 recompute_idle_func (gpointer data)
5434 {
5435   GtkEntry *entry = GTK_ENTRY (data);
5436   GtkEntryPrivate *priv = entry->priv;
5437
5438   priv->recompute_idle = 0;
5439
5440   if (gtk_widget_has_screen (GTK_WIDGET (entry)))
5441     {
5442       gtk_entry_adjust_scroll (entry);
5443       gtk_widget_queue_draw (GTK_WIDGET (entry));
5444
5445       update_im_cursor_location (entry);
5446     }
5447
5448   return FALSE;
5449 }
5450
5451 static void
5452 gtk_entry_recompute (GtkEntry *entry)
5453 {
5454   GtkEntryPrivate *priv = entry->priv;
5455
5456   gtk_entry_reset_layout (entry);
5457   gtk_entry_check_cursor_blink (entry);
5458
5459   if (!priv->recompute_idle)
5460     {
5461       priv->recompute_idle = gdk_threads_add_idle_full (G_PRIORITY_HIGH_IDLE + 15, /* between resize and redraw */
5462                                                recompute_idle_func, entry, NULL); 
5463     }
5464 }
5465
5466 static void
5467 gtk_entry_get_placeholder_text_color (GtkEntry   *entry,
5468                                       PangoColor *color)
5469 {
5470   GtkWidget *widget = GTK_WIDGET (entry);
5471   GtkStyleContext *context;
5472   GdkRGBA fg = { 0.5, 0.5, 0.5 };
5473
5474   context = gtk_widget_get_style_context (widget);
5475   gtk_style_context_lookup_color (context, "placeholder_text_color", &fg);
5476
5477   color->red = CLAMP (fg.red * 65535. + 0.5, 0, 65535);
5478   color->green = CLAMP (fg.green * 65535. + 0.5, 0, 65535);
5479   color->blue = CLAMP (fg.blue * 65535. + 0.5, 0, 65535);
5480 }
5481
5482 static inline gboolean
5483 show_placeholder_text (GtkEntry *entry)
5484 {
5485   GtkEntryPrivate *priv = entry->priv;
5486
5487   if (!gtk_widget_has_focus (GTK_WIDGET (entry)) &&
5488       gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
5489       priv->placeholder_text != NULL)
5490     return TRUE;
5491
5492   return FALSE;
5493 }
5494
5495 static PangoLayout *
5496 gtk_entry_create_layout (GtkEntry *entry,
5497                          gboolean  include_preedit)
5498 {
5499   GtkEntryPrivate *priv = entry->priv;
5500   GtkWidget *widget = GTK_WIDGET (entry);
5501   PangoLayout *layout = gtk_widget_create_pango_layout (widget, NULL);
5502   PangoAttrList *tmp_attrs = pango_attr_list_new ();
5503   gboolean placeholder_layout = show_placeholder_text (entry);
5504
5505   gchar *preedit_string = NULL;
5506   gint preedit_length = 0;
5507   PangoAttrList *preedit_attrs = NULL;
5508
5509   gchar *display;
5510   guint n_bytes;
5511
5512   pango_layout_set_single_paragraph_mode (layout, TRUE);
5513
5514   display = placeholder_layout ? g_strdup (priv->placeholder_text) : gtk_entry_get_display_text (entry, 0, -1);
5515   n_bytes = strlen (display);
5516
5517   if (!placeholder_layout && include_preedit)
5518     {
5519       gtk_im_context_get_preedit_string (priv->im_context,
5520                                          &preedit_string, &preedit_attrs, NULL);
5521       preedit_length = priv->preedit_length;
5522     }
5523   else if (placeholder_layout)
5524     {
5525       PangoColor color;
5526       PangoAttribute *attr;
5527
5528       gtk_entry_get_placeholder_text_color (entry, &color);
5529       attr = pango_attr_foreground_new (color.red, color.green, color.blue);
5530       attr->start_index = 0;
5531       attr->end_index = G_MAXINT;
5532       pango_attr_list_insert (tmp_attrs, attr);
5533     }
5534
5535   if (preedit_length)
5536     {
5537       GString *tmp_string = g_string_new (display);
5538       gint cursor_index = g_utf8_offset_to_pointer (display, priv->current_pos) - display;
5539
5540       g_string_insert (tmp_string, cursor_index, preedit_string);
5541       
5542       pango_layout_set_text (layout, tmp_string->str, tmp_string->len);
5543       
5544       pango_attr_list_splice (tmp_attrs, preedit_attrs,
5545                               cursor_index, preedit_length);
5546       
5547       g_string_free (tmp_string, TRUE);
5548     }
5549   else
5550     {
5551       PangoDirection pango_dir;
5552       
5553       if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL)
5554         pango_dir = pango_find_base_dir (display, n_bytes);
5555       else
5556         pango_dir = PANGO_DIRECTION_NEUTRAL;
5557
5558       if (pango_dir == PANGO_DIRECTION_NEUTRAL)
5559         {
5560           if (gtk_widget_has_focus (widget))
5561             {
5562               GdkDisplay *display = gtk_widget_get_display (widget);
5563               GdkKeymap *keymap = gdk_keymap_get_for_display (display);
5564               if (gdk_keymap_get_direction (keymap) == PANGO_DIRECTION_RTL)
5565                 pango_dir = PANGO_DIRECTION_RTL;
5566               else
5567                 pango_dir = PANGO_DIRECTION_LTR;
5568             }
5569           else
5570             {
5571               if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
5572                 pango_dir = PANGO_DIRECTION_RTL;
5573               else
5574                 pango_dir = PANGO_DIRECTION_LTR;
5575             }
5576         }
5577
5578       pango_context_set_base_dir (gtk_widget_get_pango_context (widget),
5579                                   pango_dir);
5580
5581       priv->resolved_dir = pango_dir;
5582
5583       pango_layout_set_text (layout, display, n_bytes);
5584     }
5585       
5586   pango_layout_set_attributes (layout, tmp_attrs);
5587
5588   g_free (preedit_string);
5589   g_free (display);
5590
5591   if (preedit_attrs)
5592     pango_attr_list_unref (preedit_attrs);
5593       
5594   pango_attr_list_unref (tmp_attrs);
5595
5596   return layout;
5597 }
5598
5599 static PangoLayout *
5600 gtk_entry_ensure_layout (GtkEntry *entry,
5601                          gboolean  include_preedit)
5602 {
5603   GtkEntryPrivate *priv = entry->priv;
5604
5605   if (priv->preedit_length > 0 &&
5606       !include_preedit != !priv->cache_includes_preedit)
5607     gtk_entry_reset_layout (entry);
5608
5609   if (!priv->cached_layout)
5610     {
5611       priv->cached_layout = gtk_entry_create_layout (entry, include_preedit);
5612       priv->cache_includes_preedit = include_preedit;
5613     }
5614
5615   return priv->cached_layout;
5616 }
5617
5618 static void
5619 get_layout_position (GtkEntry *entry,
5620                      gint     *x,
5621                      gint     *y)
5622 {
5623   GtkEntryPrivate *priv = entry->priv;
5624   PangoLayout *layout;
5625   PangoRectangle logical_rect;
5626   gint area_width, area_height;
5627   GtkBorder inner_border;
5628   gint y_pos;
5629   PangoLayoutLine *line;
5630   
5631   layout = gtk_entry_ensure_layout (entry, TRUE);
5632
5633   gtk_entry_get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5634   _gtk_entry_effective_inner_border (entry, &inner_border);
5635
5636   area_height = PANGO_SCALE * (area_height - inner_border.top - inner_border.bottom);
5637
5638   line = pango_layout_get_lines_readonly (layout)->data;
5639   pango_layout_line_get_extents (line, NULL, &logical_rect);
5640   
5641   /* Align primarily for locale's ascent/descent */
5642   y_pos = ((area_height - priv->ascent - priv->descent) / 2 +
5643            priv->ascent + logical_rect.y);
5644
5645   /* Now see if we need to adjust to fit in actual drawn string */
5646   if (logical_rect.height > area_height)
5647     y_pos = (area_height - logical_rect.height) / 2;
5648   else if (y_pos < 0)
5649     y_pos = 0;
5650   else if (y_pos + logical_rect.height > area_height)
5651     y_pos = area_height - logical_rect.height;
5652   
5653   y_pos = inner_border.top + y_pos / PANGO_SCALE;
5654
5655   if (x)
5656     *x = inner_border.left - priv->scroll_offset;
5657
5658   if (y)
5659     *y = y_pos;
5660 }
5661
5662 static void
5663 draw_text_with_color (GtkEntry *entry,
5664                       cairo_t  *cr,
5665                       GdkRGBA  *default_color)
5666 {
5667   GtkEntryPrivate *priv = entry->priv;
5668   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
5669   GtkWidget *widget;
5670   gint x, y;
5671   gint start_pos, end_pos;
5672
5673   widget = GTK_WIDGET (entry);
5674
5675   cairo_save (cr);
5676
5677   get_layout_position (entry, &x, &y);
5678
5679   cairo_move_to (cr, x, y);
5680   gdk_cairo_set_source_rgba (cr, default_color);
5681   pango_cairo_show_layout (cr, layout);
5682
5683   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start_pos, &end_pos))
5684     {
5685       gint *ranges;
5686       gint n_ranges, i;
5687       PangoRectangle logical_rect;
5688       GdkRGBA selection_color, text_color;
5689       GtkBorder inner_border;
5690       GtkStyleContext *context;
5691       GtkStateFlags state;
5692
5693       context = gtk_widget_get_style_context (widget);
5694       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
5695       gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
5696
5697       state = GTK_STATE_FLAG_SELECTED;
5698
5699       if (gtk_widget_has_focus (widget))
5700         state |= GTK_STATE_FLAG_FOCUSED;
5701
5702       gtk_style_context_get_background_color (context, state, &selection_color);
5703       gtk_style_context_get_color (context, state, &text_color);
5704
5705       _gtk_entry_effective_inner_border (entry, &inner_border);
5706
5707       for (i = 0; i < n_ranges; ++i)
5708         cairo_rectangle (cr,
5709                          inner_border.left - priv->scroll_offset + ranges[2 * i],
5710                          y,
5711                          ranges[2 * i + 1],
5712                          logical_rect.height);
5713
5714       cairo_clip (cr);
5715           
5716       gdk_cairo_set_source_rgba (cr, &selection_color);
5717       cairo_paint (cr);
5718
5719       cairo_move_to (cr, x, y);
5720       gdk_cairo_set_source_rgba (cr, &text_color);
5721       pango_cairo_show_layout (cr, layout);
5722   
5723       g_free (ranges);
5724     }
5725   cairo_restore (cr);
5726 }
5727
5728 static void
5729 gtk_entry_draw_text (GtkEntry *entry,
5730                      cairo_t  *cr)
5731 {
5732   GtkEntryPrivate *priv = entry->priv;
5733   GtkWidget *widget = GTK_WIDGET (entry);
5734   GtkStateFlags state = 0;
5735   GdkRGBA text_color, bar_text_color;
5736   GtkStyleContext *context;
5737   gint pos_x, pos_y;
5738   gint width, height;
5739   gint progress_x, progress_y, progress_width, progress_height;
5740   gint clip_width, clip_height;
5741
5742   /* Nothing to display at all */
5743   if (gtk_entry_get_display_mode (entry) == DISPLAY_BLANK)
5744     return;
5745
5746   state = gtk_widget_get_state_flags (widget);
5747   context = gtk_widget_get_style_context (widget);
5748
5749   gtk_style_context_get_color (context, state, &text_color);
5750
5751   /* Get foreground color for progressbars */
5752   gtk_style_context_save (context);
5753   gtk_style_context_add_class (context, GTK_STYLE_CLASS_PROGRESSBAR);
5754   gtk_style_context_get_color (context, state, &bar_text_color);
5755   gtk_style_context_restore (context);
5756
5757   get_progress_area (widget,
5758                      &progress_x, &progress_y,
5759                      &progress_width, &progress_height);
5760
5761   clip_width = gdk_window_get_width (priv->text_area);
5762   clip_height = gdk_window_get_height (priv->text_area);
5763   cairo_rectangle (cr, 0, 0, clip_width, clip_height);
5764   cairo_clip (cr);
5765
5766   /* If the color is the same, or the progress area has a zero
5767    * size, then we only need to draw once. */
5768   if (gdk_rgba_equal (&text_color, &bar_text_color) ||
5769       ((progress_width == 0) || (progress_height == 0)))
5770     {
5771       draw_text_with_color (entry, cr, &text_color);
5772     }
5773   else
5774     {
5775       width = gdk_window_get_width (priv->text_area);
5776       height = gdk_window_get_height (priv->text_area);
5777
5778       cairo_save (cr);
5779
5780       cairo_rectangle (cr, 0, 0, width, height);
5781       cairo_clip (cr);
5782       cairo_save (cr);
5783
5784       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
5785       cairo_rectangle (cr, 0, 0, width, height);
5786
5787       gdk_window_get_position (priv->text_area, &pos_x, &pos_y);
5788       progress_x -= pos_x;
5789       progress_y -= pos_y;
5790
5791       cairo_rectangle (cr, progress_x, progress_y,
5792                        progress_width, progress_height);
5793       cairo_clip (cr);
5794       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_WINDING);
5795   
5796       draw_text_with_color (entry, cr, &text_color);
5797       cairo_restore (cr);
5798
5799       cairo_rectangle (cr, progress_x, progress_y,
5800                        progress_width, progress_height);
5801       cairo_clip (cr);
5802
5803       draw_text_with_color (entry, cr, &bar_text_color);
5804
5805       cairo_restore (cr);
5806     }
5807 }
5808
5809 static void
5810 draw_insertion_cursor (GtkEntry      *entry,
5811                        cairo_t       *cr,
5812                        GdkRectangle  *cursor_location,
5813                        gboolean       is_primary,
5814                        PangoDirection direction,
5815                        gboolean       draw_arrow)
5816 {
5817   GtkWidget *widget = GTK_WIDGET (entry);
5818   GtkTextDirection text_dir;
5819
5820   if (direction == PANGO_DIRECTION_LTR)
5821     text_dir = GTK_TEXT_DIR_LTR;
5822   else
5823     text_dir = GTK_TEXT_DIR_RTL;
5824
5825   gtk_draw_insertion_cursor (widget, cr,
5826                              cursor_location,
5827                              is_primary, text_dir, draw_arrow);
5828 }
5829
5830 static void
5831 gtk_entry_draw_cursor (GtkEntry  *entry,
5832                        cairo_t   *cr,
5833                        CursorType type)
5834 {
5835   GtkEntryPrivate *priv = entry->priv;
5836   GtkWidget *widget = GTK_WIDGET (entry);
5837   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
5838   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
5839   GdkRectangle cursor_location;
5840   gboolean split_cursor;
5841   PangoRectangle cursor_rect;
5842   GtkBorder inner_border;
5843   gint xoffset;
5844   gint text_area_height;
5845   gint cursor_index;
5846   gboolean block;
5847   gboolean block_at_line_end;
5848   PangoLayout *layout;
5849   const char *text;
5850
5851   _gtk_entry_effective_inner_border (entry, &inner_border);
5852
5853   xoffset = inner_border.left - priv->scroll_offset;
5854
5855   text_area_height = gdk_window_get_height (priv->text_area);
5856
5857   layout = gtk_entry_ensure_layout (entry, TRUE);
5858   text = pango_layout_get_text (layout);
5859   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
5860   if (!priv->overwrite_mode)
5861     block = FALSE;
5862   else
5863     block = _gtk_text_util_get_block_cursor_location (layout,
5864                                                       cursor_index, &cursor_rect, &block_at_line_end);
5865
5866   if (!block)
5867     {
5868       gint strong_x, weak_x;
5869       PangoDirection dir1 = PANGO_DIRECTION_NEUTRAL;
5870       PangoDirection dir2 = PANGO_DIRECTION_NEUTRAL;
5871       gint x1 = 0;
5872       gint x2 = 0;
5873
5874       gtk_entry_get_cursor_locations (entry, type, &strong_x, &weak_x);
5875
5876       g_object_get (gtk_widget_get_settings (widget),
5877                     "gtk-split-cursor", &split_cursor,
5878                     NULL);
5879
5880       dir1 = priv->resolved_dir;
5881   
5882       if (split_cursor)
5883         {
5884           x1 = strong_x;
5885
5886           if (weak_x != strong_x)
5887             {
5888               dir2 = (priv->resolved_dir == PANGO_DIRECTION_LTR) ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR;
5889               x2 = weak_x;
5890             }
5891         }
5892       else
5893         {
5894           if (keymap_direction == priv->resolved_dir)
5895             x1 = strong_x;
5896           else
5897             x1 = weak_x;
5898         }
5899
5900       cursor_location.x = xoffset + x1;
5901       cursor_location.y = inner_border.top;
5902       cursor_location.width = 0;
5903       cursor_location.height = text_area_height - inner_border.top - inner_border.bottom;
5904
5905       draw_insertion_cursor (entry, cr,
5906                              &cursor_location, TRUE, dir1,
5907                              dir2 != PANGO_DIRECTION_NEUTRAL);
5908   
5909       if (dir2 != PANGO_DIRECTION_NEUTRAL)
5910         {
5911           cursor_location.x = xoffset + x2;
5912           draw_insertion_cursor (entry, cr,
5913                                  &cursor_location, FALSE, dir2,
5914                                  TRUE);
5915         }
5916     }
5917   else /* overwrite_mode */
5918     {
5919       GtkStyleContext *context;
5920       GdkRGBA cursor_color;
5921       GdkRectangle rect;
5922       gint x, y;
5923
5924       cairo_save (cr);
5925
5926       get_layout_position (entry, &x, &y);
5927
5928       rect.x = PANGO_PIXELS (cursor_rect.x) + x;
5929       rect.y = PANGO_PIXELS (cursor_rect.y) + y;
5930       rect.width = PANGO_PIXELS (cursor_rect.width);
5931       rect.height = PANGO_PIXELS (cursor_rect.height);
5932
5933       context = gtk_widget_get_style_context (widget);
5934
5935       _gtk_style_context_get_cursor_color (context, &cursor_color, NULL);
5936       gdk_cairo_set_source_rgba (cr, &cursor_color);
5937       gdk_cairo_rectangle (cr, &rect);
5938       cairo_fill (cr);
5939
5940       if (!block_at_line_end)
5941         {
5942           GtkStateFlags state;
5943           GdkRGBA color;
5944
5945           state = gtk_widget_get_state_flags (widget);
5946           gtk_style_context_get_background_color (context, state, &color);
5947
5948           gdk_cairo_rectangle (cr, &rect);
5949           cairo_clip (cr);
5950           cairo_move_to (cr, x, y);
5951           gdk_cairo_set_source_rgba (cr, &color);
5952           pango_cairo_show_layout (cr, layout);
5953         }
5954
5955       cairo_restore (cr);
5956     }
5957 }
5958
5959 void
5960 _gtk_entry_reset_im_context (GtkEntry *entry)
5961 {
5962   GtkEntryPrivate *priv = entry->priv;
5963
5964   if (priv->need_im_reset)
5965     {
5966       priv->need_im_reset = FALSE;
5967       gtk_im_context_reset (priv->im_context);
5968     }
5969 }
5970
5971 /**
5972  * gtk_entry_reset_im_context:
5973  * @entry: a #GtkEntry
5974  *
5975  * Reset the input method context of the entry if needed.
5976  *
5977  * This can be necessary in the case where modifying the buffer
5978  * would confuse on-going input method behavior.
5979  *
5980  * Since: 2.22
5981  */
5982 void
5983 gtk_entry_reset_im_context (GtkEntry *entry)
5984 {
5985   g_return_if_fail (GTK_IS_ENTRY (entry));
5986
5987   _gtk_entry_reset_im_context (entry);
5988 }
5989
5990 /**
5991  * gtk_entry_im_context_filter_keypress:
5992  * @entry: a #GtkEntry
5993  * @event: (type Gdk.EventKey): the key event
5994  *
5995  * Allow the #GtkEntry input method to internally handle key press
5996  * and release events. If this function returns %TRUE, then no further
5997  * processing should be done for this key event. See
5998  * gtk_im_context_filter_keypress().
5999  *
6000  * Note that you are expected to call this function from your handler
6001  * when overriding key event handling. This is needed in the case when
6002  * you need to insert your own key handling between the input method
6003  * and the default key event handling of the #GtkEntry.
6004  * See gtk_text_view_reset_im_context() for an example of use.
6005  *
6006  * Return value: %TRUE if the input method handled the key event.
6007  *
6008  * Since: 2.22
6009  */
6010 gboolean
6011 gtk_entry_im_context_filter_keypress (GtkEntry    *entry,
6012                                       GdkEventKey *event)
6013 {
6014   GtkEntryPrivate *priv;
6015
6016   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
6017
6018   priv = entry->priv;
6019
6020   return gtk_im_context_filter_keypress (priv->im_context, event);
6021 }
6022
6023 GtkIMContext*
6024 _gtk_entry_get_im_context (GtkEntry *entry)
6025 {
6026   return entry->priv->im_context;
6027 }
6028
6029 static gint
6030 gtk_entry_find_position (GtkEntry *entry,
6031                          gint      x)
6032 {
6033   GtkEntryPrivate *priv = entry->priv;
6034   PangoLayout *layout;
6035   PangoLayoutLine *line;
6036   gint index;
6037   gint pos;
6038   gint trailing;
6039   const gchar *text;
6040   gint cursor_index;
6041   
6042   layout = gtk_entry_ensure_layout (entry, TRUE);
6043   text = pango_layout_get_text (layout);
6044   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
6045
6046   line = pango_layout_get_lines_readonly (layout)->data;
6047   pango_layout_line_x_to_index (line, x * PANGO_SCALE, &index, &trailing);
6048
6049   if (index >= cursor_index && priv->preedit_length)
6050     {
6051       if (index >= cursor_index + priv->preedit_length)
6052         index -= priv->preedit_length;
6053       else
6054         {
6055           index = cursor_index;
6056           trailing = 0;
6057         }
6058     }
6059
6060   pos = g_utf8_pointer_to_offset (text, text + index);
6061   pos += trailing;
6062
6063   return pos;
6064 }
6065
6066 static void
6067 gtk_entry_get_cursor_locations (GtkEntry   *entry,
6068                                 CursorType  type,
6069                                 gint       *strong_x,
6070                                 gint       *weak_x)
6071 {
6072   GtkEntryPrivate *priv = entry->priv;
6073   DisplayMode mode = gtk_entry_get_display_mode (entry);
6074
6075   /* Nothing to display at all, so no cursor is relevant */
6076   if (mode == DISPLAY_BLANK)
6077     {
6078       if (strong_x)
6079         *strong_x = 0;
6080       
6081       if (weak_x)
6082         *weak_x = 0;
6083     }
6084   else
6085     {
6086       PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
6087       const gchar *text = pango_layout_get_text (layout);
6088       PangoRectangle strong_pos, weak_pos;
6089       gint index;
6090   
6091       if (type == CURSOR_STANDARD)
6092         {
6093           index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
6094         }
6095       else /* type == CURSOR_DND */
6096         {
6097           index = g_utf8_offset_to_pointer (text, priv->dnd_position) - text;
6098
6099           if (priv->dnd_position > priv->current_pos)
6100             {
6101               if (mode == DISPLAY_NORMAL)
6102                 index += priv->preedit_length;
6103               else
6104                 {
6105                   gint preedit_len_chars = g_utf8_strlen (text, -1) - gtk_entry_buffer_get_length (get_buffer (entry));
6106                   index += preedit_len_chars * g_unichar_to_utf8 (priv->invisible_char, NULL);
6107                 }
6108             }
6109         }
6110       
6111       pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
6112       
6113       if (strong_x)
6114         *strong_x = strong_pos.x / PANGO_SCALE;
6115       
6116       if (weak_x)
6117         *weak_x = weak_pos.x / PANGO_SCALE;
6118     }
6119 }
6120
6121 static void
6122 gtk_entry_adjust_scroll (GtkEntry *entry)
6123 {
6124   GtkEntryPrivate *priv = entry->priv;
6125   gint min_offset, max_offset;
6126   gint text_area_width, text_width;
6127   GtkBorder inner_border;
6128   gint strong_x, weak_x;
6129   gint strong_xoffset, weak_xoffset;
6130   gfloat xalign;
6131   PangoLayout *layout;
6132   PangoLayoutLine *line;
6133   PangoRectangle logical_rect;
6134
6135   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6136     return;
6137
6138   _gtk_entry_effective_inner_border (entry, &inner_border);
6139
6140   text_area_width = gdk_window_get_width (priv->text_area);
6141   text_area_width -= inner_border.left + inner_border.right;
6142   if (text_area_width < 0)
6143     text_area_width = 0;
6144
6145   layout = gtk_entry_ensure_layout (entry, TRUE);
6146   line = pango_layout_get_lines_readonly (layout)->data;
6147
6148   pango_layout_line_get_extents (line, NULL, &logical_rect);
6149
6150   /* Display as much text as we can */
6151
6152   if (priv->resolved_dir == PANGO_DIRECTION_LTR)
6153       xalign = priv->xalign;
6154   else
6155       xalign = 1.0 - priv->xalign;
6156
6157   text_width = PANGO_PIXELS(logical_rect.width);
6158
6159   if (text_width > text_area_width)
6160     {
6161       min_offset = 0;
6162       max_offset = text_width - text_area_width;
6163     }
6164   else
6165     {
6166       min_offset = (text_width - text_area_width) * xalign;
6167       max_offset = min_offset;
6168     }
6169
6170   priv->scroll_offset = CLAMP (priv->scroll_offset, min_offset, max_offset);
6171
6172   /* And make sure cursors are on screen. Note that the cursor is
6173    * actually drawn one pixel into the INNER_BORDER space on
6174    * the right, when the scroll is at the utmost right. This
6175    * looks better to to me than confining the cursor inside the
6176    * border entirely, though it means that the cursor gets one
6177    * pixel closer to the edge of the widget on the right than
6178    * on the left. This might need changing if one changed
6179    * INNER_BORDER from 2 to 1, as one would do on a
6180    * small-screen-real-estate display.
6181    *
6182    * We always make sure that the strong cursor is on screen, and
6183    * put the weak cursor on screen if possible.
6184    */
6185
6186   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, &weak_x);
6187   
6188   strong_xoffset = strong_x - priv->scroll_offset;
6189
6190   if (strong_xoffset < 0)
6191     {
6192       priv->scroll_offset += strong_xoffset;
6193       strong_xoffset = 0;
6194     }
6195   else if (strong_xoffset > text_area_width)
6196     {
6197       priv->scroll_offset += strong_xoffset - text_area_width;
6198       strong_xoffset = text_area_width;
6199     }
6200
6201   weak_xoffset = weak_x - priv->scroll_offset;
6202
6203   if (weak_xoffset < 0 && strong_xoffset - weak_xoffset <= text_area_width)
6204     {
6205       priv->scroll_offset += weak_xoffset;
6206     }
6207   else if (weak_xoffset > text_area_width &&
6208            strong_xoffset - (weak_xoffset - text_area_width) >= 0)
6209     {
6210       priv->scroll_offset += weak_xoffset - text_area_width;
6211     }
6212
6213   g_object_notify (G_OBJECT (entry), "scroll-offset");
6214 }
6215
6216 static void
6217 gtk_entry_move_adjustments (GtkEntry *entry)
6218 {
6219   GtkWidget *widget = GTK_WIDGET (entry);
6220   GtkAllocation allocation;
6221   GtkAdjustment *adjustment;
6222   PangoContext *context;
6223   PangoFontMetrics *metrics;
6224   GtkStyleContext *style_context;
6225   GtkStateFlags state;
6226   gint x, layout_x, border_x, border_y;
6227   gint char_width;
6228
6229   adjustment = g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
6230   if (!adjustment)
6231     return;
6232
6233   gtk_widget_get_allocation (widget, &allocation);
6234
6235   /* Cursor position, layout offset, border width, and widget allocation */
6236   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &x, NULL);
6237   get_layout_position (entry, &layout_x, NULL);
6238   _gtk_entry_get_borders (entry, &border_x, &border_y);
6239   x += allocation.x + layout_x + border_x;
6240
6241   /* Approximate width of a char, so user can see what is ahead/behind */
6242   context = gtk_widget_get_pango_context (widget);
6243   style_context = gtk_widget_get_style_context (widget);
6244   state = gtk_widget_get_state_flags (widget);
6245
6246   metrics = pango_context_get_metrics (context,
6247                                        gtk_style_context_get_font (style_context, state),
6248                                        pango_context_get_language (context));
6249   char_width = pango_font_metrics_get_approximate_char_width (metrics) / PANGO_SCALE;
6250
6251   /* Scroll it */
6252   gtk_adjustment_clamp_page (adjustment, 
6253                              x - (char_width + 1),   /* one char + one pixel before */
6254                              x + (char_width + 2));  /* one char + cursor + one pixel after */
6255 }
6256
6257 static gint
6258 gtk_entry_move_visually (GtkEntry *entry,
6259                          gint      start,
6260                          gint      count)
6261 {
6262   GtkEntryPrivate *priv = entry->priv;
6263   gint index;
6264   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6265   const gchar *text;
6266
6267   text = pango_layout_get_text (layout);
6268   
6269   index = g_utf8_offset_to_pointer (text, start) - text;
6270
6271   while (count != 0)
6272     {
6273       int new_index, new_trailing;
6274       gboolean split_cursor;
6275       gboolean strong;
6276
6277       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
6278                     "gtk-split-cursor", &split_cursor,
6279                     NULL);
6280
6281       if (split_cursor)
6282         strong = TRUE;
6283       else
6284         {
6285           GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
6286           PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
6287
6288           strong = keymap_direction == priv->resolved_dir;
6289         }
6290       
6291       if (count > 0)
6292         {
6293           pango_layout_move_cursor_visually (layout, strong, index, 0, 1, &new_index, &new_trailing);
6294           count--;
6295         }
6296       else
6297         {
6298           pango_layout_move_cursor_visually (layout, strong, index, 0, -1, &new_index, &new_trailing);
6299           count++;
6300         }
6301
6302       if (new_index < 0)
6303         index = 0;
6304       else if (new_index != G_MAXINT)
6305         index = new_index;
6306       
6307       while (new_trailing--)
6308         index = g_utf8_next_char (text + index) - text;
6309     }
6310   
6311   return g_utf8_pointer_to_offset (text, text + index);
6312 }
6313
6314 static gint
6315 gtk_entry_move_logically (GtkEntry *entry,
6316                           gint      start,
6317                           gint      count)
6318 {
6319   gint new_pos = start;
6320   guint length;
6321
6322   length = gtk_entry_buffer_get_length (get_buffer (entry));
6323
6324   /* Prevent any leak of information */
6325   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6326     {
6327       new_pos = CLAMP (start + count, 0, length);
6328     }
6329   else
6330     {
6331       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6332       PangoLogAttr *log_attrs;
6333       gint n_attrs;
6334
6335       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6336
6337       while (count > 0 && new_pos < length)
6338         {
6339           do
6340             new_pos++;
6341           while (new_pos < length && !log_attrs[new_pos].is_cursor_position);
6342           
6343           count--;
6344         }
6345       while (count < 0 && new_pos > 0)
6346         {
6347           do
6348             new_pos--;
6349           while (new_pos > 0 && !log_attrs[new_pos].is_cursor_position);
6350           
6351           count++;
6352         }
6353       
6354       g_free (log_attrs);
6355     }
6356
6357   return new_pos;
6358 }
6359
6360 static gint
6361 gtk_entry_move_forward_word (GtkEntry *entry,
6362                              gint      start,
6363                              gboolean  allow_whitespace)
6364 {
6365   gint new_pos = start;
6366   guint length;
6367
6368   length = gtk_entry_buffer_get_length (get_buffer (entry));
6369
6370   /* Prevent any leak of information */
6371   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6372     {
6373       new_pos = length;
6374     }
6375   else if (new_pos < length)
6376     {
6377       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6378       PangoLogAttr *log_attrs;
6379       gint n_attrs;
6380
6381       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6382       
6383       /* Find the next word boundary */
6384       new_pos++;
6385       while (new_pos < n_attrs - 1 && !(log_attrs[new_pos].is_word_end ||
6386                                         (log_attrs[new_pos].is_word_start && allow_whitespace)))
6387         new_pos++;
6388
6389       g_free (log_attrs);
6390     }
6391
6392   return new_pos;
6393 }
6394
6395
6396 static gint
6397 gtk_entry_move_backward_word (GtkEntry *entry,
6398                               gint      start,
6399                               gboolean  allow_whitespace)
6400 {
6401   gint new_pos = start;
6402
6403   /* Prevent any leak of information */
6404   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6405     {
6406       new_pos = 0;
6407     }
6408   else if (start > 0)
6409     {
6410       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6411       PangoLogAttr *log_attrs;
6412       gint n_attrs;
6413
6414       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6415
6416       new_pos = start - 1;
6417
6418       /* Find the previous word boundary */
6419       while (new_pos > 0 && !(log_attrs[new_pos].is_word_start || 
6420                               (log_attrs[new_pos].is_word_end && allow_whitespace)))
6421         new_pos--;
6422
6423       g_free (log_attrs);
6424     }
6425
6426   return new_pos;
6427 }
6428
6429 static void
6430 gtk_entry_delete_whitespace (GtkEntry *entry)
6431 {
6432   GtkEntryPrivate *priv = entry->priv;
6433   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6434   PangoLogAttr *log_attrs;
6435   gint n_attrs;
6436   gint start, end;
6437
6438   pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6439
6440   start = end = priv->current_pos;
6441   
6442   while (start > 0 && log_attrs[start-1].is_white)
6443     start--;
6444
6445   while (end < n_attrs && log_attrs[end].is_white)
6446     end++;
6447
6448   g_free (log_attrs);
6449
6450   if (start != end)
6451     gtk_editable_delete_text (GTK_EDITABLE (entry), start, end);
6452 }
6453
6454
6455 static void
6456 gtk_entry_select_word (GtkEntry *entry)
6457 {
6458   GtkEntryPrivate *priv = entry->priv;
6459   gint start_pos = gtk_entry_move_backward_word (entry, priv->current_pos, TRUE);
6460   gint end_pos = gtk_entry_move_forward_word (entry, priv->current_pos, TRUE);
6461
6462   gtk_editable_select_region (GTK_EDITABLE (entry), start_pos, end_pos);
6463 }
6464
6465 static void
6466 gtk_entry_select_line (GtkEntry *entry)
6467 {
6468   gtk_editable_select_region (GTK_EDITABLE (entry), 0, -1);
6469 }
6470
6471 static gint
6472 truncate_multiline (const gchar *text)
6473 {
6474   gint length;
6475
6476   for (length = 0;
6477        text[length] && text[length] != '\n' && text[length] != '\r';
6478        length++);
6479
6480   return length;
6481 }
6482
6483 static void
6484 paste_received (GtkClipboard *clipboard,
6485                 const gchar  *text,
6486                 gpointer      data)
6487 {
6488   GtkEntry *entry = GTK_ENTRY (data);
6489   GtkEditable *editable = GTK_EDITABLE (entry);
6490   GtkEntryPrivate *priv = entry->priv;
6491
6492   if (priv->button == 2)
6493     {
6494       gint pos, start, end;
6495       pos = priv->insert_pos;
6496       gtk_editable_get_selection_bounds (editable, &start, &end);
6497       if (!((start <= pos && pos <= end) || (end <= pos && pos <= start)))
6498         gtk_editable_select_region (editable, pos, pos);
6499     }
6500       
6501   if (text)
6502     {
6503       gint pos, start, end;
6504       gint length = -1;
6505       gboolean popup_completion;
6506       GtkEntryCompletion *completion;
6507
6508       completion = gtk_entry_get_completion (entry);
6509
6510       if (priv->truncate_multiline)
6511         length = truncate_multiline (text);
6512
6513       /* only complete if the selection is at the end */
6514       popup_completion = (gtk_entry_buffer_get_length (get_buffer (entry)) ==
6515                           MAX (priv->current_pos, priv->selection_bound));
6516
6517       if (completion)
6518         {
6519           if (gtk_widget_get_mapped (completion->priv->popup_window))
6520             _gtk_entry_completion_popdown (completion);
6521
6522           if (!popup_completion && completion->priv->changed_id > 0)
6523             g_signal_handler_block (entry, completion->priv->changed_id);
6524         }
6525
6526       begin_change (entry);
6527       g_object_freeze_notify (G_OBJECT (entry));
6528       if (gtk_editable_get_selection_bounds (editable, &start, &end))
6529         gtk_editable_delete_text (editable, start, end);
6530
6531       pos = priv->current_pos;
6532       gtk_editable_insert_text (editable, text, length, &pos);
6533       gtk_editable_set_position (editable, pos);
6534       g_object_thaw_notify (G_OBJECT (entry));
6535       end_change (entry);
6536
6537       if (completion &&
6538           !popup_completion && completion->priv->changed_id > 0)
6539         g_signal_handler_unblock (entry, completion->priv->changed_id);
6540     }
6541
6542   g_object_unref (entry);
6543 }
6544
6545 static void
6546 gtk_entry_paste (GtkEntry *entry,
6547                  GdkAtom   selection)
6548 {
6549   g_object_ref (entry);
6550   gtk_clipboard_request_text (gtk_widget_get_clipboard (GTK_WIDGET (entry), selection),
6551                               paste_received, entry);
6552 }
6553
6554 static void
6555 primary_get_cb (GtkClipboard     *clipboard,
6556                 GtkSelectionData *selection_data,
6557                 guint             info,
6558                 gpointer          data)
6559 {
6560   GtkEntry *entry = GTK_ENTRY (data);
6561   gint start, end;
6562   
6563   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6564     {
6565       gchar *str = gtk_entry_get_display_text (entry, start, end);
6566       gtk_selection_data_set_text (selection_data, str, -1);
6567       g_free (str);
6568     }
6569 }
6570
6571 static void
6572 primary_clear_cb (GtkClipboard *clipboard,
6573                   gpointer      data)
6574 {
6575   GtkEntry *entry = GTK_ENTRY (data);
6576   GtkEntryPrivate *priv = entry->priv;
6577
6578   gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
6579 }
6580
6581 static void
6582 gtk_entry_update_primary_selection (GtkEntry *entry)
6583 {
6584   GtkTargetList *list;
6585   GtkTargetEntry *targets;
6586   GtkClipboard *clipboard;
6587   gint start, end;
6588   gint n_targets;
6589
6590   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6591     return;
6592
6593   list = gtk_target_list_new (NULL, 0);
6594   gtk_target_list_add_text_targets (list, 0);
6595
6596   targets = gtk_target_table_new_from_list (list, &n_targets);
6597
6598   clipboard = gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_PRIMARY);
6599   
6600   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6601     {
6602       if (!gtk_clipboard_set_with_owner (clipboard, targets, n_targets,
6603                                          primary_get_cb, primary_clear_cb, G_OBJECT (entry)))
6604         primary_clear_cb (clipboard, entry);
6605     }
6606   else
6607     {
6608       if (gtk_clipboard_get_owner (clipboard) == G_OBJECT (entry))
6609         gtk_clipboard_clear (clipboard);
6610     }
6611
6612   gtk_target_table_free (targets, n_targets);
6613   gtk_target_list_unref (list);
6614 }
6615
6616 static void
6617 gtk_entry_clear (GtkEntry             *entry,
6618                  GtkEntryIconPosition  icon_pos)
6619 {
6620   GtkEntryPrivate *priv = entry->priv;
6621   EntryIconInfo *icon_info = priv->icons[icon_pos];
6622
6623   if (!icon_info || icon_info->storage_type == GTK_IMAGE_EMPTY)
6624     return;
6625
6626   g_object_freeze_notify (G_OBJECT (entry));
6627
6628   /* Explicitly check, as the pointer may become invalidated
6629    * during destruction.
6630    */
6631   if (GDK_IS_WINDOW (icon_info->window))
6632     gdk_window_hide (icon_info->window);
6633
6634   if (icon_info->pixbuf)
6635     {
6636       g_object_unref (icon_info->pixbuf);
6637       icon_info->pixbuf = NULL;
6638     }
6639
6640   switch (icon_info->storage_type)
6641     {
6642     case GTK_IMAGE_PIXBUF:
6643       g_object_notify (G_OBJECT (entry),
6644                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-pixbuf" : "secondary-icon-pixbuf");
6645       break;
6646
6647     case GTK_IMAGE_STOCK:
6648       g_free (icon_info->stock_id);
6649       icon_info->stock_id = NULL;
6650       g_object_notify (G_OBJECT (entry),
6651                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-stock" : "secondary-icon-stock");
6652       break;
6653
6654     case GTK_IMAGE_ICON_NAME:
6655       g_free (icon_info->icon_name);
6656       icon_info->icon_name = NULL;
6657       g_object_notify (G_OBJECT (entry),
6658                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-name" : "secondary-icon-name");
6659       break;
6660
6661     case GTK_IMAGE_GICON:
6662       if (icon_info->gicon)
6663         {
6664           g_object_unref (icon_info->gicon);
6665           icon_info->gicon = NULL;
6666         }
6667       g_object_notify (G_OBJECT (entry),
6668                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-gicon" : "secondary-icon-gicon");
6669       break;
6670
6671     default:
6672       g_assert_not_reached ();
6673       break;
6674     }
6675
6676   icon_info->storage_type = GTK_IMAGE_EMPTY;
6677   g_object_notify (G_OBJECT (entry),
6678                    icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-storage-type" : "secondary-icon-storage-type");
6679
6680   g_object_thaw_notify (G_OBJECT (entry));
6681 }
6682
6683 static GdkPixbuf *
6684 create_normal_pixbuf (GtkStyleContext *context,
6685                       const gchar     *stock_id,
6686                       GtkIconSize      icon_size)
6687 {
6688   GtkIconSet *icon_set;
6689   GdkPixbuf *pixbuf;
6690
6691   gtk_style_context_save (context);
6692
6693   /* Unset any state */
6694   gtk_style_context_set_state (context, 0);
6695
6696   icon_set = gtk_style_context_lookup_icon_set (context, stock_id);
6697   pixbuf = gtk_icon_set_render_icon_pixbuf (icon_set, context, icon_size);
6698
6699   gtk_style_context_restore (context);
6700
6701   return pixbuf;
6702 }
6703
6704 static void
6705 gtk_entry_ensure_pixbuf (GtkEntry             *entry,
6706                          GtkEntryIconPosition  icon_pos)
6707 {
6708   GtkEntryPrivate *priv = entry->priv;
6709   EntryIconInfo *icon_info = priv->icons[icon_pos];
6710   GtkStyleContext *context;
6711   GtkIconInfo *info;
6712   GtkIconTheme *icon_theme;
6713   GtkSettings *settings;
6714   GtkWidget *widget;
6715   GdkScreen *screen;
6716   gint width, height;
6717
6718   if (!icon_info || icon_info->pixbuf)
6719     return;
6720
6721   widget = GTK_WIDGET (entry);
6722   context = gtk_widget_get_style_context (widget);
6723
6724   switch (icon_info->storage_type)
6725     {
6726     case GTK_IMAGE_EMPTY:
6727     case GTK_IMAGE_PIXBUF:
6728       break;
6729     case GTK_IMAGE_STOCK:
6730       icon_info->pixbuf = create_normal_pixbuf (context, icon_info->stock_id,
6731                                                 GTK_ICON_SIZE_MENU);
6732
6733       if (!icon_info->pixbuf)
6734         icon_info->pixbuf = create_normal_pixbuf (context,
6735                                                   GTK_STOCK_MISSING_IMAGE,
6736                                                   GTK_ICON_SIZE_MENU);
6737       break;
6738
6739     case GTK_IMAGE_ICON_NAME:
6740       screen = gtk_widget_get_screen (widget);
6741       if (screen)
6742         {
6743           icon_theme = gtk_icon_theme_get_for_screen (screen);
6744           settings = gtk_settings_get_for_screen (screen);
6745
6746           gtk_icon_size_lookup_for_settings (settings,
6747                                              GTK_ICON_SIZE_MENU,
6748                                              &width, &height);
6749
6750           icon_info->pixbuf = gtk_icon_theme_load_icon (icon_theme,
6751                                                         icon_info->icon_name,
6752                                                         MIN (width, height),
6753                                                         0, NULL);
6754
6755           if (icon_info->pixbuf == NULL)
6756             icon_info->pixbuf = create_normal_pixbuf (context,
6757                                                       GTK_STOCK_MISSING_IMAGE,
6758                                                       GTK_ICON_SIZE_MENU);
6759         }
6760       break;
6761
6762     case GTK_IMAGE_GICON:
6763       screen = gtk_widget_get_screen (widget);
6764       if (screen)
6765         {
6766           icon_theme = gtk_icon_theme_get_for_screen (screen);
6767           settings = gtk_settings_get_for_screen (screen);
6768
6769           gtk_icon_size_lookup_for_settings (settings,
6770                                              GTK_ICON_SIZE_MENU,
6771                                              &width, &height);
6772
6773           info = gtk_icon_theme_lookup_by_gicon (icon_theme,
6774                                                  icon_info->gicon,
6775                                                  MIN (width, height), 
6776                                                  GTK_ICON_LOOKUP_USE_BUILTIN);
6777           if (info)
6778             {
6779               icon_info->pixbuf = gtk_icon_info_load_icon (info, NULL);
6780               gtk_icon_info_free (info);
6781             }
6782
6783           if (icon_info->pixbuf == NULL)
6784             icon_info->pixbuf = create_normal_pixbuf (context,
6785                                                       GTK_STOCK_MISSING_IMAGE,
6786                                                       GTK_ICON_SIZE_MENU);
6787         }
6788       break;
6789
6790     default:
6791       g_assert_not_reached ();
6792       break;
6793     }
6794     
6795   if (icon_info->pixbuf != NULL && icon_info->window != NULL)
6796     gdk_window_show_unraised (icon_info->window);
6797 }
6798
6799
6800 /* Public API
6801  */
6802
6803 /**
6804  * gtk_entry_new:
6805  *
6806  * Creates a new entry.
6807  *
6808  * Return value: a new #GtkEntry.
6809  */
6810 GtkWidget*
6811 gtk_entry_new (void)
6812 {
6813   return g_object_new (GTK_TYPE_ENTRY, NULL);
6814 }
6815
6816 /**
6817  * gtk_entry_new_with_buffer:
6818  * @buffer: The buffer to use for the new #GtkEntry.
6819  *
6820  * Creates a new entry with the specified text buffer.
6821  *
6822  * Return value: a new #GtkEntry
6823  *
6824  * Since: 2.18
6825  */
6826 GtkWidget*
6827 gtk_entry_new_with_buffer (GtkEntryBuffer *buffer)
6828 {
6829   g_return_val_if_fail (GTK_IS_ENTRY_BUFFER (buffer), NULL);
6830   return g_object_new (GTK_TYPE_ENTRY, "buffer", buffer, NULL);
6831 }
6832
6833 static GtkEntryBuffer*
6834 get_buffer (GtkEntry *entry)
6835 {
6836   GtkEntryPrivate *priv = entry->priv;
6837
6838   if (priv->buffer == NULL)
6839     {
6840       GtkEntryBuffer *buffer;
6841       buffer = gtk_entry_buffer_new (NULL, 0);
6842       gtk_entry_set_buffer (entry, buffer);
6843       g_object_unref (buffer);
6844     }
6845
6846   return priv->buffer;
6847 }
6848
6849 /**
6850  * gtk_entry_get_buffer:
6851  * @entry: a #GtkEntry
6852  *
6853  * Get the #GtkEntryBuffer object which holds the text for
6854  * this widget.
6855  *
6856  * Since: 2.18
6857  *
6858  * Returns: (transfer none): A #GtkEntryBuffer object.
6859  */
6860 GtkEntryBuffer*
6861 gtk_entry_get_buffer (GtkEntry *entry)
6862 {
6863   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
6864
6865   return get_buffer (entry);
6866 }
6867
6868 /**
6869  * gtk_entry_set_buffer:
6870  * @entry: a #GtkEntry
6871  * @buffer: a #GtkEntryBuffer
6872  *
6873  * Set the #GtkEntryBuffer object which holds the text for
6874  * this widget.
6875  *
6876  * Since: 2.18
6877  */
6878 void
6879 gtk_entry_set_buffer (GtkEntry       *entry,
6880                       GtkEntryBuffer *buffer)
6881 {
6882   GtkEntryPrivate *priv;
6883   GObject *obj;
6884
6885   g_return_if_fail (GTK_IS_ENTRY (entry));
6886
6887   priv = entry->priv;
6888
6889   if (buffer)
6890     {
6891       g_return_if_fail (GTK_IS_ENTRY_BUFFER (buffer));
6892       g_object_ref (buffer);
6893     }
6894
6895   if (priv->buffer)
6896     {
6897       buffer_disconnect_signals (entry);
6898       g_object_unref (priv->buffer);
6899     }
6900
6901   priv->buffer = buffer;
6902
6903   if (priv->buffer)
6904      buffer_connect_signals (entry);
6905
6906   obj = G_OBJECT (entry);
6907   g_object_freeze_notify (obj);
6908   g_object_notify (obj, "buffer");
6909   g_object_notify (obj, "text");
6910   g_object_notify (obj, "text-length");
6911   g_object_notify (obj, "max-length");
6912   g_object_notify (obj, "visibility");
6913   g_object_notify (obj, "invisible-char");
6914   g_object_notify (obj, "invisible-char-set");
6915   g_object_thaw_notify (obj);
6916
6917   gtk_editable_set_position (GTK_EDITABLE (entry), 0);
6918   gtk_entry_recompute (entry);
6919 }
6920
6921 /**
6922  * gtk_entry_get_text_area:
6923  * @entry: a #GtkEntry
6924  * @text_area: (out): Return location for the text area.
6925  *
6926  * Gets the area where the entry's text is drawn. This function is
6927  * useful when drawing something to the entry in a draw callback.
6928  *
6929  * If the entry is not realized, @text_area is filled with zeros.
6930  *
6931  * See also gtk_entry_get_icon_area().
6932  *
6933  * Since: 3.0
6934  **/
6935 void
6936 gtk_entry_get_text_area (GtkEntry     *entry,
6937                          GdkRectangle *text_area)
6938 {
6939   GtkEntryPrivate *priv;
6940
6941   g_return_if_fail (GTK_IS_ENTRY (entry));
6942   g_return_if_fail (text_area != NULL);
6943
6944   priv = entry->priv;
6945
6946   if (priv->text_area)
6947     {
6948       GtkAllocation allocation;
6949       gint x, y;
6950
6951       gtk_widget_get_allocation (GTK_WIDGET (entry), &allocation);
6952       gdk_window_get_position (priv->text_area, &x, &y);
6953
6954       text_area->x = x - allocation.x;
6955       text_area->y = y - allocation.y;
6956       text_area->width = gdk_window_get_width (priv->text_area);
6957       text_area->height = gdk_window_get_height (priv->text_area);
6958     }
6959   else
6960     {
6961       text_area->x = 0;
6962       text_area->y = 0;
6963       text_area->width = 0;
6964       text_area->height = 0;
6965     }
6966 }
6967
6968 /**
6969  * gtk_entry_set_text:
6970  * @entry: a #GtkEntry
6971  * @text: the new text
6972  *
6973  * Sets the text in the widget to the given
6974  * value, replacing the current contents.
6975  *
6976  * See gtk_entry_buffer_set_text().
6977  */
6978 void
6979 gtk_entry_set_text (GtkEntry    *entry,
6980                     const gchar *text)
6981 {
6982   gint tmp_pos;
6983   GtkEntryCompletion *completion;
6984
6985   g_return_if_fail (GTK_IS_ENTRY (entry));
6986   g_return_if_fail (text != NULL);
6987
6988   /* Actually setting the text will affect the cursor and selection;
6989    * if the contents don't actually change, this will look odd to the user.
6990    */
6991   if (strcmp (gtk_entry_buffer_get_text (get_buffer (entry)), text) == 0)
6992     return;
6993
6994   completion = gtk_entry_get_completion (entry);
6995   if (completion && completion->priv->changed_id > 0)
6996     g_signal_handler_block (entry, completion->priv->changed_id);
6997
6998   begin_change (entry);
6999   g_object_freeze_notify (G_OBJECT (entry));
7000   gtk_editable_delete_text (GTK_EDITABLE (entry), 0, -1);
7001   tmp_pos = 0;
7002   gtk_editable_insert_text (GTK_EDITABLE (entry), text, strlen (text), &tmp_pos);
7003   g_object_thaw_notify (G_OBJECT (entry));
7004   end_change (entry);
7005
7006   if (completion && completion->priv->changed_id > 0)
7007     g_signal_handler_unblock (entry, completion->priv->changed_id);
7008 }
7009
7010 /**
7011  * gtk_entry_set_visibility:
7012  * @entry: a #GtkEntry
7013  * @visible: %TRUE if the contents of the entry are displayed
7014  *           as plaintext
7015  *
7016  * Sets whether the contents of the entry are visible or not. 
7017  * When visibility is set to %FALSE, characters are displayed 
7018  * as the invisible char, and will also appear that way when 
7019  * the text in the entry widget is copied elsewhere.
7020  *
7021  * By default, GTK+ picks the best invisible character available
7022  * in the current font, but it can be changed with
7023  * gtk_entry_set_invisible_char().
7024  */
7025 void
7026 gtk_entry_set_visibility (GtkEntry *entry,
7027                           gboolean visible)
7028 {
7029   GtkEntryPrivate *priv;
7030
7031   g_return_if_fail (GTK_IS_ENTRY (entry));
7032
7033   priv = entry->priv;
7034
7035   visible = visible != FALSE;
7036
7037   if (priv->visible != visible)
7038     {
7039       priv->visible = visible;
7040
7041       g_object_notify (G_OBJECT (entry), "visibility");
7042       gtk_entry_recompute (entry);
7043     }
7044 }
7045
7046 /**
7047  * gtk_entry_get_visibility:
7048  * @entry: a #GtkEntry
7049  *
7050  * Retrieves whether the text in @entry is visible. See
7051  * gtk_entry_set_visibility().
7052  *
7053  * Return value: %TRUE if the text is currently visible
7054  **/
7055 gboolean
7056 gtk_entry_get_visibility (GtkEntry *entry)
7057 {
7058   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7059
7060   return entry->priv->visible;
7061 }
7062
7063 /**
7064  * gtk_entry_set_invisible_char:
7065  * @entry: a #GtkEntry
7066  * @ch: a Unicode character
7067  * 
7068  * Sets the character to use in place of the actual text when
7069  * gtk_entry_set_visibility() has been called to set text visibility
7070  * to %FALSE. i.e. this is the character used in "password mode" to
7071  * show the user how many characters have been typed. By default, GTK+
7072  * picks the best invisible char available in the current font. If you
7073  * set the invisible char to 0, then the user will get no feedback
7074  * at all; there will be no text on the screen as they type.
7075  **/
7076 void
7077 gtk_entry_set_invisible_char (GtkEntry *entry,
7078                               gunichar  ch)
7079 {
7080   GtkEntryPrivate *priv;
7081
7082   g_return_if_fail (GTK_IS_ENTRY (entry));
7083
7084   priv = entry->priv;
7085
7086   if (!priv->invisible_char_set)
7087     {
7088       priv->invisible_char_set = TRUE;
7089       g_object_notify (G_OBJECT (entry), "invisible-char-set");
7090     }
7091
7092   if (ch == priv->invisible_char)
7093     return;
7094
7095   priv->invisible_char = ch;
7096   g_object_notify (G_OBJECT (entry), "invisible-char");
7097   gtk_entry_recompute (entry);  
7098 }
7099
7100 /**
7101  * gtk_entry_get_invisible_char:
7102  * @entry: a #GtkEntry
7103  *
7104  * Retrieves the character displayed in place of the real characters
7105  * for entries with visibility set to false. See gtk_entry_set_invisible_char().
7106  *
7107  * Return value: the current invisible char, or 0, if the entry does not
7108  *               show invisible text at all. 
7109  **/
7110 gunichar
7111 gtk_entry_get_invisible_char (GtkEntry *entry)
7112 {
7113   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7114
7115   return entry->priv->invisible_char;
7116 }
7117
7118 /**
7119  * gtk_entry_unset_invisible_char:
7120  * @entry: a #GtkEntry
7121  *
7122  * Unsets the invisible char previously set with
7123  * gtk_entry_set_invisible_char(). So that the
7124  * default invisible char is used again.
7125  *
7126  * Since: 2.16
7127  **/
7128 void
7129 gtk_entry_unset_invisible_char (GtkEntry *entry)
7130 {
7131   GtkEntryPrivate *priv;
7132   gunichar ch;
7133
7134   g_return_if_fail (GTK_IS_ENTRY (entry));
7135
7136   priv = entry->priv;
7137
7138   if (!priv->invisible_char_set)
7139     return;
7140
7141   priv->invisible_char_set = FALSE;
7142   ch = find_invisible_char (GTK_WIDGET (entry));
7143
7144   if (priv->invisible_char != ch)
7145     {
7146       priv->invisible_char = ch;
7147       g_object_notify (G_OBJECT (entry), "invisible-char");
7148     }
7149
7150   g_object_notify (G_OBJECT (entry), "invisible-char-set");
7151   gtk_entry_recompute (entry);
7152 }
7153
7154 /**
7155  * gtk_entry_set_overwrite_mode:
7156  * @entry: a #GtkEntry
7157  * @overwrite: new value
7158  * 
7159  * Sets whether the text is overwritten when typing in the #GtkEntry.
7160  *
7161  * Since: 2.14
7162  **/
7163 void
7164 gtk_entry_set_overwrite_mode (GtkEntry *entry,
7165                               gboolean  overwrite)
7166 {
7167   GtkEntryPrivate *priv = entry->priv;
7168
7169   g_return_if_fail (GTK_IS_ENTRY (entry));
7170
7171   if (priv->overwrite_mode == overwrite)
7172     return;
7173   
7174   gtk_entry_toggle_overwrite (entry);
7175
7176   g_object_notify (G_OBJECT (entry), "overwrite-mode");
7177 }
7178
7179 /**
7180  * gtk_entry_get_overwrite_mode:
7181  * @entry: a #GtkEntry
7182  * 
7183  * Gets the value set by gtk_entry_set_overwrite_mode().
7184  * 
7185  * Return value: whether the text is overwritten when typing.
7186  *
7187  * Since: 2.14
7188  **/
7189 gboolean
7190 gtk_entry_get_overwrite_mode (GtkEntry *entry)
7191 {
7192   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7193
7194   return entry->priv->overwrite_mode;
7195 }
7196
7197 /**
7198  * gtk_entry_get_text:
7199  * @entry: a #GtkEntry
7200  *
7201  * Retrieves the contents of the entry widget.
7202  * See also gtk_editable_get_chars().
7203  *
7204  * This is equivalent to:
7205  *
7206  * <informalexample><programlisting>
7207  * gtk_entry_buffer_get_text (gtk_entry_get_buffer (entry));
7208  * </programlisting></informalexample>
7209  *
7210  * Return value: a pointer to the contents of the widget as a
7211  *      string. This string points to internally allocated
7212  *      storage in the widget and must not be freed, modified or
7213  *      stored.
7214  **/
7215 G_CONST_RETURN gchar*
7216 gtk_entry_get_text (GtkEntry *entry)
7217 {
7218   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7219
7220   return gtk_entry_buffer_get_text (get_buffer (entry));
7221 }
7222
7223 /**
7224  * gtk_entry_set_max_length:
7225  * @entry: a #GtkEntry
7226  * @max: the maximum length of the entry, or 0 for no maximum.
7227  *   (other than the maximum length of entries.) The value passed in will
7228  *   be clamped to the range 0-65536.
7229  * 
7230  * Sets the maximum allowed length of the contents of the widget. If
7231  * the current contents are longer than the given length, then they
7232  * will be truncated to fit.
7233  *
7234  * This is equivalent to:
7235  *
7236  * <informalexample><programlisting>
7237  * gtk_entry_buffer_set_max_length (gtk_entry_get_buffer (entry), max);
7238  * </programlisting></informalexample>
7239  **/
7240 void
7241 gtk_entry_set_max_length (GtkEntry     *entry,
7242                           gint          max)
7243 {
7244   g_return_if_fail (GTK_IS_ENTRY (entry));
7245   gtk_entry_buffer_set_max_length (get_buffer (entry), max);
7246 }
7247
7248 /**
7249  * gtk_entry_get_max_length:
7250  * @entry: a #GtkEntry
7251  *
7252  * Retrieves the maximum allowed length of the text in
7253  * @entry. See gtk_entry_set_max_length().
7254  *
7255  * This is equivalent to:
7256  *
7257  * <informalexample><programlisting>
7258  * gtk_entry_buffer_get_max_length (gtk_entry_get_buffer (entry));
7259  * </programlisting></informalexample>
7260  *
7261  * Return value: the maximum allowed number of characters
7262  *               in #GtkEntry, or 0 if there is no maximum.
7263  **/
7264 gint
7265 gtk_entry_get_max_length (GtkEntry *entry)
7266 {
7267   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7268
7269   return gtk_entry_buffer_get_max_length (get_buffer (entry));
7270 }
7271
7272 /**
7273  * gtk_entry_get_text_length:
7274  * @entry: a #GtkEntry
7275  *
7276  * Retrieves the current length of the text in
7277  * @entry. 
7278  *
7279  * This is equivalent to:
7280  *
7281  * <informalexample><programlisting>
7282  * gtk_entry_buffer_get_length (gtk_entry_get_buffer (entry));
7283  * </programlisting></informalexample>
7284  *
7285  * Return value: the current number of characters
7286  *               in #GtkEntry, or 0 if there are none.
7287  *
7288  * Since: 2.14
7289  **/
7290 guint16
7291 gtk_entry_get_text_length (GtkEntry *entry)
7292 {
7293   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7294
7295   return gtk_entry_buffer_get_length (get_buffer (entry));
7296 }
7297
7298 /**
7299  * gtk_entry_set_activates_default:
7300  * @entry: a #GtkEntry
7301  * @setting: %TRUE to activate window's default widget on Enter keypress
7302  *
7303  * If @setting is %TRUE, pressing Enter in the @entry will activate the default
7304  * widget for the window containing the entry. This usually means that
7305  * the dialog box containing the entry will be closed, since the default
7306  * widget is usually one of the dialog buttons.
7307  *
7308  * (For experts: if @setting is %TRUE, the entry calls
7309  * gtk_window_activate_default() on the window containing the entry, in
7310  * the default handler for the #GtkWidget::activate signal.)
7311  **/
7312 void
7313 gtk_entry_set_activates_default (GtkEntry *entry,
7314                                  gboolean  setting)
7315 {
7316   GtkEntryPrivate *priv;
7317
7318   g_return_if_fail (GTK_IS_ENTRY (entry));
7319
7320   priv = entry->priv;
7321
7322   setting = setting != FALSE;
7323
7324   if (setting != priv->activates_default)
7325     {
7326       priv->activates_default = setting;
7327       g_object_notify (G_OBJECT (entry), "activates-default");
7328     }
7329 }
7330
7331 /**
7332  * gtk_entry_get_activates_default:
7333  * @entry: a #GtkEntry
7334  * 
7335  * Retrieves the value set by gtk_entry_set_activates_default().
7336  * 
7337  * Return value: %TRUE if the entry will activate the default widget
7338  **/
7339 gboolean
7340 gtk_entry_get_activates_default (GtkEntry *entry)
7341 {
7342   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7343
7344   return entry->priv->activates_default;
7345 }
7346
7347 /**
7348  * gtk_entry_set_width_chars:
7349  * @entry: a #GtkEntry
7350  * @n_chars: width in chars
7351  *
7352  * Changes the size request of the entry to be about the right size
7353  * for @n_chars characters. Note that it changes the size
7354  * <emphasis>request</emphasis>, the size can still be affected by
7355  * how you pack the widget into containers. If @n_chars is -1, the
7356  * size reverts to the default entry size.
7357  **/
7358 void
7359 gtk_entry_set_width_chars (GtkEntry *entry,
7360                            gint      n_chars)
7361 {
7362   GtkEntryPrivate *priv;
7363
7364   g_return_if_fail (GTK_IS_ENTRY (entry));
7365
7366   priv = entry->priv;
7367
7368   if (priv->width_chars != n_chars)
7369     {
7370       priv->width_chars = n_chars;
7371       g_object_notify (G_OBJECT (entry), "width-chars");
7372       gtk_widget_queue_resize (GTK_WIDGET (entry));
7373     }
7374 }
7375
7376 /**
7377  * gtk_entry_get_width_chars:
7378  * @entry: a #GtkEntry
7379  * 
7380  * Gets the value set by gtk_entry_set_width_chars().
7381  * 
7382  * Return value: number of chars to request space for, or negative if unset
7383  **/
7384 gint
7385 gtk_entry_get_width_chars (GtkEntry *entry)
7386 {
7387   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7388
7389   return entry->priv->width_chars;
7390 }
7391
7392 /**
7393  * gtk_entry_set_has_frame:
7394  * @entry: a #GtkEntry
7395  * @setting: new value
7396  * 
7397  * Sets whether the entry has a beveled frame around it.
7398  **/
7399 void
7400 gtk_entry_set_has_frame (GtkEntry *entry,
7401                          gboolean  setting)
7402 {
7403   GtkEntryPrivate *priv;
7404
7405   g_return_if_fail (GTK_IS_ENTRY (entry));
7406
7407   priv = entry->priv;
7408
7409   setting = (setting != FALSE);
7410
7411   if (priv->has_frame == setting)
7412     return;
7413
7414   gtk_widget_queue_resize (GTK_WIDGET (entry));
7415   priv->has_frame = setting;
7416   g_object_notify (G_OBJECT (entry), "has-frame");
7417 }
7418
7419 /**
7420  * gtk_entry_get_has_frame:
7421  * @entry: a #GtkEntry
7422  * 
7423  * Gets the value set by gtk_entry_set_has_frame().
7424  * 
7425  * Return value: whether the entry has a beveled frame
7426  **/
7427 gboolean
7428 gtk_entry_get_has_frame (GtkEntry *entry)
7429 {
7430   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7431
7432   return entry->priv->has_frame;
7433 }
7434
7435 /**
7436  * gtk_entry_set_inner_border:
7437  * @entry: a #GtkEntry
7438  * @border: (allow-none): a #GtkBorder, or %NULL
7439  *
7440  * Sets %entry's inner-border property to %border, or clears it if %NULL
7441  * is passed. The inner-border is the area around the entry's text, but
7442  * inside its frame.
7443  *
7444  * If set, this property overrides the inner-border style property.
7445  * Overriding the style-provided border is useful when you want to do
7446  * in-place editing of some text in a canvas or list widget, where
7447  * pixel-exact positioning of the entry is important.
7448  *
7449  * Since: 2.10
7450  **/
7451 void
7452 gtk_entry_set_inner_border (GtkEntry        *entry,
7453                             const GtkBorder *border)
7454 {
7455   g_return_if_fail (GTK_IS_ENTRY (entry));
7456
7457   gtk_widget_queue_resize (GTK_WIDGET (entry));
7458
7459   if (border)
7460     g_object_set_qdata_full (G_OBJECT (entry), quark_inner_border,
7461                              gtk_border_copy (border),
7462                              (GDestroyNotify) gtk_border_free);
7463   else
7464     g_object_set_qdata (G_OBJECT (entry), quark_inner_border, NULL);
7465
7466   g_object_notify (G_OBJECT (entry), "inner-border");
7467 }
7468
7469 /**
7470  * gtk_entry_get_inner_border:
7471  * @entry: a #GtkEntry
7472  *
7473  * This function returns the entry's #GtkEntry:inner-border property. See
7474  * gtk_entry_set_inner_border() for more information.
7475  *
7476  * Return value: (transfer none): the entry's #GtkBorder, or %NULL if none was set.
7477  *
7478  * Since: 2.10
7479  **/
7480 G_CONST_RETURN GtkBorder *
7481 gtk_entry_get_inner_border (GtkEntry *entry)
7482 {
7483   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7484
7485   return g_object_get_qdata (G_OBJECT (entry), quark_inner_border);
7486 }
7487
7488 /**
7489  * gtk_entry_get_layout:
7490  * @entry: a #GtkEntry
7491  * 
7492  * Gets the #PangoLayout used to display the entry.
7493  * The layout is useful to e.g. convert text positions to
7494  * pixel positions, in combination with gtk_entry_get_layout_offsets().
7495  * The returned layout is owned by the entry and must not be 
7496  * modified or freed by the caller.
7497  *
7498  * Keep in mind that the layout text may contain a preedit string, so
7499  * gtk_entry_layout_index_to_text_index() and
7500  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7501  * indices in the layout to byte indices in the entry contents.
7502  *
7503  * Return value: (transfer none): the #PangoLayout for this entry
7504  **/
7505 PangoLayout*
7506 gtk_entry_get_layout (GtkEntry *entry)
7507 {
7508   PangoLayout *layout;
7509   
7510   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7511
7512   layout = gtk_entry_ensure_layout (entry, TRUE);
7513
7514   return layout;
7515 }
7516
7517
7518 /**
7519  * gtk_entry_layout_index_to_text_index:
7520  * @entry: a #GtkEntry
7521  * @layout_index: byte index into the entry layout text
7522  * 
7523  * Converts from a position in the entry contents (returned
7524  * by gtk_entry_get_text()) to a position in the
7525  * entry's #PangoLayout (returned by gtk_entry_get_layout(),
7526  * with text retrieved via pango_layout_get_text()).
7527  * 
7528  * Return value: byte index into the entry contents
7529  **/
7530 gint
7531 gtk_entry_layout_index_to_text_index (GtkEntry *entry,
7532                                       gint      layout_index)
7533 {
7534   GtkEntryPrivate *priv;
7535   PangoLayout *layout;
7536   const gchar *text;
7537   gint cursor_index;
7538   
7539   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7540
7541   priv = entry->priv;
7542
7543   layout = gtk_entry_ensure_layout (entry, TRUE);
7544   text = pango_layout_get_text (layout);
7545   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7546
7547   if (layout_index >= cursor_index && priv->preedit_length)
7548     {
7549       if (layout_index >= cursor_index + priv->preedit_length)
7550         layout_index -= priv->preedit_length;
7551       else
7552         layout_index = cursor_index;
7553     }
7554
7555   return layout_index;
7556 }
7557
7558 /**
7559  * gtk_entry_text_index_to_layout_index:
7560  * @entry: a #GtkEntry
7561  * @text_index: byte index into the entry contents
7562  * 
7563  * Converts from a position in the entry's #PangoLayout (returned by
7564  * gtk_entry_get_layout()) to a position in the entry contents
7565  * (returned by gtk_entry_get_text()).
7566  * 
7567  * Return value: byte index into the entry layout text
7568  **/
7569 gint
7570 gtk_entry_text_index_to_layout_index (GtkEntry *entry,
7571                                       gint      text_index)
7572 {
7573   GtkEntryPrivate *priv;
7574   PangoLayout *layout;
7575   const gchar *text;
7576   gint cursor_index;
7577
7578   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7579
7580   priv = entry->priv;
7581
7582   layout = gtk_entry_ensure_layout (entry, TRUE);
7583   text = pango_layout_get_text (layout);
7584   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7585
7586   if (text_index > cursor_index)
7587     text_index += priv->preedit_length;
7588
7589   return text_index;
7590 }
7591
7592 /**
7593  * gtk_entry_get_layout_offsets:
7594  * @entry: a #GtkEntry
7595  * @x: (out) (allow-none): location to store X offset of layout, or %NULL
7596  * @y: (out) (allow-none): location to store Y offset of layout, or %NULL
7597  *
7598  *
7599  * Obtains the position of the #PangoLayout used to render text
7600  * in the entry, in widget coordinates. Useful if you want to line
7601  * up the text in an entry with some other text, e.g. when using the
7602  * entry to implement editable cells in a sheet widget.
7603  *
7604  * Also useful to convert mouse events into coordinates inside the
7605  * #PangoLayout, e.g. to take some action if some part of the entry text
7606  * is clicked.
7607  * 
7608  * Note that as the user scrolls around in the entry the offsets will
7609  * change; you'll need to connect to the "notify::scroll-offset"
7610  * signal to track this. Remember when using the #PangoLayout
7611  * functions you need to convert to and from pixels using
7612  * PANGO_PIXELS() or #PANGO_SCALE.
7613  *
7614  * Keep in mind that the layout text may contain a preedit string, so
7615  * gtk_entry_layout_index_to_text_index() and
7616  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7617  * indices in the layout to byte indices in the entry contents.
7618  **/
7619 void
7620 gtk_entry_get_layout_offsets (GtkEntry *entry,
7621                               gint     *x,
7622                               gint     *y)
7623 {
7624   gint text_area_x, text_area_y;
7625   
7626   g_return_if_fail (GTK_IS_ENTRY (entry));
7627
7628   /* this gets coords relative to text area */
7629   get_layout_position (entry, x, y);
7630
7631   /* convert to widget coords */
7632   gtk_entry_get_text_area_size (entry, &text_area_x, &text_area_y, NULL, NULL);
7633   
7634   if (x)
7635     *x += text_area_x;
7636
7637   if (y)
7638     *y += text_area_y;
7639 }
7640
7641
7642 /**
7643  * gtk_entry_set_alignment:
7644  * @entry: a #GtkEntry
7645  * @xalign: The horizontal alignment, from 0 (left) to 1 (right).
7646  *          Reversed for RTL layouts
7647  * 
7648  * Sets the alignment for the contents of the entry. This controls
7649  * the horizontal positioning of the contents when the displayed
7650  * text is shorter than the width of the entry.
7651  *
7652  * Since: 2.4
7653  **/
7654 void
7655 gtk_entry_set_alignment (GtkEntry *entry, gfloat xalign)
7656 {
7657   GtkEntryPrivate *priv;
7658
7659   g_return_if_fail (GTK_IS_ENTRY (entry));
7660
7661   priv = entry->priv;
7662
7663   if (xalign < 0.0)
7664     xalign = 0.0;
7665   else if (xalign > 1.0)
7666     xalign = 1.0;
7667
7668   if (xalign != priv->xalign)
7669     {
7670       priv->xalign = xalign;
7671
7672       gtk_entry_recompute (entry);
7673
7674       g_object_notify (G_OBJECT (entry), "xalign");
7675     }
7676 }
7677
7678 /**
7679  * gtk_entry_get_alignment:
7680  * @entry: a #GtkEntry
7681  * 
7682  * Gets the value set by gtk_entry_set_alignment().
7683  * 
7684  * Return value: the alignment
7685  *
7686  * Since: 2.4
7687  **/
7688 gfloat
7689 gtk_entry_get_alignment (GtkEntry *entry)
7690 {
7691   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
7692
7693   return entry->priv->xalign;
7694 }
7695
7696 /**
7697  * gtk_entry_set_icon_from_pixbuf:
7698  * @entry: a #GtkEntry
7699  * @icon_pos: Icon position
7700  * @pixbuf: (allow-none): A #GdkPixbuf, or %NULL
7701  *
7702  * Sets the icon shown in the specified position using a pixbuf.
7703  *
7704  * If @pixbuf is %NULL, no icon will be shown in the specified position.
7705  *
7706  * Since: 2.16
7707  */
7708 void
7709 gtk_entry_set_icon_from_pixbuf (GtkEntry             *entry,
7710                                 GtkEntryIconPosition  icon_pos,
7711                                 GdkPixbuf            *pixbuf)
7712 {
7713   GtkEntryPrivate *priv;
7714   EntryIconInfo *icon_info;
7715
7716   g_return_if_fail (GTK_IS_ENTRY (entry));
7717   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7718
7719   priv = entry->priv;
7720
7721   if ((icon_info = priv->icons[icon_pos]) == NULL)
7722     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7723
7724   g_object_freeze_notify (G_OBJECT (entry));
7725
7726   if (pixbuf)
7727     g_object_ref (pixbuf);
7728
7729   gtk_entry_clear (entry, icon_pos);
7730
7731   if (pixbuf)
7732     {
7733       icon_info->storage_type = GTK_IMAGE_PIXBUF;
7734       icon_info->pixbuf = pixbuf;
7735
7736       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7737         {
7738           g_object_notify (G_OBJECT (entry), "primary-icon-pixbuf");
7739           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7740         }
7741       else
7742         {
7743           g_object_notify (G_OBJECT (entry), "secondary-icon-pixbuf");
7744           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7745         }
7746
7747       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7748           gdk_window_show_unraised (icon_info->window);
7749     }
7750
7751   gtk_entry_ensure_pixbuf (entry, icon_pos);
7752   
7753   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7754     gtk_widget_queue_resize (GTK_WIDGET (entry));
7755
7756   g_object_thaw_notify (G_OBJECT (entry));
7757 }
7758
7759 /**
7760  * gtk_entry_set_icon_from_stock:
7761  * @entry: A #GtkEntry
7762  * @icon_pos: Icon position
7763  * @stock_id: (allow-none): The name of the stock item, or %NULL
7764  *
7765  * Sets the icon shown in the entry at the specified position from
7766  * a stock image.
7767  *
7768  * If @stock_id is %NULL, no icon will be shown in the specified position.
7769  *
7770  * Since: 2.16
7771  */
7772 void
7773 gtk_entry_set_icon_from_stock (GtkEntry             *entry,
7774                                GtkEntryIconPosition  icon_pos,
7775                                const gchar          *stock_id)
7776 {
7777   GtkEntryPrivate *priv;
7778   EntryIconInfo *icon_info;
7779   gchar *new_id;
7780
7781   g_return_if_fail (GTK_IS_ENTRY (entry));
7782   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7783
7784   priv = entry->priv;
7785
7786   if ((icon_info = priv->icons[icon_pos]) == NULL)
7787     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7788
7789   g_object_freeze_notify (G_OBJECT (entry));
7790
7791   /* need to dup before clearing */
7792   new_id = g_strdup (stock_id);
7793
7794   gtk_entry_clear (entry, icon_pos);
7795
7796   if (new_id != NULL)
7797     {
7798       icon_info->storage_type = GTK_IMAGE_STOCK;
7799       icon_info->stock_id = new_id;
7800
7801       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7802         {
7803           g_object_notify (G_OBJECT (entry), "primary-icon-stock");
7804           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7805         }
7806       else
7807         {
7808           g_object_notify (G_OBJECT (entry), "secondary-icon-stock");
7809           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7810         }
7811
7812       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7813           gdk_window_show_unraised (icon_info->window);
7814     }
7815
7816   gtk_entry_ensure_pixbuf (entry, icon_pos);
7817
7818   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7819     gtk_widget_queue_resize (GTK_WIDGET (entry));
7820
7821   g_object_thaw_notify (G_OBJECT (entry));
7822 }
7823
7824 /**
7825  * gtk_entry_set_icon_from_icon_name:
7826  * @entry: A #GtkEntry
7827  * @icon_pos: The position at which to set the icon
7828  * @icon_name: (allow-none): An icon name, or %NULL
7829  *
7830  * Sets the icon shown in the entry at the specified position
7831  * from the current icon theme.
7832  *
7833  * If the icon name isn't known, a "broken image" icon will be displayed
7834  * instead.
7835  *
7836  * If @icon_name is %NULL, no icon will be shown in the specified position.
7837  *
7838  * Since: 2.16
7839  */
7840 void
7841 gtk_entry_set_icon_from_icon_name (GtkEntry             *entry,
7842                                    GtkEntryIconPosition  icon_pos,
7843                                    const gchar          *icon_name)
7844 {
7845   GtkEntryPrivate *priv;
7846   EntryIconInfo *icon_info;
7847   gchar *new_name;
7848
7849   g_return_if_fail (GTK_IS_ENTRY (entry));
7850   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7851
7852   priv = entry->priv;
7853
7854   if ((icon_info = priv->icons[icon_pos]) == NULL)
7855     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7856
7857   g_object_freeze_notify (G_OBJECT (entry));
7858
7859   /* need to dup before clearing */
7860   new_name = g_strdup (icon_name);
7861
7862   gtk_entry_clear (entry, icon_pos);
7863
7864   if (new_name != NULL)
7865     {
7866       icon_info->storage_type = GTK_IMAGE_ICON_NAME;
7867       icon_info->icon_name = new_name;
7868
7869       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7870         {
7871           g_object_notify (G_OBJECT (entry), "primary-icon-name");
7872           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7873         }
7874       else
7875         {
7876           g_object_notify (G_OBJECT (entry), "secondary-icon-name");
7877           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7878         }
7879
7880       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7881           gdk_window_show_unraised (icon_info->window);
7882     }
7883
7884   gtk_entry_ensure_pixbuf (entry, icon_pos);
7885
7886   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7887     gtk_widget_queue_resize (GTK_WIDGET (entry));
7888
7889   g_object_thaw_notify (G_OBJECT (entry));
7890 }
7891
7892 /**
7893  * gtk_entry_set_icon_from_gicon:
7894  * @entry: A #GtkEntry
7895  * @icon_pos: The position at which to set the icon
7896  * @icon: (allow-none): The icon to set, or %NULL
7897  *
7898  * Sets the icon shown in the entry at the specified position
7899  * from the current icon theme.
7900  * If the icon isn't known, a "broken image" icon will be displayed
7901  * instead.
7902  *
7903  * If @icon is %NULL, no icon will be shown in the specified position.
7904  *
7905  * Since: 2.16
7906  */
7907 void
7908 gtk_entry_set_icon_from_gicon (GtkEntry             *entry,
7909                                GtkEntryIconPosition  icon_pos,
7910                                GIcon                *icon)
7911 {
7912   GtkEntryPrivate *priv;
7913   EntryIconInfo *icon_info;
7914
7915   g_return_if_fail (GTK_IS_ENTRY (entry));
7916   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7917
7918   priv = entry->priv;
7919
7920   if ((icon_info = priv->icons[icon_pos]) == NULL)
7921     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7922
7923   g_object_freeze_notify (G_OBJECT (entry));
7924
7925   /* need to ref before clearing */
7926   if (icon)
7927     g_object_ref (icon);
7928
7929   gtk_entry_clear (entry, icon_pos);
7930
7931   if (icon)
7932     {
7933       icon_info->storage_type = GTK_IMAGE_GICON;
7934       icon_info->gicon = icon;
7935
7936       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7937         {
7938           g_object_notify (G_OBJECT (entry), "primary-icon-gicon");
7939           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7940         }
7941       else
7942         {
7943           g_object_notify (G_OBJECT (entry), "secondary-icon-gicon");
7944           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7945         }
7946
7947       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7948           gdk_window_show_unraised (icon_info->window);
7949     }
7950
7951   gtk_entry_ensure_pixbuf (entry, icon_pos);
7952
7953   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7954     gtk_widget_queue_resize (GTK_WIDGET (entry));
7955
7956   g_object_thaw_notify (G_OBJECT (entry));
7957 }
7958
7959 /**
7960  * gtk_entry_set_icon_activatable:
7961  * @entry: A #GtkEntry
7962  * @icon_pos: Icon position
7963  * @activatable: %TRUE if the icon should be activatable
7964  *
7965  * Sets whether the icon is activatable.
7966  *
7967  * Since: 2.16
7968  */
7969 void
7970 gtk_entry_set_icon_activatable (GtkEntry             *entry,
7971                                 GtkEntryIconPosition  icon_pos,
7972                                 gboolean              activatable)
7973 {
7974   GtkEntryPrivate *priv;
7975   EntryIconInfo *icon_info;
7976
7977   g_return_if_fail (GTK_IS_ENTRY (entry));
7978   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7979
7980   priv = entry->priv;
7981
7982   if ((icon_info = priv->icons[icon_pos]) == NULL)
7983     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7984
7985   activatable = activatable != FALSE;
7986
7987   if (icon_info->nonactivatable != !activatable)
7988     {
7989       icon_info->nonactivatable = !activatable;
7990
7991       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
7992         update_cursors (GTK_WIDGET (entry));
7993
7994       g_object_notify (G_OBJECT (entry),
7995                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-activatable" : "secondary-icon-activatable");
7996     }
7997 }
7998
7999 /**
8000  * gtk_entry_get_icon_activatable:
8001  * @entry: a #GtkEntry
8002  * @icon_pos: Icon position
8003  *
8004  * Returns whether the icon is activatable.
8005  *
8006  * Returns: %TRUE if the icon is activatable.
8007  *
8008  * Since: 2.16
8009  */
8010 gboolean
8011 gtk_entry_get_icon_activatable (GtkEntry             *entry,
8012                                 GtkEntryIconPosition  icon_pos)
8013 {
8014   GtkEntryPrivate *priv;
8015   EntryIconInfo *icon_info;
8016
8017   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
8018   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), FALSE);
8019
8020   priv = entry->priv;
8021   icon_info = priv->icons[icon_pos];
8022
8023   return (!icon_info || !icon_info->nonactivatable);
8024 }
8025
8026 /**
8027  * gtk_entry_get_icon_pixbuf:
8028  * @entry: A #GtkEntry
8029  * @icon_pos: Icon position
8030  *
8031  * Retrieves the image used for the icon.
8032  *
8033  * Unlike the other methods of setting and getting icon data, this
8034  * method will work regardless of whether the icon was set using a
8035  * #GdkPixbuf, a #GIcon, a stock item, or an icon name.
8036  *
8037  * Returns: (transfer none): A #GdkPixbuf, or %NULL if no icon is
8038  *     set for this position.
8039  *
8040  * Since: 2.16
8041  */
8042 GdkPixbuf *
8043 gtk_entry_get_icon_pixbuf (GtkEntry             *entry,
8044                            GtkEntryIconPosition  icon_pos)
8045 {
8046   GtkEntryPrivate *priv;
8047   EntryIconInfo *icon_info;
8048
8049   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8050   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8051
8052   priv = entry->priv;
8053
8054   icon_info = priv->icons[icon_pos];
8055
8056   if (!icon_info)
8057     return NULL;
8058
8059   gtk_entry_ensure_pixbuf (entry, icon_pos);
8060
8061   return icon_info->pixbuf;
8062 }
8063
8064 /**
8065  * gtk_entry_get_icon_gicon:
8066  * @entry: A #GtkEntry
8067  * @icon_pos: Icon position
8068  *
8069  * Retrieves the #GIcon used for the icon, or %NULL if there is
8070  * no icon or if the icon was set by some other method (e.g., by
8071  * stock, pixbuf, or icon name).
8072  *
8073  * Returns: (transfer none): A #GIcon, or %NULL if no icon is set
8074  *     or if the icon is not a #GIcon
8075  *
8076  * Since: 2.16
8077  */
8078 GIcon *
8079 gtk_entry_get_icon_gicon (GtkEntry             *entry,
8080                           GtkEntryIconPosition  icon_pos)
8081 {
8082   GtkEntryPrivate *priv;
8083   EntryIconInfo *icon_info;
8084
8085   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8086   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8087
8088   priv = entry->priv;
8089   icon_info = priv->icons[icon_pos];
8090
8091   if (!icon_info)
8092     return NULL;
8093
8094   return icon_info->storage_type == GTK_IMAGE_GICON ? icon_info->gicon : NULL;
8095 }
8096
8097 /**
8098  * gtk_entry_get_icon_stock:
8099  * @entry: A #GtkEntry
8100  * @icon_pos: Icon position
8101  *
8102  * Retrieves the stock id used for the icon, or %NULL if there is
8103  * no icon or if the icon was set by some other method (e.g., by
8104  * pixbuf, icon name or gicon).
8105  *
8106  * Returns: A stock id, or %NULL if no icon is set or if the icon
8107  *          wasn't set from a stock id
8108  *
8109  * Since: 2.16
8110  */
8111 const gchar *
8112 gtk_entry_get_icon_stock (GtkEntry             *entry,
8113                           GtkEntryIconPosition  icon_pos)
8114 {
8115   GtkEntryPrivate *priv;
8116   EntryIconInfo *icon_info;
8117
8118   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8119   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8120
8121   priv = entry->priv;
8122   icon_info = priv->icons[icon_pos];
8123
8124   if (!icon_info)
8125     return NULL;
8126
8127   return icon_info->storage_type == GTK_IMAGE_STOCK ? icon_info->stock_id : NULL;
8128 }
8129
8130 /**
8131  * gtk_entry_get_icon_name:
8132  * @entry: A #GtkEntry
8133  * @icon_pos: Icon position
8134  *
8135  * Retrieves the icon name used for the icon, or %NULL if there is
8136  * no icon or if the icon was set by some other method (e.g., by
8137  * pixbuf, stock or gicon).
8138  *
8139  * Returns: An icon name, or %NULL if no icon is set or if the icon
8140  *          wasn't set from an icon name
8141  *
8142  * Since: 2.16
8143  */
8144 const gchar *
8145 gtk_entry_get_icon_name (GtkEntry             *entry,
8146                          GtkEntryIconPosition  icon_pos)
8147 {
8148   GtkEntryPrivate *priv;
8149   EntryIconInfo *icon_info;
8150
8151   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8152   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8153
8154   priv = entry->priv;
8155   icon_info = priv->icons[icon_pos];
8156
8157   if (!icon_info)
8158     return NULL;
8159
8160   return icon_info->storage_type == GTK_IMAGE_ICON_NAME ? icon_info->icon_name : NULL;
8161 }
8162
8163 /**
8164  * gtk_entry_set_icon_sensitive:
8165  * @entry: A #GtkEntry
8166  * @icon_pos: Icon position
8167  * @sensitive: Specifies whether the icon should appear
8168  *             sensitive or insensitive
8169  *
8170  * Sets the sensitivity for the specified icon.
8171  *
8172  * Since: 2.16
8173  */
8174 void
8175 gtk_entry_set_icon_sensitive (GtkEntry             *entry,
8176                               GtkEntryIconPosition  icon_pos,
8177                               gboolean              sensitive)
8178 {
8179   GtkEntryPrivate *priv;
8180   EntryIconInfo *icon_info;
8181
8182   g_return_if_fail (GTK_IS_ENTRY (entry));
8183   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8184
8185   priv = entry->priv;
8186
8187   if ((icon_info = priv->icons[icon_pos]) == NULL)
8188     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8189
8190   if (icon_info->insensitive != !sensitive)
8191     {
8192       icon_info->insensitive = !sensitive;
8193
8194       icon_info->pressed = FALSE;
8195       icon_info->prelight = FALSE;
8196
8197       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8198         update_cursors (GTK_WIDGET (entry));
8199
8200       gtk_widget_queue_draw (GTK_WIDGET (entry));
8201
8202       g_object_notify (G_OBJECT (entry),
8203                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-sensitive" : "secondary-icon-sensitive");
8204     }
8205 }
8206
8207 /**
8208  * gtk_entry_get_icon_sensitive:
8209  * @entry: a #GtkEntry
8210  * @icon_pos: Icon position
8211  *
8212  * Returns whether the icon appears sensitive or insensitive.
8213  *
8214  * Returns: %TRUE if the icon is sensitive.
8215  *
8216  * Since: 2.16
8217  */
8218 gboolean
8219 gtk_entry_get_icon_sensitive (GtkEntry             *entry,
8220                               GtkEntryIconPosition  icon_pos)
8221 {
8222   GtkEntryPrivate *priv;
8223   EntryIconInfo *icon_info;
8224
8225   g_return_val_if_fail (GTK_IS_ENTRY (entry), TRUE);
8226   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), TRUE);
8227
8228   priv = entry->priv;
8229
8230   icon_info = priv->icons[icon_pos];
8231
8232   return (!icon_info || !icon_info->insensitive);
8233
8234 }
8235
8236 /**
8237  * gtk_entry_get_icon_storage_type:
8238  * @entry: a #GtkEntry
8239  * @icon_pos: Icon position
8240  *
8241  * Gets the type of representation being used by the icon
8242  * to store image data. If the icon has no image data,
8243  * the return value will be %GTK_IMAGE_EMPTY.
8244  *
8245  * Return value: image representation being used
8246  *
8247  * Since: 2.16
8248  **/
8249 GtkImageType
8250 gtk_entry_get_icon_storage_type (GtkEntry             *entry,
8251                                  GtkEntryIconPosition  icon_pos)
8252 {
8253   GtkEntryPrivate *priv;
8254   EntryIconInfo *icon_info;
8255
8256   g_return_val_if_fail (GTK_IS_ENTRY (entry), GTK_IMAGE_EMPTY);
8257   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), GTK_IMAGE_EMPTY);
8258
8259   priv = entry->priv;
8260
8261   icon_info = priv->icons[icon_pos];
8262
8263   if (!icon_info)
8264     return GTK_IMAGE_EMPTY;
8265
8266   return icon_info->storage_type;
8267 }
8268
8269 /**
8270  * gtk_entry_get_icon_at_pos:
8271  * @entry: a #GtkEntry
8272  * @x: the x coordinate of the position to find
8273  * @y: the y coordinate of the position to find
8274  *
8275  * Finds the icon at the given position and return its index.
8276  * If @x, @y doesn't lie inside an icon, -1 is returned.
8277  * This function is intended for use in a #GtkWidget::query-tooltip
8278  * signal handler.
8279  *
8280  * Returns: the index of the icon at the given position, or -1
8281  *
8282  * Since: 2.16
8283  */
8284 gint
8285 gtk_entry_get_icon_at_pos (GtkEntry *entry,
8286                            gint      x,
8287                            gint      y)
8288 {
8289   GtkAllocation primary;
8290   GtkAllocation secondary;
8291   gint frame_x, frame_y;
8292
8293   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8294
8295   get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
8296   x -= frame_x;
8297   y -= frame_y;
8298
8299   get_icon_allocations (entry, &primary, &secondary);
8300
8301   if (primary.x <= x && x < primary.x + primary.width &&
8302       primary.y <= y && y < primary.y + primary.height)
8303     return GTK_ENTRY_ICON_PRIMARY;
8304
8305   if (secondary.x <= x && x < secondary.x + secondary.width &&
8306       secondary.y <= y && y < secondary.y + secondary.height)
8307     return GTK_ENTRY_ICON_SECONDARY;
8308
8309   return -1;
8310 }
8311
8312 /**
8313  * gtk_entry_set_icon_drag_source:
8314  * @entry: a #GtkIconEntry
8315  * @icon_pos: icon position
8316  * @target_list: the targets (data formats) in which the data can be provided
8317  * @actions: a bitmask of the allowed drag actions
8318  *
8319  * Sets up the icon at the given position so that GTK+ will start a drag
8320  * operation when the user clicks and drags the icon.
8321  *
8322  * To handle the drag operation, you need to connect to the usual
8323  * #GtkWidget::drag-data-get (or possibly #GtkWidget::drag-data-delete)
8324  * signal, and use gtk_entry_get_current_icon_drag_source() in
8325  * your signal handler to find out if the drag was started from
8326  * an icon.
8327  *
8328  * By default, GTK+ uses the icon as the drag icon. You can use the 
8329  * #GtkWidget::drag-begin signal to set a different icon. Note that you 
8330  * have to use g_signal_connect_after() to ensure that your signal handler
8331  * gets executed after the default handler.
8332  *
8333  * Since: 2.16
8334  */
8335 void
8336 gtk_entry_set_icon_drag_source (GtkEntry             *entry,
8337                                 GtkEntryIconPosition  icon_pos,
8338                                 GtkTargetList        *target_list,
8339                                 GdkDragAction         actions)
8340 {
8341   GtkEntryPrivate *priv;
8342   EntryIconInfo *icon_info;
8343
8344   g_return_if_fail (GTK_IS_ENTRY (entry));
8345   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8346
8347   priv = entry->priv;
8348
8349   if ((icon_info = priv->icons[icon_pos]) == NULL)
8350     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8351
8352   if (icon_info->target_list)
8353     gtk_target_list_unref (icon_info->target_list);
8354   icon_info->target_list = target_list;
8355   if (icon_info->target_list)
8356     gtk_target_list_ref (icon_info->target_list);
8357
8358   icon_info->actions = actions;
8359 }
8360
8361 /**
8362  * gtk_entry_get_current_icon_drag_source:
8363  * @entry: a #GtkIconEntry
8364  *
8365  * Returns the index of the icon which is the source of the current
8366  * DND operation, or -1.
8367  *
8368  * This function is meant to be used in a #GtkWidget::drag-data-get
8369  * callback.
8370  *
8371  * Returns: index of the icon which is the source of the current
8372  *          DND operation, or -1.
8373  *
8374  * Since: 2.16
8375  */
8376 gint
8377 gtk_entry_get_current_icon_drag_source (GtkEntry *entry)
8378 {
8379   GtkEntryPrivate *priv;
8380   EntryIconInfo *icon_info = NULL;
8381   gint i;
8382
8383   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8384
8385   priv = entry->priv;
8386
8387   for (i = 0; i < MAX_ICONS; i++)
8388     {
8389       if ((icon_info = priv->icons[i]))
8390         {
8391           if (icon_info->in_drag)
8392             return i;
8393         }
8394     }
8395
8396   return -1;
8397 }
8398
8399 /**
8400  * gtk_entry_get_icon_area:
8401  * @entry: A #GtkEntry
8402  * @icon_pos: Icon position
8403  * @icon_area: (out): Return location for the icon's area
8404  *
8405  * Gets the area where entry's icon at @icon_pos is drawn.
8406  * This function is useful when drawing something to the
8407  * entry in a draw callback.
8408  *
8409  * If the entry is not realized or has no icon at the given position,
8410  * @icon_area is filled with zeros.
8411  *
8412  * See also gtk_entry_get_text_area()
8413  *
8414  * Since: 3.0
8415  */
8416 void
8417 gtk_entry_get_icon_area (GtkEntry             *entry,
8418                          GtkEntryIconPosition  icon_pos,
8419                          GdkRectangle         *icon_area)
8420 {
8421   GtkEntryPrivate *priv;
8422   EntryIconInfo *icon_info;
8423
8424   g_return_if_fail (GTK_IS_ENTRY (entry));
8425   g_return_if_fail (icon_area != NULL);
8426
8427   priv = entry->priv;
8428
8429   icon_info = priv->icons[icon_pos];
8430
8431   if (icon_info)
8432     {
8433       GtkAllocation primary;
8434       GtkAllocation secondary;
8435
8436       get_icon_allocations (entry, &primary, &secondary);
8437
8438       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8439         *icon_area = primary;
8440       else
8441         *icon_area = secondary;
8442     }
8443   else
8444     {
8445       icon_area->x = 0;
8446       icon_area->y = 0;
8447       icon_area->width = 0;
8448       icon_area->height = 0;
8449     }
8450 }
8451
8452 static void
8453 ensure_has_tooltip (GtkEntry *entry)
8454 {
8455   GtkEntryPrivate *priv;
8456   EntryIconInfo *icon_info;
8457   int i;
8458   gboolean has_tooltip = FALSE;
8459
8460   priv = entry->priv;
8461
8462   for (i = 0; i < MAX_ICONS; i++)
8463     {
8464       if ((icon_info = priv->icons[i]) != NULL)
8465         {
8466           if (icon_info->tooltip != NULL)
8467             {
8468               has_tooltip = TRUE;
8469               break;
8470             }
8471         }
8472     }
8473
8474   gtk_widget_set_has_tooltip (GTK_WIDGET (entry), has_tooltip);
8475 }
8476
8477 /**
8478  * gtk_entry_get_icon_tooltip_text:
8479  * @entry: a #GtkEntry
8480  * @icon_pos: the icon position
8481  *
8482  * Gets the contents of the tooltip on the icon at the specified 
8483  * position in @entry.
8484  * 
8485  * Returns: the tooltip text, or %NULL. Free the returned string
8486  *     with g_free() when done.
8487  * 
8488  * Since: 2.16
8489  */
8490 gchar *
8491 gtk_entry_get_icon_tooltip_text (GtkEntry             *entry,
8492                                  GtkEntryIconPosition  icon_pos)
8493 {
8494   GtkEntryPrivate *priv;
8495   EntryIconInfo *icon_info;
8496   gchar *text = NULL;
8497
8498   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8499   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8500
8501   priv = entry->priv;
8502
8503   icon_info = priv->icons[icon_pos];
8504
8505   if (!icon_info)
8506     return NULL;
8507  
8508   if (icon_info->tooltip && 
8509       !pango_parse_markup (icon_info->tooltip, -1, 0, NULL, &text, NULL, NULL))
8510     g_assert (NULL == text); /* text should still be NULL in case of markup errors */
8511
8512   return text;
8513 }
8514
8515 /**
8516  * gtk_entry_set_icon_tooltip_text:
8517  * @entry: a #GtkEntry
8518  * @icon_pos: the icon position
8519  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8520  *
8521  * Sets @tooltip as the contents of the tooltip for the icon
8522  * at the specified position.
8523  *
8524  * Use %NULL for @tooltip to remove an existing tooltip.
8525  *
8526  * See also gtk_widget_set_tooltip_text() and 
8527  * gtk_entry_set_icon_tooltip_markup().
8528  *
8529  * Since: 2.16
8530  */
8531 void
8532 gtk_entry_set_icon_tooltip_text (GtkEntry             *entry,
8533                                  GtkEntryIconPosition  icon_pos,
8534                                  const gchar          *tooltip)
8535 {
8536   GtkEntryPrivate *priv;
8537   EntryIconInfo *icon_info;
8538
8539   g_return_if_fail (GTK_IS_ENTRY (entry));
8540   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8541
8542   priv = entry->priv;
8543
8544   if ((icon_info = priv->icons[icon_pos]) == NULL)
8545     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8546
8547   if (icon_info->tooltip)
8548     g_free (icon_info->tooltip);
8549
8550   /* Treat an empty string as a NULL string,
8551    * because an empty string would be useless for a tooltip:
8552    */
8553   if (tooltip && tooltip[0] == '\0')
8554     tooltip = NULL;
8555
8556   icon_info->tooltip = tooltip ? g_markup_escape_text (tooltip, -1) : NULL;
8557
8558   ensure_has_tooltip (entry);
8559 }
8560
8561 /**
8562  * gtk_entry_get_icon_tooltip_markup:
8563  * @entry: a #GtkEntry
8564  * @icon_pos: the icon position
8565  *
8566  * Gets the contents of the tooltip on the icon at the specified 
8567  * position in @entry.
8568  * 
8569  * Returns: the tooltip text, or %NULL. Free the returned string
8570  *     with g_free() when done.
8571  * 
8572  * Since: 2.16
8573  */
8574 gchar *
8575 gtk_entry_get_icon_tooltip_markup (GtkEntry             *entry,
8576                                    GtkEntryIconPosition  icon_pos)
8577 {
8578   GtkEntryPrivate *priv;
8579   EntryIconInfo *icon_info;
8580
8581   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8582   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8583
8584   priv = entry->priv;
8585
8586   icon_info = priv->icons[icon_pos];
8587
8588   if (!icon_info)
8589     return NULL;
8590  
8591   return g_strdup (icon_info->tooltip);
8592 }
8593
8594 /**
8595  * gtk_entry_set_icon_tooltip_markup:
8596  * @entry: a #GtkEntry
8597  * @icon_pos: the icon position
8598  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8599  *
8600  * Sets @tooltip as the contents of the tooltip for the icon at
8601  * the specified position. @tooltip is assumed to be marked up with
8602  * the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
8603  *
8604  * Use %NULL for @tooltip to remove an existing tooltip.
8605  *
8606  * See also gtk_widget_set_tooltip_markup() and 
8607  * gtk_enty_set_icon_tooltip_text().
8608  *
8609  * Since: 2.16
8610  */
8611 void
8612 gtk_entry_set_icon_tooltip_markup (GtkEntry             *entry,
8613                                    GtkEntryIconPosition  icon_pos,
8614                                    const gchar          *tooltip)
8615 {
8616   GtkEntryPrivate *priv;
8617   EntryIconInfo *icon_info;
8618
8619   g_return_if_fail (GTK_IS_ENTRY (entry));
8620   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8621
8622   priv = entry->priv;
8623
8624   if ((icon_info = priv->icons[icon_pos]) == NULL)
8625     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8626
8627   if (icon_info->tooltip)
8628     g_free (icon_info->tooltip);
8629
8630   /* Treat an empty string as a NULL string,
8631    * because an empty string would be useless for a tooltip:
8632    */
8633   if (tooltip && tooltip[0] == '\0')
8634     tooltip = NULL;
8635
8636   icon_info->tooltip = g_strdup (tooltip);
8637
8638   ensure_has_tooltip (entry);
8639 }
8640
8641 static gboolean
8642 gtk_entry_query_tooltip (GtkWidget  *widget,
8643                          gint        x,
8644                          gint        y,
8645                          gboolean    keyboard_tip,
8646                          GtkTooltip *tooltip)
8647 {
8648   GtkEntry *entry;
8649   GtkEntryPrivate *priv;
8650   EntryIconInfo *icon_info;
8651   gint icon_pos;
8652
8653   entry = GTK_ENTRY (widget);
8654   priv = entry->priv;
8655
8656   if (!keyboard_tip)
8657     {
8658       icon_pos = gtk_entry_get_icon_at_pos (entry, x, y);
8659       if (icon_pos != -1)
8660         {
8661           if ((icon_info = priv->icons[icon_pos]) != NULL)
8662             {
8663               if (icon_info->tooltip)
8664                 {
8665                   gtk_tooltip_set_markup (tooltip, icon_info->tooltip);
8666                   return TRUE;
8667                 }
8668
8669               return FALSE;
8670             }
8671         }
8672     }
8673
8674   return GTK_WIDGET_CLASS (gtk_entry_parent_class)->query_tooltip (widget,
8675                                                                    x, y,
8676                                                                    keyboard_tip,
8677                                                                    tooltip);
8678 }
8679
8680
8681 /* Quick hack of a popup menu
8682  */
8683 static void
8684 activate_cb (GtkWidget *menuitem,
8685              GtkEntry  *entry)
8686 {
8687   const gchar *signal = g_object_get_data (G_OBJECT (menuitem), "gtk-signal");
8688   g_signal_emit_by_name (entry, signal);
8689 }
8690
8691
8692 static gboolean
8693 gtk_entry_mnemonic_activate (GtkWidget *widget,
8694                              gboolean   group_cycling)
8695 {
8696   gtk_widget_grab_focus (widget);
8697   return TRUE;
8698 }
8699
8700 static void
8701 append_action_signal (GtkEntry     *entry,
8702                       GtkWidget    *menu,
8703                       const gchar  *stock_id,
8704                       const gchar  *signal,
8705                       gboolean      sensitive)
8706 {
8707   GtkWidget *menuitem = gtk_image_menu_item_new_from_stock (stock_id, NULL);
8708
8709   g_object_set_data (G_OBJECT (menuitem), I_("gtk-signal"), (char *)signal);
8710   g_signal_connect (menuitem, "activate",
8711                     G_CALLBACK (activate_cb), entry);
8712
8713   gtk_widget_set_sensitive (menuitem, sensitive);
8714   
8715   gtk_widget_show (menuitem);
8716   gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
8717 }
8718         
8719 static void
8720 popup_menu_detach (GtkWidget *attach_widget,
8721                    GtkMenu   *menu)
8722 {
8723   GtkEntry *entry_attach = GTK_ENTRY (attach_widget);
8724   GtkEntryPrivate *priv_attach = entry_attach->priv;
8725
8726   priv_attach->popup_menu = NULL;
8727 }
8728
8729 static void
8730 popup_position_func (GtkMenu   *menu,
8731                      gint      *x,
8732                      gint      *y,
8733                      gboolean  *push_in,
8734                      gpointer   user_data)
8735 {
8736   GtkEntry *entry = GTK_ENTRY (user_data);
8737   GtkEntryPrivate *priv = entry->priv;
8738   GtkWidget *widget = GTK_WIDGET (entry);
8739   GdkScreen *screen;
8740   GtkRequisition menu_req;
8741   GdkRectangle monitor;
8742   GtkBorder inner_border;
8743   gint monitor_num, strong_x, height;
8744  
8745   g_return_if_fail (gtk_widget_get_realized (widget));
8746
8747   gdk_window_get_origin (priv->text_area, x, y);
8748
8749   screen = gtk_widget_get_screen (widget);
8750   monitor_num = gdk_screen_get_monitor_at_window (screen, priv->text_area);
8751   if (monitor_num < 0)
8752     monitor_num = 0;
8753   gtk_menu_set_monitor (menu, monitor_num);
8754
8755   gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
8756   gtk_widget_get_preferred_size (priv->popup_menu,
8757                                  &menu_req, NULL);
8758   height = gdk_window_get_height (priv->text_area);
8759   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
8760   _gtk_entry_effective_inner_border (entry, &inner_border);
8761
8762   *x += inner_border.left + strong_x - priv->scroll_offset;
8763   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
8764     *x -= menu_req.width;
8765
8766   if ((*y + height + menu_req.height) <= monitor.y + monitor.height)
8767     *y += height;
8768   else if ((*y - menu_req.height) >= monitor.y)
8769     *y -= menu_req.height;
8770   else if (monitor.y + monitor.height - (*y + height) > *y)
8771     *y += height;
8772   else
8773     *y -= menu_req.height;
8774
8775   *push_in = FALSE;
8776 }
8777
8778 static void
8779 unichar_chosen_func (const char *text,
8780                      gpointer    data)
8781 {
8782   GtkEntry *entry = GTK_ENTRY (data);
8783   GtkEntryPrivate *priv = entry->priv;
8784
8785   if (priv->editable)
8786     gtk_entry_enter_text (entry, text);
8787 }
8788
8789 typedef struct
8790 {
8791   GtkEntry *entry;
8792   gint button;
8793   guint time;
8794 } PopupInfo;
8795
8796 static void
8797 popup_targets_received (GtkClipboard     *clipboard,
8798                         GtkSelectionData *data,
8799                         gpointer          user_data)
8800 {
8801   PopupInfo *info = user_data;
8802   GtkEntry *entry = info->entry;
8803   GtkEntryPrivate *info_entry_priv = entry->priv;
8804
8805   if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8806     {
8807       DisplayMode mode;
8808       gboolean clipboard_contains_text;
8809       GtkWidget *menuitem;
8810       GtkWidget *submenu;
8811       gboolean show_input_method_menu;
8812       gboolean show_unicode_menu;
8813       
8814       clipboard_contains_text = gtk_selection_data_targets_include_text (data);
8815       if (info_entry_priv->popup_menu)
8816         gtk_widget_destroy (info_entry_priv->popup_menu);
8817
8818       info_entry_priv->popup_menu = gtk_menu_new ();
8819
8820       gtk_menu_attach_to_widget (GTK_MENU (info_entry_priv->popup_menu),
8821                                  GTK_WIDGET (entry),
8822                                  popup_menu_detach);
8823       
8824       mode = gtk_entry_get_display_mode (entry);
8825       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_CUT, "cut-clipboard",
8826                             info_entry_priv->editable && mode == DISPLAY_NORMAL &&
8827                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
8828
8829       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_COPY, "copy-clipboard",
8830                             mode == DISPLAY_NORMAL &&
8831                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
8832
8833       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_PASTE, "paste-clipboard",
8834                             info_entry_priv->editable && clipboard_contains_text);
8835
8836       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
8837       gtk_widget_set_sensitive (menuitem, info_entry_priv->editable && info_entry_priv->current_pos != info_entry_priv->selection_bound);
8838       g_signal_connect_swapped (menuitem, "activate",
8839                                 G_CALLBACK (gtk_entry_delete_cb), entry);
8840       gtk_widget_show (menuitem);
8841       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8842
8843       menuitem = gtk_separator_menu_item_new ();
8844       gtk_widget_show (menuitem);
8845       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8846       
8847       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
8848       g_signal_connect_swapped (menuitem, "activate",
8849                                 G_CALLBACK (gtk_entry_select_all), entry);
8850       gtk_widget_show (menuitem);
8851       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8852       
8853       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
8854                     "gtk-show-input-method-menu", &show_input_method_menu,
8855                     "gtk-show-unicode-menu", &show_unicode_menu,
8856                     NULL);
8857
8858       if (show_input_method_menu || show_unicode_menu)
8859         {
8860           menuitem = gtk_separator_menu_item_new ();
8861           gtk_widget_show (menuitem);
8862           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8863         }
8864       
8865       if (show_input_method_menu)
8866         {
8867           menuitem = gtk_menu_item_new_with_mnemonic (_("Input _Methods"));
8868           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
8869           gtk_widget_show (menuitem);
8870           submenu = gtk_menu_new ();
8871           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
8872
8873           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8874
8875           gtk_im_multicontext_append_menuitems (GTK_IM_MULTICONTEXT (info_entry_priv->im_context),
8876                                                 GTK_MENU_SHELL (submenu));
8877         }
8878       
8879       if (show_unicode_menu)
8880         {
8881           menuitem = gtk_menu_item_new_with_mnemonic (_("_Insert Unicode Control Character"));
8882           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
8883           gtk_widget_show (menuitem);
8884           
8885           submenu = gtk_menu_new ();
8886           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
8887           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8888
8889           _gtk_text_util_append_special_char_menuitems (GTK_MENU_SHELL (submenu),
8890                                                         unichar_chosen_func,
8891                                                         entry);
8892         }
8893       
8894       g_signal_emit (entry,
8895                      signals[POPULATE_POPUP],
8896                      0,
8897                      info_entry_priv->popup_menu);
8898
8899
8900       if (info->button)
8901         gtk_menu_popup (GTK_MENU (info_entry_priv->popup_menu), NULL, NULL,
8902                         NULL, NULL,
8903                         info->button, info->time);
8904       else
8905         {
8906           gtk_menu_popup (GTK_MENU (info_entry_priv->popup_menu), NULL, NULL,
8907                           popup_position_func, entry,
8908                           info->button, info->time);
8909           gtk_menu_shell_select_first (GTK_MENU_SHELL (info_entry_priv->popup_menu), FALSE);
8910         }
8911     }
8912
8913   g_object_unref (entry);
8914   g_slice_free (PopupInfo, info);
8915 }
8916                         
8917 static void
8918 gtk_entry_do_popup (GtkEntry       *entry,
8919                     GdkEventButton *event)
8920 {
8921   PopupInfo *info = g_slice_new (PopupInfo);
8922
8923   /* In order to know what entries we should make sensitive, we
8924    * ask for the current targets of the clipboard, and when
8925    * we get them, then we actually pop up the menu.
8926    */
8927   info->entry = g_object_ref (entry);
8928   
8929   if (event)
8930     {
8931       info->button = event->button;
8932       info->time = event->time;
8933     }
8934   else
8935     {
8936       info->button = 0;
8937       info->time = gtk_get_current_event_time ();
8938     }
8939
8940   gtk_clipboard_request_contents (gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_CLIPBOARD),
8941                                   gdk_atom_intern_static_string ("TARGETS"),
8942                                   popup_targets_received,
8943                                   info);
8944 }
8945
8946 static gboolean
8947 gtk_entry_popup_menu (GtkWidget *widget)
8948 {
8949   gtk_entry_do_popup (GTK_ENTRY (widget), NULL);
8950   return TRUE;
8951 }
8952
8953 static void
8954 gtk_entry_drag_begin (GtkWidget      *widget,
8955                       GdkDragContext *context)
8956 {
8957   GtkEntry *entry = GTK_ENTRY (widget);
8958   GtkEntryPrivate *priv = entry->priv;
8959   gint i;
8960
8961   for (i = 0; i < MAX_ICONS; i++)
8962     {
8963       EntryIconInfo *icon_info = priv->icons[i];
8964       
8965       if (icon_info != NULL)
8966         {
8967           if (icon_info->in_drag) 
8968             {
8969               switch (icon_info->storage_type)
8970                 {
8971                 case GTK_IMAGE_STOCK:
8972                   gtk_drag_set_icon_stock (context, icon_info->stock_id, -2, -2);
8973                   break;
8974
8975                 case GTK_IMAGE_ICON_NAME:
8976                   gtk_drag_set_icon_name (context, icon_info->icon_name, -2, -2);
8977                   break;
8978
8979                   /* FIXME: No GIcon support for dnd icons */
8980                 case GTK_IMAGE_GICON:
8981                 case GTK_IMAGE_PIXBUF:
8982                   gtk_drag_set_icon_pixbuf (context, icon_info->pixbuf, -2, -2);
8983                   break;
8984                 default:
8985                   g_assert_not_reached ();
8986                 }
8987             }
8988         }
8989     }
8990 }
8991
8992 static void
8993 gtk_entry_drag_end (GtkWidget      *widget,
8994                     GdkDragContext *context)
8995 {
8996   GtkEntry *entry = GTK_ENTRY (widget);
8997   GtkEntryPrivate *priv = entry->priv;
8998   gint i;
8999
9000   for (i = 0; i < MAX_ICONS; i++)
9001     {
9002       EntryIconInfo *icon_info = priv->icons[i];
9003
9004       if (icon_info != NULL)
9005         icon_info->in_drag = 0;
9006     }
9007 }
9008
9009 static void
9010 gtk_entry_drag_leave (GtkWidget        *widget,
9011                       GdkDragContext   *context,
9012                       guint             time)
9013 {
9014   GtkEntry *entry = GTK_ENTRY (widget);
9015   GtkEntryPrivate *priv = entry->priv;
9016
9017   priv->dnd_position = -1;
9018   gtk_widget_queue_draw (widget);
9019 }
9020
9021 static gboolean
9022 gtk_entry_drag_drop  (GtkWidget        *widget,
9023                       GdkDragContext   *context,
9024                       gint              x,
9025                       gint              y,
9026                       guint             time)
9027 {
9028   GtkEntry *entry = GTK_ENTRY (widget);
9029   GtkEntryPrivate *priv = entry->priv;
9030   GdkAtom target = GDK_NONE;
9031
9032   if (priv->editable)
9033     target = gtk_drag_dest_find_target (widget, context, NULL);
9034
9035   if (target != GDK_NONE)
9036     gtk_drag_get_data (widget, context, target, time);
9037   else
9038     gtk_drag_finish (context, FALSE, FALSE, time);
9039   
9040   return TRUE;
9041 }
9042
9043 static gboolean
9044 gtk_entry_drag_motion (GtkWidget        *widget,
9045                        GdkDragContext   *context,
9046                        gint              x,
9047                        gint              y,
9048                        guint             time)
9049 {
9050   GtkEntry *entry = GTK_ENTRY (widget);
9051   GtkEntryPrivate *priv = entry->priv;
9052   GtkStyleContext *style_context;
9053   GtkWidget *source_widget;
9054   GdkDragAction suggested_action;
9055   gint new_position, old_position;
9056   gint sel1, sel2;
9057   GtkBorder padding;
9058
9059   style_context = gtk_widget_get_style_context (widget);
9060   gtk_style_context_get_padding (style_context, 0, &padding);
9061   x -= padding.left;
9062   y -= padding.top;
9063
9064   old_position = priv->dnd_position;
9065   new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9066
9067   if (priv->editable &&
9068       gtk_drag_dest_find_target (widget, context, NULL) != GDK_NONE)
9069     {
9070       source_widget = gtk_drag_get_source_widget (context);
9071       suggested_action = gdk_drag_context_get_suggested_action (context);
9072
9073       if (!gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &sel1, &sel2) ||
9074           new_position < sel1 || new_position > sel2)
9075         {
9076           if (source_widget == widget)
9077             {
9078               /* Default to MOVE, unless the user has
9079                * pressed ctrl or alt to affect available actions
9080                */
9081               if ((gdk_drag_context_get_actions (context) & GDK_ACTION_MOVE) != 0)
9082                 suggested_action = GDK_ACTION_MOVE;
9083             }
9084
9085           priv->dnd_position = new_position;
9086         }
9087       else
9088         {
9089           if (source_widget == widget)
9090             suggested_action = 0;       /* Can't drop in selection where drag started */
9091
9092           priv->dnd_position = -1;
9093         }
9094     }
9095   else
9096     {
9097       /* Entry not editable, or no text */
9098       suggested_action = 0;
9099       priv->dnd_position = -1;
9100     }
9101   
9102   gdk_drag_status (context, suggested_action, time);
9103
9104   if (priv->dnd_position != old_position)
9105     gtk_widget_queue_draw (widget);
9106
9107   return TRUE;
9108 }
9109
9110 static void
9111 gtk_entry_drag_data_received (GtkWidget        *widget,
9112                               GdkDragContext   *context,
9113                               gint              x,
9114                               gint              y,
9115                               GtkSelectionData *selection_data,
9116                               guint             info,
9117                               guint             time)
9118 {
9119   GtkEntry *entry = GTK_ENTRY (widget);
9120   GtkEntryPrivate *priv = entry->priv;
9121   GtkEditable *editable = GTK_EDITABLE (widget);
9122   GtkStyleContext *style_context;
9123   GtkBorder padding;
9124   gchar *str;
9125
9126   str = (gchar *) gtk_selection_data_get_text (selection_data);
9127
9128   style_context = gtk_widget_get_style_context (widget);
9129   gtk_style_context_get_padding (style_context, 0, &padding);
9130   x -= padding.left;
9131   y -= padding.top;
9132
9133   if (str && priv->editable)
9134     {
9135       gint new_position;
9136       gint sel1, sel2;
9137       gint length = -1;
9138
9139       if (priv->truncate_multiline)
9140         length = truncate_multiline (str);
9141
9142       new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9143
9144       if (!gtk_editable_get_selection_bounds (editable, &sel1, &sel2) ||
9145           new_position < sel1 || new_position > sel2)
9146         {
9147           gtk_editable_insert_text (editable, str, length, &new_position);
9148         }
9149       else
9150         {
9151           /* Replacing selection */
9152           begin_change (entry);
9153           g_object_freeze_notify (G_OBJECT (entry));
9154           gtk_editable_delete_text (editable, sel1, sel2);
9155           gtk_editable_insert_text (editable, str, length, &sel1);
9156           g_object_thaw_notify (G_OBJECT (entry));
9157           end_change (entry);
9158         }
9159       
9160       gtk_drag_finish (context, TRUE, gdk_drag_context_get_selected_action (context) == GDK_ACTION_MOVE, time);
9161     }
9162   else
9163     {
9164       /* Drag and drop didn't happen! */
9165       gtk_drag_finish (context, FALSE, FALSE, time);
9166     }
9167
9168   g_free (str);
9169 }
9170
9171 static void
9172 gtk_entry_drag_data_get (GtkWidget        *widget,
9173                          GdkDragContext   *context,
9174                          GtkSelectionData *selection_data,
9175                          guint             info,
9176                          guint             time)
9177 {
9178   GtkEntry *entry = GTK_ENTRY (widget);
9179   GtkEntryPrivate *priv = entry->priv;
9180   GtkEditable *editable = GTK_EDITABLE (widget);
9181   gint sel_start, sel_end;
9182   gint i;
9183
9184   /* If there is an icon drag going on, exit early. */
9185   for (i = 0; i < MAX_ICONS; i++)
9186     {
9187       EntryIconInfo *icon_info = priv->icons[i];
9188
9189       if (icon_info != NULL)
9190         {
9191           if (icon_info->in_drag)
9192             return;
9193         }
9194     }
9195
9196   if (gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9197     {
9198       gchar *str = gtk_entry_get_display_text (GTK_ENTRY (widget), sel_start, sel_end);
9199
9200       gtk_selection_data_set_text (selection_data, str, -1);
9201       
9202       g_free (str);
9203     }
9204
9205 }
9206
9207 static void
9208 gtk_entry_drag_data_delete (GtkWidget      *widget,
9209                             GdkDragContext *context)
9210 {
9211   GtkEntry *entry = GTK_ENTRY (widget);
9212   GtkEntryPrivate *priv = entry->priv;
9213   GtkEditable *editable = GTK_EDITABLE (widget);
9214   gint sel_start, sel_end;
9215   gint i;
9216
9217   /* If there is an icon drag going on, exit early. */
9218   for (i = 0; i < MAX_ICONS; i++)
9219     {
9220       EntryIconInfo *icon_info = priv->icons[i];
9221
9222       if (icon_info != NULL)
9223         {
9224           if (icon_info->in_drag)
9225             return;
9226         }
9227     }
9228
9229   if (priv->editable &&
9230       gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9231     gtk_editable_delete_text (editable, sel_start, sel_end);
9232 }
9233
9234 /* We display the cursor when
9235  *
9236  *  - the selection is empty, AND
9237  *  - the widget has focus
9238  */
9239
9240 #define CURSOR_ON_MULTIPLIER 2
9241 #define CURSOR_OFF_MULTIPLIER 1
9242 #define CURSOR_PEND_MULTIPLIER 3
9243 #define CURSOR_DIVIDER 3
9244
9245 static gboolean
9246 cursor_blinks (GtkEntry *entry)
9247 {
9248   GtkEntryPrivate *priv = entry->priv;
9249
9250   if (gtk_widget_has_focus (GTK_WIDGET (entry)) &&
9251       priv->editable &&
9252       priv->selection_bound == priv->current_pos)
9253     {
9254       GtkSettings *settings;
9255       gboolean blink;
9256
9257       settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9258       g_object_get (settings, "gtk-cursor-blink", &blink, NULL);
9259
9260       return blink;
9261     }
9262   else
9263     return FALSE;
9264 }
9265
9266 static gint
9267 get_cursor_time (GtkEntry *entry)
9268 {
9269   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9270   gint time;
9271
9272   g_object_get (settings, "gtk-cursor-blink-time", &time, NULL);
9273
9274   return time;
9275 }
9276
9277 static gint
9278 get_cursor_blink_timeout (GtkEntry *entry)
9279 {
9280   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9281   gint timeout;
9282
9283   g_object_get (settings, "gtk-cursor-blink-timeout", &timeout, NULL);
9284
9285   return timeout;
9286 }
9287
9288 static void
9289 show_cursor (GtkEntry *entry)
9290 {
9291   GtkEntryPrivate *priv = entry->priv;
9292   GtkWidget *widget;
9293
9294   if (!priv->cursor_visible)
9295     {
9296       priv->cursor_visible = TRUE;
9297
9298       widget = GTK_WIDGET (entry);
9299       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9300         gtk_widget_queue_draw (widget);
9301     }
9302 }
9303
9304 static void
9305 hide_cursor (GtkEntry *entry)
9306 {
9307   GtkEntryPrivate *priv = entry->priv;
9308   GtkWidget *widget;
9309
9310   if (priv->cursor_visible)
9311     {
9312       priv->cursor_visible = FALSE;
9313
9314       widget = GTK_WIDGET (entry);
9315       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9316         gtk_widget_queue_draw (widget);
9317     }
9318 }
9319
9320 /*
9321  * Blink!
9322  */
9323 static gint
9324 blink_cb (gpointer data)
9325 {
9326   GtkEntry *entry;
9327   GtkEntryPrivate *priv; 
9328   gint blink_timeout;
9329
9330   entry = GTK_ENTRY (data);
9331   priv = entry->priv;
9332  
9333   if (!gtk_widget_has_focus (GTK_WIDGET (entry)))
9334     {
9335       g_warning ("GtkEntry - did not receive focus-out-event. If you\n"
9336                  "connect a handler to this signal, it must return\n"
9337                  "FALSE so the entry gets the event as well");
9338
9339       gtk_entry_check_cursor_blink (entry);
9340
9341       return FALSE;
9342     }
9343   
9344   g_assert (priv->selection_bound == priv->current_pos);
9345   
9346   blink_timeout = get_cursor_blink_timeout (entry);
9347   if (priv->blink_time > 1000 * blink_timeout && 
9348       blink_timeout < G_MAXINT/1000) 
9349     {
9350       /* we've blinked enough without the user doing anything, stop blinking */
9351       show_cursor (entry);
9352       priv->blink_timeout = 0;
9353     } 
9354   else if (priv->cursor_visible)
9355     {
9356       hide_cursor (entry);
9357       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_OFF_MULTIPLIER / CURSOR_DIVIDER,
9358                                             blink_cb,
9359                                             entry);
9360     }
9361   else
9362     {
9363       show_cursor (entry);
9364       priv->blink_time += get_cursor_time (entry);
9365       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9366                                             blink_cb,
9367                                             entry);
9368     }
9369
9370   /* Remove ourselves */
9371   return FALSE;
9372 }
9373
9374 static void
9375 gtk_entry_check_cursor_blink (GtkEntry *entry)
9376 {
9377   GtkEntryPrivate *priv = entry->priv;
9378
9379   if (cursor_blinks (entry))
9380     {
9381       if (!priv->blink_timeout)
9382         {
9383           show_cursor (entry);
9384           priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9385                                                 blink_cb,
9386                                                 entry);
9387         }
9388     }
9389   else
9390     {
9391       if (priv->blink_timeout)
9392         {
9393           g_source_remove (priv->blink_timeout);
9394           priv->blink_timeout = 0;
9395         }
9396
9397       priv->cursor_visible = TRUE;
9398     }
9399 }
9400
9401 static void
9402 gtk_entry_pend_cursor_blink (GtkEntry *entry)
9403 {
9404   GtkEntryPrivate *priv = entry->priv;
9405
9406   if (cursor_blinks (entry))
9407     {
9408       if (priv->blink_timeout != 0)
9409         g_source_remove (priv->blink_timeout);
9410
9411       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_PEND_MULTIPLIER / CURSOR_DIVIDER,
9412                                                      blink_cb,
9413                                                      entry);
9414       show_cursor (entry);
9415     }
9416 }
9417
9418 static void
9419 gtk_entry_reset_blink_time (GtkEntry *entry)
9420 {
9421   GtkEntryPrivate *priv = entry->priv;
9422
9423   priv->blink_time = 0;
9424 }
9425
9426
9427 /* completion */
9428 static gint
9429 gtk_entry_completion_timeout (gpointer data)
9430 {
9431   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
9432   GtkEntryPrivate *completion_entry_priv = GTK_ENTRY (completion->priv->entry)->priv;
9433
9434   completion->priv->completion_timeout = 0;
9435
9436   if (completion->priv->filter_model &&
9437       g_utf8_strlen (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)), -1)
9438       >= completion->priv->minimum_key_length)
9439     {
9440       gint matches;
9441       gint actions;
9442       GtkTreeSelection *s;
9443       gboolean popup_single;
9444
9445       gtk_entry_completion_complete (completion);
9446       matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
9447
9448       gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9449
9450       s = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
9451
9452       gtk_tree_selection_unselect_all (s);
9453
9454       actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
9455
9456       g_object_get (completion, "popup-single-match", &popup_single, NULL);
9457       if ((matches > (popup_single ? 0: 1)) || actions > 0)
9458         { 
9459           if (gtk_widget_get_visible (completion->priv->popup_window))
9460             _gtk_entry_completion_resize_popup (completion);
9461           else
9462             _gtk_entry_completion_popup (completion, completion_entry_priv->completion_device);
9463         }
9464       else 
9465         _gtk_entry_completion_popdown (completion);
9466     }
9467   else if (gtk_widget_get_visible (completion->priv->popup_window))
9468     _gtk_entry_completion_popdown (completion);
9469
9470   return FALSE;
9471 }
9472
9473 static inline gboolean
9474 keyval_is_cursor_move (guint keyval)
9475 {
9476   if (keyval == GDK_KEY_Up || keyval == GDK_KEY_KP_Up)
9477     return TRUE;
9478
9479   if (keyval == GDK_KEY_Down || keyval == GDK_KEY_KP_Down)
9480     return TRUE;
9481
9482   if (keyval == GDK_KEY_Page_Up)
9483     return TRUE;
9484
9485   if (keyval == GDK_KEY_Page_Down)
9486     return TRUE;
9487
9488   return FALSE;
9489 }
9490
9491 static gboolean
9492 gtk_entry_completion_key_press (GtkWidget   *widget,
9493                                 GdkEventKey *event,
9494                                 gpointer     user_data)
9495 {
9496   gint matches, actions = 0;
9497   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
9498
9499   if (!gtk_widget_get_mapped (completion->priv->popup_window))
9500     return FALSE;
9501
9502   matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
9503
9504   if (completion->priv->actions)
9505     actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
9506
9507   if (keyval_is_cursor_move (event->keyval))
9508     {
9509       GtkTreePath *path = NULL;
9510       
9511       if (event->keyval == GDK_KEY_Up || event->keyval == GDK_KEY_KP_Up)
9512         {
9513           if (completion->priv->current_selected < 0)
9514             completion->priv->current_selected = matches + actions - 1;
9515           else
9516             completion->priv->current_selected--;
9517         }
9518       else if (event->keyval == GDK_KEY_Down || event->keyval == GDK_KEY_KP_Down)
9519         {
9520           if (completion->priv->current_selected < matches + actions - 1)
9521             completion->priv->current_selected++;
9522           else
9523             completion->priv->current_selected = -1;
9524         }
9525       else if (event->keyval == GDK_KEY_Page_Up)
9526         {
9527           if (completion->priv->current_selected < 0)
9528             completion->priv->current_selected = matches + actions - 1;
9529           else if (completion->priv->current_selected == 0)
9530             completion->priv->current_selected = -1;
9531           else if (completion->priv->current_selected < matches) 
9532             {
9533               completion->priv->current_selected -= 14;
9534               if (completion->priv->current_selected < 0)
9535                 completion->priv->current_selected = 0;
9536             }
9537           else 
9538             {
9539               completion->priv->current_selected -= 14;
9540               if (completion->priv->current_selected < matches - 1)
9541                 completion->priv->current_selected = matches - 1;
9542             }
9543         }
9544       else if (event->keyval == GDK_KEY_Page_Down)
9545         {
9546           if (completion->priv->current_selected < 0)
9547             completion->priv->current_selected = 0;
9548           else if (completion->priv->current_selected < matches - 1)
9549             {
9550               completion->priv->current_selected += 14;
9551               if (completion->priv->current_selected > matches - 1)
9552                 completion->priv->current_selected = matches - 1;
9553             }
9554           else if (completion->priv->current_selected == matches + actions - 1)
9555             {
9556               completion->priv->current_selected = -1;
9557             }
9558           else
9559             {
9560               completion->priv->current_selected += 14;
9561               if (completion->priv->current_selected > matches + actions - 1)
9562                 completion->priv->current_selected = matches + actions - 1;
9563             }
9564         }
9565
9566       if (completion->priv->current_selected < 0)
9567         {
9568           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9569           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
9570
9571           if (completion->priv->inline_selection &&
9572               completion->priv->completion_prefix)
9573             {
9574               gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9575                                   completion->priv->completion_prefix);
9576               gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9577             }
9578         }
9579       else if (completion->priv->current_selected < matches)
9580         {
9581           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
9582
9583           path = gtk_tree_path_new_from_indices (completion->priv->current_selected, -1);
9584           gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->tree_view),
9585                                     path, NULL, FALSE);
9586
9587           if (completion->priv->inline_selection)
9588             {
9589
9590               GtkTreeIter iter;
9591               GtkTreeIter child_iter;
9592               GtkTreeModel *model = NULL;
9593               GtkTreeSelection *sel;
9594               gboolean entry_set;
9595
9596               sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
9597               if (!gtk_tree_selection_get_selected (sel, &model, &iter))
9598                 return FALSE;
9599
9600               gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
9601               model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
9602               
9603               if (completion->priv->completion_prefix == NULL)
9604                 completion->priv->completion_prefix = g_strdup (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)));
9605
9606               g_signal_emit_by_name (completion, "cursor-on-match", model,
9607                                      &child_iter, &entry_set);
9608             }
9609         }
9610       else if (completion->priv->current_selected - matches >= 0)
9611         {
9612           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9613
9614           path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
9615           gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->action_view),
9616                                     path, NULL, FALSE);
9617
9618           if (completion->priv->inline_selection &&
9619               completion->priv->completion_prefix)
9620             {
9621               gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9622                                   completion->priv->completion_prefix);
9623               gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9624             }
9625         }
9626
9627       gtk_tree_path_free (path);
9628
9629       return TRUE;
9630     }
9631   else if (event->keyval == GDK_KEY_Escape ||
9632            event->keyval == GDK_KEY_Left ||
9633            event->keyval == GDK_KEY_KP_Left ||
9634            event->keyval == GDK_KEY_Right ||
9635            event->keyval == GDK_KEY_KP_Right) 
9636     {
9637       gboolean retval = TRUE;
9638
9639       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9640       _gtk_entry_completion_popdown (completion);
9641
9642       if (completion->priv->current_selected < 0)
9643         {
9644           retval = FALSE;
9645           goto keypress_completion_out;
9646         }
9647       else if (completion->priv->inline_selection)
9648         {
9649           /* Escape rejects the tentative completion */
9650           if (event->keyval == GDK_KEY_Escape)
9651             {
9652               if (completion->priv->completion_prefix)
9653                 gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9654                                     completion->priv->completion_prefix);
9655               else 
9656                 gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), "");
9657             }
9658
9659           /* Move the cursor to the end for Right/Esc, to the
9660              beginning for Left */
9661           if (event->keyval == GDK_KEY_Right ||
9662               event->keyval == GDK_KEY_KP_Right ||
9663               event->keyval == GDK_KEY_Escape)
9664             gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9665           else
9666             gtk_editable_set_position (GTK_EDITABLE (widget), 0);
9667         }
9668
9669 keypress_completion_out:
9670       if (completion->priv->inline_selection)
9671         {
9672           g_free (completion->priv->completion_prefix);
9673           completion->priv->completion_prefix = NULL;
9674         }
9675
9676       return retval;
9677     }
9678   else if (event->keyval == GDK_KEY_Tab || 
9679            event->keyval == GDK_KEY_KP_Tab ||
9680            event->keyval == GDK_KEY_ISO_Left_Tab) 
9681     {
9682       GtkDirectionType dir = event->keyval == GDK_KEY_ISO_Left_Tab ? 
9683         GTK_DIR_TAB_BACKWARD : GTK_DIR_TAB_FORWARD;
9684       
9685       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9686       _gtk_entry_completion_popdown (completion);
9687
9688       g_free (completion->priv->completion_prefix);
9689       completion->priv->completion_prefix = NULL;
9690
9691       gtk_widget_child_focus (gtk_widget_get_toplevel (widget), dir);
9692
9693       return TRUE;
9694     }
9695   else if (event->keyval == GDK_KEY_ISO_Enter ||
9696            event->keyval == GDK_KEY_KP_Enter ||
9697            event->keyval == GDK_KEY_Return)
9698     {
9699       GtkTreeIter iter;
9700       GtkTreeModel *model = NULL;
9701       GtkTreeModel *child_model;
9702       GtkTreeIter child_iter;
9703       GtkTreeSelection *sel;
9704       gboolean retval = TRUE;
9705
9706       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9707       _gtk_entry_completion_popdown (completion);
9708
9709       if (completion->priv->current_selected < matches)
9710         {
9711           gboolean entry_set;
9712
9713           sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
9714           if (gtk_tree_selection_get_selected (sel, &model, &iter))
9715             {
9716               gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
9717               child_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
9718               g_signal_handler_block (widget, completion->priv->changed_id);
9719               g_signal_emit_by_name (completion, "match-selected",
9720                                      child_model, &child_iter, &entry_set);
9721               g_signal_handler_unblock (widget, completion->priv->changed_id);
9722
9723               if (!entry_set)
9724                 {
9725                   gchar *str = NULL;
9726
9727                   gtk_tree_model_get (model, &iter,
9728                                       completion->priv->text_column, &str,
9729                                       -1);
9730
9731                   gtk_entry_set_text (GTK_ENTRY (widget), str);
9732
9733                   /* move the cursor to the end */
9734                   gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9735
9736                   g_free (str);
9737                 }
9738             }
9739           else
9740             retval = FALSE;
9741         }
9742       else if (completion->priv->current_selected - matches >= 0)
9743         {
9744           sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
9745           if (gtk_tree_selection_get_selected (sel, &model, &iter))
9746             {
9747               GtkTreePath *path;
9748
9749               path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
9750               g_signal_emit_by_name (completion, "action-activated",
9751                                      gtk_tree_path_get_indices (path)[0]);
9752               gtk_tree_path_free (path);
9753             }
9754           else
9755             retval = FALSE;
9756         }
9757
9758       g_free (completion->priv->completion_prefix);
9759       completion->priv->completion_prefix = NULL;
9760
9761       return retval;
9762     }
9763
9764   return FALSE;
9765 }
9766
9767 static void
9768 gtk_entry_completion_changed (GtkWidget *widget,
9769                               gpointer   user_data)
9770 {
9771   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
9772   GtkEntry *entry = GTK_ENTRY (widget);
9773   GtkEntryPrivate *priv = entry->priv;
9774   GdkDevice *device;
9775
9776   /* (re)install completion timeout */
9777   if (completion->priv->completion_timeout)
9778     g_source_remove (completion->priv->completion_timeout);
9779
9780   if (!gtk_entry_get_text (entry))
9781     return;
9782
9783   /* no need to normalize for this test */
9784   if (completion->priv->minimum_key_length > 0 &&
9785       strcmp ("", gtk_entry_get_text (entry)) == 0)
9786     {
9787       if (gtk_widget_get_visible (completion->priv->popup_window))
9788         _gtk_entry_completion_popdown (completion);
9789       return;
9790     }
9791
9792   device = gtk_get_current_event_device ();
9793
9794   if (device && gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
9795     device = gdk_device_get_associated_device (device);
9796
9797   if (device)
9798     priv->completion_device = device;
9799
9800   completion->priv->completion_timeout =
9801     gdk_threads_add_timeout (COMPLETION_TIMEOUT,
9802                    gtk_entry_completion_timeout,
9803                    completion);
9804 }
9805
9806 static gboolean
9807 check_completion_callback (GtkEntryCompletion *completion)
9808 {
9809   completion->priv->check_completion_idle = NULL;
9810   
9811   gtk_entry_completion_complete (completion);
9812   gtk_entry_completion_insert_prefix (completion);
9813
9814   return FALSE;
9815 }
9816
9817 static void
9818 clear_completion_callback (GtkEntry   *entry,
9819                            GParamSpec *pspec)
9820 {
9821   if (pspec->name == I_("cursor-position") ||
9822       pspec->name == I_("selection-bound"))
9823     {
9824       GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
9825       
9826       completion->priv->has_completion = FALSE;
9827     }
9828 }
9829
9830 static gboolean
9831 accept_completion_callback (GtkEntry *entry)
9832 {
9833   GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
9834
9835   if (completion->priv->has_completion)
9836     gtk_editable_set_position (GTK_EDITABLE (entry),
9837                                gtk_entry_buffer_get_length (get_buffer (entry)));
9838
9839   return FALSE;
9840 }
9841
9842 static void
9843 completion_insert_text_callback (GtkEntry           *entry,
9844                                  const gchar        *text,
9845                                  gint                length,
9846                                  gint                position,
9847                                  GtkEntryCompletion *completion)
9848 {
9849   /* idle to update the selection based on the file list */
9850   if (completion->priv->check_completion_idle == NULL)
9851     {
9852       completion->priv->check_completion_idle = g_idle_source_new ();
9853       g_source_set_priority (completion->priv->check_completion_idle, G_PRIORITY_HIGH);
9854       g_source_set_closure (completion->priv->check_completion_idle,
9855                             g_cclosure_new_object (G_CALLBACK (check_completion_callback),
9856                                                    G_OBJECT (completion)));
9857       g_source_attach (completion->priv->check_completion_idle, NULL);
9858     }
9859 }
9860
9861 static void
9862 completion_changed (GtkEntryCompletion *completion,
9863                     GParamSpec         *pspec,
9864                     gpointer            data)
9865 {
9866   GtkEntry *entry = GTK_ENTRY (data);
9867
9868   if (pspec->name == I_("popup-completion") ||
9869       pspec->name == I_("inline-completion"))
9870     {
9871       disconnect_completion_signals (entry, completion);
9872       connect_completion_signals (entry, completion);
9873     }
9874 }
9875
9876 static void
9877 disconnect_completion_signals (GtkEntry           *entry,
9878                                GtkEntryCompletion *completion)
9879 {
9880   g_signal_handlers_disconnect_by_func (completion, 
9881                                        G_CALLBACK (completion_changed), entry);
9882   if (completion->priv->changed_id > 0 &&
9883       g_signal_handler_is_connected (entry, completion->priv->changed_id))
9884     {
9885       g_signal_handler_disconnect (entry, completion->priv->changed_id);
9886       completion->priv->changed_id = 0;
9887     }
9888   g_signal_handlers_disconnect_by_func (entry, 
9889                                         G_CALLBACK (gtk_entry_completion_key_press), completion);
9890   if (completion->priv->insert_text_id > 0 &&
9891       g_signal_handler_is_connected (entry, completion->priv->insert_text_id))
9892     {
9893       g_signal_handler_disconnect (entry, completion->priv->insert_text_id);
9894       completion->priv->insert_text_id = 0;
9895     }
9896   g_signal_handlers_disconnect_by_func (entry, 
9897                                         G_CALLBACK (completion_insert_text_callback), completion);
9898   g_signal_handlers_disconnect_by_func (entry, 
9899                                         G_CALLBACK (clear_completion_callback), completion);
9900   g_signal_handlers_disconnect_by_func (entry, 
9901                                         G_CALLBACK (accept_completion_callback), completion);
9902 }
9903
9904 static void
9905 connect_completion_signals (GtkEntry           *entry,
9906                             GtkEntryCompletion *completion)
9907 {
9908   if (completion->priv->popup_completion)
9909     {
9910       completion->priv->changed_id =
9911         g_signal_connect (entry, "changed",
9912                           G_CALLBACK (gtk_entry_completion_changed), completion);
9913       g_signal_connect (entry, "key-press-event",
9914                         G_CALLBACK (gtk_entry_completion_key_press), completion);
9915     }
9916  
9917   if (completion->priv->inline_completion)
9918     {
9919       completion->priv->insert_text_id =
9920         g_signal_connect (entry, "insert-text",
9921                           G_CALLBACK (completion_insert_text_callback), completion);
9922       g_signal_connect (entry, "notify",
9923                         G_CALLBACK (clear_completion_callback), completion);
9924       g_signal_connect (entry, "activate",
9925                         G_CALLBACK (accept_completion_callback), completion);
9926       g_signal_connect (entry, "focus-out-event",
9927                         G_CALLBACK (accept_completion_callback), completion);
9928     }
9929
9930   g_signal_connect (completion, "notify",
9931                     G_CALLBACK (completion_changed), entry);
9932 }
9933
9934 /**
9935  * gtk_entry_set_completion:
9936  * @entry: A #GtkEntry
9937  * @completion: (allow-none): The #GtkEntryCompletion or %NULL
9938  *
9939  * Sets @completion to be the auxiliary completion object to use with @entry.
9940  * All further configuration of the completion mechanism is done on
9941  * @completion using the #GtkEntryCompletion API. Completion is disabled if
9942  * @completion is set to %NULL.
9943  *
9944  * Since: 2.4
9945  */
9946 void
9947 gtk_entry_set_completion (GtkEntry           *entry,
9948                           GtkEntryCompletion *completion)
9949 {
9950   GtkEntryCompletion *old;
9951
9952   g_return_if_fail (GTK_IS_ENTRY (entry));
9953   g_return_if_fail (!completion || GTK_IS_ENTRY_COMPLETION (completion));
9954
9955   old = gtk_entry_get_completion (entry);
9956
9957   if (old == completion)
9958     return;
9959   
9960   if (old)
9961     {
9962       if (old->priv->completion_timeout)
9963         {
9964           g_source_remove (old->priv->completion_timeout);
9965           old->priv->completion_timeout = 0;
9966         }
9967
9968       if (gtk_widget_get_mapped (old->priv->popup_window))
9969         _gtk_entry_completion_popdown (old);
9970
9971       disconnect_completion_signals (entry, old);
9972       old->priv->entry = NULL;
9973
9974       g_object_unref (old);
9975     }
9976
9977   if (!completion)
9978     {
9979       g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), NULL);
9980       return;
9981     }
9982
9983   /* hook into the entry */
9984   g_object_ref (completion);
9985
9986   connect_completion_signals (entry, completion);    
9987   completion->priv->entry = GTK_WIDGET (entry);
9988   g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), completion);
9989
9990   g_object_notify (G_OBJECT (entry), "completion");
9991 }
9992
9993 /**
9994  * gtk_entry_get_completion:
9995  * @entry: A #GtkEntry
9996  *
9997  * Returns the auxiliary completion object currently in use by @entry.
9998  *
9999  * Return value: (transfer none): The auxiliary completion object currently
10000  *     in use by @entry.
10001  *
10002  * Since: 2.4
10003  */
10004 GtkEntryCompletion *
10005 gtk_entry_get_completion (GtkEntry *entry)
10006 {
10007   GtkEntryCompletion *completion;
10008
10009   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10010
10011   completion = GTK_ENTRY_COMPLETION (g_object_get_data (G_OBJECT (entry),
10012                                      GTK_ENTRY_COMPLETION_KEY));
10013
10014   return completion;
10015 }
10016
10017 /**
10018  * gtk_entry_set_cursor_hadjustment:
10019  * @entry: a #GtkEntry
10020  * @adjustment: an adjustment which should be adjusted when the cursor 
10021  *              is moved, or %NULL
10022  *
10023  * Hooks up an adjustment to the cursor position in an entry, so that when 
10024  * the cursor is moved, the adjustment is scrolled to show that position. 
10025  * See gtk_scrolled_window_get_hadjustment() for a typical way of obtaining 
10026  * the adjustment.
10027  *
10028  * The adjustment has to be in pixel units and in the same coordinate system 
10029  * as the entry. 
10030  * 
10031  * Since: 2.12
10032  */
10033 void
10034 gtk_entry_set_cursor_hadjustment (GtkEntry      *entry,
10035                                   GtkAdjustment *adjustment)
10036 {
10037   g_return_if_fail (GTK_IS_ENTRY (entry));
10038   if (adjustment)
10039     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
10040
10041   if (adjustment)
10042     g_object_ref (adjustment);
10043
10044   g_object_set_qdata_full (G_OBJECT (entry), 
10045                            quark_cursor_hadjustment,
10046                            adjustment, 
10047                            g_object_unref);
10048 }
10049
10050 /**
10051  * gtk_entry_get_cursor_hadjustment:
10052  * @entry: a #GtkEntry
10053  *
10054  * Retrieves the horizontal cursor adjustment for the entry. 
10055  * See gtk_entry_set_cursor_hadjustment().
10056  *
10057  * Return value: (transfer none): the horizontal cursor adjustment, or %NULL
10058  *   if none has been set.
10059  *
10060  * Since: 2.12
10061  */
10062 GtkAdjustment*
10063 gtk_entry_get_cursor_hadjustment (GtkEntry *entry)
10064 {
10065   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10066
10067   return g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
10068 }
10069
10070 /**
10071  * gtk_entry_set_progress_fraction:
10072  * @entry: a #GtkEntry
10073  * @fraction: fraction of the task that's been completed
10074  *
10075  * Causes the entry's progress indicator to "fill in" the given
10076  * fraction of the bar. The fraction should be between 0.0 and 1.0,
10077  * inclusive.
10078  *
10079  * Since: 2.16
10080  */
10081 void
10082 gtk_entry_set_progress_fraction (GtkEntry *entry,
10083                                  gdouble   fraction)
10084 {
10085   GtkWidget       *widget;
10086   GtkEntryPrivate *private;
10087   gdouble          old_fraction;
10088   gint x, y, width, height;
10089   gint old_x, old_y, old_width, old_height;
10090
10091   g_return_if_fail (GTK_IS_ENTRY (entry));
10092
10093   widget = GTK_WIDGET (entry);
10094   private = entry->priv;
10095
10096   if (private->progress_pulse_mode)
10097     old_fraction = -1;
10098   else
10099     old_fraction = private->progress_fraction;
10100
10101   if (gtk_widget_is_drawable (widget))
10102     get_progress_area (widget, &old_x, &old_y, &old_width, &old_height);
10103
10104   fraction = CLAMP (fraction, 0.0, 1.0);
10105
10106   private->progress_fraction = fraction;
10107   private->progress_pulse_mode = FALSE;
10108   private->progress_pulse_current = 0.0;
10109
10110   if (gtk_widget_is_drawable (widget))
10111     {
10112       get_progress_area (widget, &x, &y, &width, &height);
10113
10114       if ((x != old_x) || (y != old_y) || (width != old_width) || (height != old_height))
10115         gtk_widget_queue_draw (widget);
10116     }
10117
10118   if (fraction != old_fraction)
10119     g_object_notify (G_OBJECT (entry), "progress-fraction");
10120 }
10121
10122 /**
10123  * gtk_entry_get_progress_fraction:
10124  * @entry: a #GtkEntry
10125  *
10126  * Returns the current fraction of the task that's been completed.
10127  * See gtk_entry_set_progress_fraction().
10128  *
10129  * Return value: a fraction from 0.0 to 1.0
10130  *
10131  * Since: 2.16
10132  */
10133 gdouble
10134 gtk_entry_get_progress_fraction (GtkEntry *entry)
10135 {
10136   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
10137
10138   return entry->priv->progress_fraction;
10139 }
10140
10141 /**
10142  * gtk_entry_set_progress_pulse_step:
10143  * @entry: a #GtkEntry
10144  * @fraction: fraction between 0.0 and 1.0
10145  *
10146  * Sets the fraction of total entry width to move the progress
10147  * bouncing block for each call to gtk_entry_progress_pulse().
10148  *
10149  * Since: 2.16
10150  */
10151 void
10152 gtk_entry_set_progress_pulse_step (GtkEntry *entry,
10153                                    gdouble   fraction)
10154 {
10155   GtkEntryPrivate *private;
10156
10157   g_return_if_fail (GTK_IS_ENTRY (entry));
10158
10159   private = entry->priv;
10160
10161   fraction = CLAMP (fraction, 0.0, 1.0);
10162
10163   if (fraction != private->progress_pulse_fraction)
10164     {
10165       private->progress_pulse_fraction = fraction;
10166
10167       gtk_widget_queue_draw (GTK_WIDGET (entry));
10168
10169       g_object_notify (G_OBJECT (entry), "progress-pulse-step");
10170     }
10171 }
10172
10173 /**
10174  * gtk_entry_get_progress_pulse_step:
10175  * @entry: a #GtkEntry
10176  *
10177  * Retrieves the pulse step set with gtk_entry_set_progress_pulse_step().
10178  *
10179  * Return value: a fraction from 0.0 to 1.0
10180  *
10181  * Since: 2.16
10182  */
10183 gdouble
10184 gtk_entry_get_progress_pulse_step (GtkEntry *entry)
10185 {
10186   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
10187
10188   return entry->priv->progress_pulse_fraction;
10189 }
10190
10191 /**
10192  * gtk_entry_progress_pulse:
10193  * @entry: a #GtkEntry
10194  *
10195  * Indicates that some progress is made, but you don't know how much.
10196  * Causes the entry's progress indicator to enter "activity mode,"
10197  * where a block bounces back and forth. Each call to
10198  * gtk_entry_progress_pulse() causes the block to move by a little bit
10199  * (the amount of movement per pulse is determined by
10200  * gtk_entry_set_progress_pulse_step()).
10201  *
10202  * Since: 2.16
10203  */
10204 void
10205 gtk_entry_progress_pulse (GtkEntry *entry)
10206 {
10207   GtkEntryPrivate *private;
10208
10209   g_return_if_fail (GTK_IS_ENTRY (entry));
10210
10211   private = entry->priv;
10212
10213   if (private->progress_pulse_mode)
10214     {
10215       if (private->progress_pulse_way_back)
10216         {
10217           private->progress_pulse_current -= private->progress_pulse_fraction;
10218
10219           if (private->progress_pulse_current < 0.0)
10220             {
10221               private->progress_pulse_current = 0.0;
10222               private->progress_pulse_way_back = FALSE;
10223             }
10224         }
10225       else
10226         {
10227           private->progress_pulse_current += private->progress_pulse_fraction;
10228
10229           if (private->progress_pulse_current > 1.0 - private->progress_pulse_fraction)
10230             {
10231               private->progress_pulse_current = 1.0 - private->progress_pulse_fraction;
10232               private->progress_pulse_way_back = TRUE;
10233             }
10234         }
10235     }
10236   else
10237     {
10238       private->progress_fraction = 0.0;
10239       private->progress_pulse_mode = TRUE;
10240       private->progress_pulse_way_back = FALSE;
10241       private->progress_pulse_current = 0.0;
10242     }
10243
10244   gtk_widget_queue_draw (GTK_WIDGET (entry));
10245 }
10246
10247 /**
10248  * gtk_entry_set_placeholder_text:
10249  * @entry: a #GtkEntry
10250  * @text: a string to be displayed when @entry is empty an unfocused, or %NULL
10251  *
10252  * Sets text to be displayed in @entry when
10253  * it is empty and unfocused. This can be used to give a visual hint
10254  * of the expected contents of the #GtkEntry.
10255  *
10256  * Since: 3.2
10257  **/
10258 void
10259 gtk_entry_set_placeholder_text (GtkEntry    *entry,
10260                                 const gchar *text)
10261 {
10262   GtkEntryPrivate *priv;
10263
10264   g_return_if_fail (GTK_IS_ENTRY (entry));
10265
10266   priv = entry->priv;
10267
10268   if (g_strcmp0 (priv->placeholder_text, text) == 0)
10269     return;
10270
10271   g_free (priv->placeholder_text);
10272   priv->placeholder_text = g_strdup (text);
10273
10274   gtk_entry_recompute (entry);
10275
10276   g_object_notify (G_OBJECT (entry), "placeholder-text");
10277 }
10278
10279 /**
10280  * gtk_entry_get_placeholder_text:
10281  * @entry: a #GtkEntry
10282  *
10283  * Retrieves the text that will be displayed when @entry is empty and unfocused
10284  *
10285  * Returns: a pointer to the placeholder text as a string. This string points to internally allocated
10286  * storage in the widget and must not be freed, modified or stored.
10287  *
10288  * Since: 3.2
10289  **/
10290 G_CONST_RETURN gchar *
10291 gtk_entry_get_placeholder_text (GtkEntry *entry)
10292 {
10293   GtkEntryPrivate *priv;
10294
10295   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10296
10297   priv = entry->priv;
10298
10299   return priv->placeholder_text;
10300 }
10301
10302 /* Caps Lock warning for password entries */
10303
10304 static void
10305 show_capslock_feedback (GtkEntry    *entry,
10306                         const gchar *text)
10307 {
10308   GtkEntryPrivate *priv = entry->priv;
10309
10310   if (gtk_entry_get_icon_storage_type (entry, GTK_ENTRY_ICON_SECONDARY) == GTK_IMAGE_EMPTY)
10311     {
10312       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CAPS_LOCK_WARNING);
10313       gtk_entry_set_icon_activatable (entry, GTK_ENTRY_ICON_SECONDARY, FALSE);
10314       priv->caps_lock_warning_shown = TRUE;
10315     }
10316
10317   if (priv->caps_lock_warning_shown)
10318     gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, text);
10319   else
10320     g_warning ("Can't show Caps Lock warning, since secondary icon is set");
10321 }
10322
10323 static void
10324 remove_capslock_feedback (GtkEntry *entry)
10325 {
10326   GtkEntryPrivate *priv = entry->priv;
10327
10328   if (priv->caps_lock_warning_shown)
10329     {
10330       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
10331       priv->caps_lock_warning_shown = FALSE;
10332     } 
10333 }
10334
10335 static void
10336 keymap_state_changed (GdkKeymap *keymap, 
10337                       GtkEntry  *entry)
10338 {
10339   GtkEntryPrivate *priv = entry->priv;
10340   char *text = NULL;
10341
10342   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL && priv->caps_lock_warning)
10343     { 
10344       if (gdk_keymap_get_num_lock_state (keymap)
10345           && gdk_keymap_get_caps_lock_state (keymap))
10346         text = _("Caps Lock and Num Lock are on");
10347       else if (gdk_keymap_get_num_lock_state (keymap))
10348         text = _("Num Lock is on");
10349       else if (gdk_keymap_get_caps_lock_state (keymap))
10350         text = _("Caps Lock is on");
10351     }
10352
10353   if (text)
10354     show_capslock_feedback (entry, text);
10355   else
10356     remove_capslock_feedback (entry);
10357 }
10358
10359 /*
10360  * _gtk_entry_set_is_cell_renderer:
10361  * @entry: a #GtkEntry
10362  * @is_cell_renderer: new value
10363  *
10364  * This is a helper function for GtkComboBox. A GtkEntry in a GtkComboBox
10365  * is supposed to behave like a GtkCellEditable when placed in a combo box.
10366  *
10367  * I.e take up its allocation and get GtkEntry->is_cell_renderer = TRUE.
10368  *
10369  */
10370 void
10371 _gtk_entry_set_is_cell_renderer (GtkEntry *entry,
10372                                  gboolean  is_cell_renderer)
10373 {
10374   entry->priv->is_cell_renderer = is_cell_renderer;
10375 }