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