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