]> Pileus Git - ~andy/gtk/blob - gtk/gtkentry.c
c130158f2a6230a7291668df23c640a996c83156
[~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     {
4543       gunichar ch = find_invisible_char (GTK_WIDGET (entry));
4544
4545       if (priv->invisible_char != ch)
4546         {
4547           priv->invisible_char = ch;
4548           g_object_notify (G_OBJECT (entry), "invisible-char");
4549         }
4550     }
4551 }
4552
4553 static void 
4554 gtk_entry_style_updated (GtkWidget *widget)
4555 {
4556   GtkEntry *entry = GTK_ENTRY (widget);
4557
4558   GTK_WIDGET_CLASS (gtk_entry_parent_class)->style_updated (widget);
4559
4560   gtk_entry_update_cached_style_values (entry);
4561
4562   gtk_entry_recompute (entry);
4563
4564   icon_theme_changed (entry);
4565   icon_margin_changed (entry);
4566 }
4567
4568 /* GtkCellEditable method implementations
4569  */
4570 static void
4571 gtk_cell_editable_entry_activated (GtkEntry *entry, gpointer data)
4572 {
4573   gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4574   gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4575 }
4576
4577 static gboolean
4578 gtk_cell_editable_key_press_event (GtkEntry    *entry,
4579                                    GdkEventKey *key_event,
4580                                    gpointer     data)
4581 {
4582   GtkEntryPrivate *priv = entry->priv;
4583
4584   if (key_event->keyval == GDK_KEY_Escape)
4585     {
4586       priv->editing_canceled = TRUE;
4587       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4588       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4589
4590       return TRUE;
4591     }
4592
4593   /* override focus */
4594   if (key_event->keyval == GDK_KEY_Up || key_event->keyval == GDK_KEY_Down)
4595     {
4596       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4597       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4598
4599       return TRUE;
4600     }
4601
4602   return FALSE;
4603 }
4604
4605 static void
4606 gtk_entry_start_editing (GtkCellEditable *cell_editable,
4607                          GdkEvent        *event)
4608 {
4609   GtkEntry *entry = GTK_ENTRY (cell_editable);
4610   GtkEntryPrivate *priv = entry->priv;
4611
4612   priv->is_cell_renderer = TRUE;
4613
4614   g_signal_connect (cell_editable, "activate",
4615                     G_CALLBACK (gtk_cell_editable_entry_activated), NULL);
4616   g_signal_connect (cell_editable, "key-press-event",
4617                     G_CALLBACK (gtk_cell_editable_key_press_event), NULL);
4618 }
4619
4620 static void
4621 gtk_entry_password_hint_free (GtkEntryPasswordHint *password_hint)
4622 {
4623   if (password_hint->source_id)
4624     g_source_remove (password_hint->source_id);
4625
4626   g_slice_free (GtkEntryPasswordHint, password_hint);
4627 }
4628
4629
4630 static gboolean
4631 gtk_entry_remove_password_hint (gpointer data)
4632 {
4633   GtkEntryPasswordHint *password_hint = g_object_get_qdata (data, quark_password_hint);
4634   password_hint->position = -1;
4635
4636   /* Force the string to be redrawn, but now without a visible character */
4637   gtk_entry_recompute (GTK_ENTRY (data));
4638   return FALSE;
4639 }
4640
4641 /* Default signal handlers
4642  */
4643 static void
4644 gtk_entry_real_insert_text (GtkEditable *editable,
4645                             const gchar *new_text,
4646                             gint         new_text_length,
4647                             gint        *position)
4648 {
4649   guint n_inserted;
4650   gint n_chars;
4651
4652   n_chars = g_utf8_strlen (new_text, new_text_length);
4653
4654   /*
4655    * The actual insertion into the buffer. This will end up firing the
4656    * following signal handlers: buffer_inserted_text(), buffer_notify_display_text(),
4657    * buffer_notify_text(), buffer_notify_length()
4658    */
4659   n_inserted = gtk_entry_buffer_insert_text (get_buffer (GTK_ENTRY (editable)), *position, new_text, n_chars);
4660
4661   if (n_inserted != n_chars)
4662       gtk_widget_error_bell (GTK_WIDGET (editable));
4663
4664   *position += n_inserted;
4665 }
4666
4667 static void
4668 gtk_entry_real_delete_text (GtkEditable *editable,
4669                             gint         start_pos,
4670                             gint         end_pos)
4671 {
4672   /*
4673    * The actual deletion from the buffer. This will end up firing the
4674    * following signal handlers: buffer_deleted_text(), buffer_notify_display_text(),
4675    * buffer_notify_text(), buffer_notify_length()
4676    */
4677
4678   gtk_entry_buffer_delete_text (get_buffer (GTK_ENTRY (editable)), start_pos, end_pos - start_pos);
4679 }
4680
4681 /* GtkEntryBuffer signal handlers
4682  */
4683 static void
4684 buffer_inserted_text (GtkEntryBuffer *buffer,
4685                       guint           position,
4686                       const gchar    *chars,
4687                       guint           n_chars,
4688                       GtkEntry       *entry)
4689 {
4690   GtkEntryPrivate *priv = entry->priv;
4691   guint password_hint_timeout;
4692
4693   if (priv->current_pos > position)
4694     priv->current_pos += n_chars;
4695
4696   if (priv->selection_bound > position)
4697     priv->selection_bound += n_chars;
4698
4699   /* Calculate the password hint if it needs to be displayed. */
4700   if (n_chars == 1 && !priv->visible)
4701     {
4702       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
4703                     "gtk-entry-password-hint-timeout", &password_hint_timeout,
4704                     NULL);
4705
4706       if (password_hint_timeout > 0)
4707         {
4708           GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
4709                                                                     quark_password_hint);
4710           if (!password_hint)
4711             {
4712               password_hint = g_slice_new0 (GtkEntryPasswordHint);
4713               g_object_set_qdata_full (G_OBJECT (entry), quark_password_hint, password_hint,
4714                                        (GDestroyNotify)gtk_entry_password_hint_free);
4715             }
4716
4717           password_hint->position = position;
4718           if (password_hint->source_id)
4719             g_source_remove (password_hint->source_id);
4720           password_hint->source_id = gdk_threads_add_timeout (password_hint_timeout,
4721                                                               (GSourceFunc)gtk_entry_remove_password_hint, entry);
4722         }
4723     }
4724 }
4725
4726 static void
4727 buffer_deleted_text (GtkEntryBuffer *buffer,
4728                      guint           position,
4729                      guint           n_chars,
4730                      GtkEntry       *entry)
4731 {
4732   GtkEntryPrivate *priv = entry->priv;
4733   guint end_pos = position + n_chars;
4734   gint selection_bound;
4735   guint current_pos;
4736
4737   current_pos = priv->current_pos;
4738   if (current_pos > position)
4739     current_pos -= MIN (current_pos, end_pos) - position;
4740
4741   selection_bound = priv->selection_bound;
4742   if (selection_bound > position)
4743     selection_bound -= MIN (selection_bound, end_pos) - position;
4744
4745   gtk_entry_set_positions (entry, current_pos, selection_bound);
4746
4747   /* We might have deleted the selection */
4748   gtk_entry_update_primary_selection (entry);
4749
4750   /* Disable the password hint if one exists. */
4751   if (!priv->visible)
4752     {
4753       GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
4754                                                                 quark_password_hint);
4755       if (password_hint)
4756         {
4757           if (password_hint->source_id)
4758             g_source_remove (password_hint->source_id);
4759           password_hint->source_id = 0;
4760           password_hint->position = -1;
4761         }
4762     }
4763 }
4764
4765 static void
4766 buffer_notify_text (GtkEntryBuffer *buffer,
4767                     GParamSpec     *spec,
4768                     GtkEntry       *entry)
4769 {
4770   gtk_entry_recompute (entry);
4771   emit_changed (entry);
4772   g_object_notify (G_OBJECT (entry), "text");
4773 }
4774
4775 static void
4776 buffer_notify_length (GtkEntryBuffer *buffer,
4777                       GParamSpec     *spec,
4778                       GtkEntry       *entry)
4779 {
4780   g_object_notify (G_OBJECT (entry), "text-length");
4781 }
4782
4783 static void
4784 buffer_notify_max_length (GtkEntryBuffer *buffer,
4785                           GParamSpec     *spec,
4786                           GtkEntry       *entry)
4787 {
4788   g_object_notify (G_OBJECT (entry), "max-length");
4789 }
4790
4791 static void
4792 buffer_connect_signals (GtkEntry *entry)
4793 {
4794   g_signal_connect (get_buffer (entry), "inserted-text", G_CALLBACK (buffer_inserted_text), entry);
4795   g_signal_connect (get_buffer (entry), "deleted-text", G_CALLBACK (buffer_deleted_text), entry);
4796   g_signal_connect (get_buffer (entry), "notify::text", G_CALLBACK (buffer_notify_text), entry);
4797   g_signal_connect (get_buffer (entry), "notify::length", G_CALLBACK (buffer_notify_length), entry);
4798   g_signal_connect (get_buffer (entry), "notify::max-length", G_CALLBACK (buffer_notify_max_length), entry);
4799 }
4800
4801 static void
4802 buffer_disconnect_signals (GtkEntry *entry)
4803 {
4804   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_inserted_text, entry);
4805   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_deleted_text, entry);
4806   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_text, entry);
4807   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_length, entry);
4808   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_max_length, entry);
4809 }
4810
4811 /* Compute the X position for an offset that corresponds to the "more important
4812  * cursor position for that offset. We use this when trying to guess to which
4813  * end of the selection we should go to when the user hits the left or
4814  * right arrow key.
4815  */
4816 static gint
4817 get_better_cursor_x (GtkEntry *entry,
4818                      gint      offset)
4819 {
4820   GtkEntryPrivate *priv = entry->priv;
4821   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
4822   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
4823   gboolean split_cursor;
4824   
4825   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
4826   const gchar *text = pango_layout_get_text (layout);
4827   gint index = g_utf8_offset_to_pointer (text, offset) - text;
4828   
4829   PangoRectangle strong_pos, weak_pos;
4830   
4831   g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
4832                 "gtk-split-cursor", &split_cursor,
4833                 NULL);
4834
4835   pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
4836
4837   if (split_cursor)
4838     return strong_pos.x / PANGO_SCALE;
4839   else
4840     return (keymap_direction == priv->resolved_dir) ? strong_pos.x / PANGO_SCALE : weak_pos.x / PANGO_SCALE;
4841 }
4842
4843 static void
4844 gtk_entry_move_cursor (GtkEntry       *entry,
4845                        GtkMovementStep step,
4846                        gint            count,
4847                        gboolean        extend_selection)
4848 {
4849   GtkEntryPrivate *priv = entry->priv;
4850   gint new_pos = priv->current_pos;
4851
4852   _gtk_entry_reset_im_context (entry);
4853
4854   if (priv->current_pos != priv->selection_bound && !extend_selection)
4855     {
4856       /* If we have a current selection and aren't extending it, move to the
4857        * start/or end of the selection as appropriate
4858        */
4859       switch (step)
4860         {
4861         case GTK_MOVEMENT_VISUAL_POSITIONS:
4862           {
4863             gint current_x = get_better_cursor_x (entry, priv->current_pos);
4864             gint bound_x = get_better_cursor_x (entry, priv->selection_bound);
4865
4866             if (count <= 0)
4867               new_pos = current_x < bound_x ? priv->current_pos : priv->selection_bound;
4868             else 
4869               new_pos = current_x > bound_x ? priv->current_pos : priv->selection_bound;
4870             break;
4871           }
4872         case GTK_MOVEMENT_LOGICAL_POSITIONS:
4873         case GTK_MOVEMENT_WORDS:
4874           if (count < 0)
4875             new_pos = MIN (priv->current_pos, priv->selection_bound);
4876           else
4877             new_pos = MAX (priv->current_pos, priv->selection_bound);
4878           break;
4879         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
4880         case GTK_MOVEMENT_PARAGRAPH_ENDS:
4881         case GTK_MOVEMENT_BUFFER_ENDS:
4882           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
4883           break;
4884         case GTK_MOVEMENT_DISPLAY_LINES:
4885         case GTK_MOVEMENT_PARAGRAPHS:
4886         case GTK_MOVEMENT_PAGES:
4887         case GTK_MOVEMENT_HORIZONTAL_PAGES:
4888           break;
4889         }
4890     }
4891   else
4892     {
4893       switch (step)
4894         {
4895         case GTK_MOVEMENT_LOGICAL_POSITIONS:
4896           new_pos = gtk_entry_move_logically (entry, new_pos, count);
4897           break;
4898         case GTK_MOVEMENT_VISUAL_POSITIONS:
4899           new_pos = gtk_entry_move_visually (entry, new_pos, count);
4900           if (priv->current_pos == new_pos)
4901             {
4902               if (!extend_selection)
4903                 {
4904                   if (!gtk_widget_keynav_failed (GTK_WIDGET (entry),
4905                                                  count > 0 ?
4906                                                  GTK_DIR_RIGHT : GTK_DIR_LEFT))
4907                     {
4908                       GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (entry));
4909
4910                       if (toplevel)
4911                         gtk_widget_child_focus (toplevel,
4912                                                 count > 0 ?
4913                                                 GTK_DIR_RIGHT : GTK_DIR_LEFT);
4914                     }
4915                 }
4916               else
4917                 {
4918                   gtk_widget_error_bell (GTK_WIDGET (entry));
4919                 }
4920             }
4921           break;
4922         case GTK_MOVEMENT_WORDS:
4923           while (count > 0)
4924             {
4925               new_pos = gtk_entry_move_forward_word (entry, new_pos, FALSE);
4926               count--;
4927             }
4928           while (count < 0)
4929             {
4930               new_pos = gtk_entry_move_backward_word (entry, new_pos, FALSE);
4931               count++;
4932             }
4933           if (priv->current_pos == new_pos)
4934             gtk_widget_error_bell (GTK_WIDGET (entry));
4935           break;
4936         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
4937         case GTK_MOVEMENT_PARAGRAPH_ENDS:
4938         case GTK_MOVEMENT_BUFFER_ENDS:
4939           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
4940           if (priv->current_pos == new_pos)
4941             gtk_widget_error_bell (GTK_WIDGET (entry));
4942           break;
4943         case GTK_MOVEMENT_DISPLAY_LINES:
4944         case GTK_MOVEMENT_PARAGRAPHS:
4945         case GTK_MOVEMENT_PAGES:
4946         case GTK_MOVEMENT_HORIZONTAL_PAGES:
4947           break;
4948         }
4949     }
4950
4951   if (extend_selection)
4952     gtk_editable_select_region (GTK_EDITABLE (entry), priv->selection_bound, new_pos);
4953   else
4954     gtk_editable_set_position (GTK_EDITABLE (entry), new_pos);
4955   
4956   gtk_entry_pend_cursor_blink (entry);
4957 }
4958
4959 static void
4960 gtk_entry_insert_at_cursor (GtkEntry    *entry,
4961                             const gchar *str)
4962 {
4963   GtkEntryPrivate *priv = entry->priv;
4964   GtkEditable *editable = GTK_EDITABLE (entry);
4965   gint pos = priv->current_pos;
4966
4967   if (priv->editable)
4968     {
4969       _gtk_entry_reset_im_context (entry);
4970
4971       gtk_editable_insert_text (editable, str, -1, &pos);
4972       gtk_editable_set_position (editable, pos);
4973     }
4974 }
4975
4976 static void
4977 gtk_entry_delete_from_cursor (GtkEntry       *entry,
4978                               GtkDeleteType   type,
4979                               gint            count)
4980 {
4981   GtkEntryPrivate *priv = entry->priv;
4982   GtkEditable *editable = GTK_EDITABLE (entry);
4983   gint start_pos = priv->current_pos;
4984   gint end_pos = priv->current_pos;
4985   gint old_n_bytes = gtk_entry_buffer_get_bytes (get_buffer (entry));
4986   
4987   _gtk_entry_reset_im_context (entry);
4988
4989   if (!priv->editable)
4990     {
4991       gtk_widget_error_bell (GTK_WIDGET (entry));
4992       return;
4993     }
4994
4995   if (priv->selection_bound != priv->current_pos)
4996     {
4997       gtk_editable_delete_selection (editable);
4998       return;
4999     }
5000   
5001   switch (type)
5002     {
5003     case GTK_DELETE_CHARS:
5004       end_pos = gtk_entry_move_logically (entry, priv->current_pos, count);
5005       gtk_editable_delete_text (editable, MIN (start_pos, end_pos), MAX (start_pos, end_pos));
5006       break;
5007     case GTK_DELETE_WORDS:
5008       if (count < 0)
5009         {
5010           /* Move to end of current word, or if not on a word, end of previous word */
5011           end_pos = gtk_entry_move_backward_word (entry, end_pos, FALSE);
5012           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5013         }
5014       else if (count > 0)
5015         {
5016           /* Move to beginning of current word, or if not on a word, begining of next word */
5017           start_pos = gtk_entry_move_forward_word (entry, start_pos, FALSE);
5018           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5019         }
5020         
5021       /* Fall through */
5022     case GTK_DELETE_WORD_ENDS:
5023       while (count < 0)
5024         {
5025           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5026           count++;
5027         }
5028       while (count > 0)
5029         {
5030           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5031           count--;
5032         }
5033       gtk_editable_delete_text (editable, start_pos, end_pos);
5034       break;
5035     case GTK_DELETE_DISPLAY_LINE_ENDS:
5036     case GTK_DELETE_PARAGRAPH_ENDS:
5037       if (count < 0)
5038         gtk_editable_delete_text (editable, 0, priv->current_pos);
5039       else
5040         gtk_editable_delete_text (editable, priv->current_pos, -1);
5041       break;
5042     case GTK_DELETE_DISPLAY_LINES:
5043     case GTK_DELETE_PARAGRAPHS:
5044       gtk_editable_delete_text (editable, 0, -1);  
5045       break;
5046     case GTK_DELETE_WHITESPACE:
5047       gtk_entry_delete_whitespace (entry);
5048       break;
5049     }
5050
5051   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == old_n_bytes)
5052     gtk_widget_error_bell (GTK_WIDGET (entry));
5053
5054   gtk_entry_pend_cursor_blink (entry);
5055 }
5056
5057 static void
5058 gtk_entry_backspace (GtkEntry *entry)
5059 {
5060   GtkEntryPrivate *priv = entry->priv;
5061   GtkEditable *editable = GTK_EDITABLE (entry);
5062   gint prev_pos;
5063
5064   _gtk_entry_reset_im_context (entry);
5065
5066   if (!priv->editable)
5067     {
5068       gtk_widget_error_bell (GTK_WIDGET (entry));
5069       return;
5070     }
5071
5072   if (priv->selection_bound != priv->current_pos)
5073     {
5074       gtk_editable_delete_selection (editable);
5075       return;
5076     }
5077
5078   prev_pos = gtk_entry_move_logically (entry, priv->current_pos, -1);
5079
5080   if (prev_pos < priv->current_pos)
5081     {
5082       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
5083       PangoLogAttr *log_attrs;
5084       gint n_attrs;
5085
5086       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
5087
5088       /* Deleting parts of characters */
5089       if (log_attrs[priv->current_pos].backspace_deletes_character)
5090         {
5091           gchar *cluster_text;
5092           gchar *normalized_text;
5093           glong  len;
5094
5095           cluster_text = gtk_entry_get_display_text (entry, prev_pos,
5096                                                      priv->current_pos);
5097           normalized_text = g_utf8_normalize (cluster_text,
5098                                               strlen (cluster_text),
5099                                               G_NORMALIZE_NFD);
5100           len = g_utf8_strlen (normalized_text, -1);
5101
5102           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5103           if (len > 1)
5104             {
5105               gint pos = priv->current_pos;
5106
5107               gtk_editable_insert_text (editable, normalized_text,
5108                                         g_utf8_offset_to_pointer (normalized_text, len - 1) - normalized_text,
5109                                         &pos);
5110               gtk_editable_set_position (editable, pos);
5111             }
5112
5113           g_free (normalized_text);
5114           g_free (cluster_text);
5115         }
5116       else
5117         {
5118           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5119         }
5120       
5121       g_free (log_attrs);
5122     }
5123   else
5124     {
5125       gtk_widget_error_bell (GTK_WIDGET (entry));
5126     }
5127
5128   gtk_entry_pend_cursor_blink (entry);
5129 }
5130
5131 static void
5132 gtk_entry_copy_clipboard (GtkEntry *entry)
5133 {
5134   GtkEntryPrivate *priv = entry->priv;
5135   GtkEditable *editable = GTK_EDITABLE (entry);
5136   gint start, end;
5137   gchar *str;
5138
5139   if (gtk_editable_get_selection_bounds (editable, &start, &end))
5140     {
5141       if (!priv->visible)
5142         {
5143           gtk_widget_error_bell (GTK_WIDGET (entry));
5144           return;
5145         }
5146
5147       str = gtk_entry_get_display_text (entry, start, end);
5148       gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
5149                                                         GDK_SELECTION_CLIPBOARD),
5150                               str, -1);
5151       g_free (str);
5152     }
5153 }
5154
5155 static void
5156 gtk_entry_cut_clipboard (GtkEntry *entry)
5157 {
5158   GtkEntryPrivate *priv = entry->priv;
5159   GtkEditable *editable = GTK_EDITABLE (entry);
5160   gint start, end;
5161
5162   if (!priv->visible)
5163     {
5164       gtk_widget_error_bell (GTK_WIDGET (entry));
5165       return;
5166     }
5167
5168   gtk_entry_copy_clipboard (entry);
5169
5170   if (priv->editable)
5171     {
5172       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5173         gtk_editable_delete_text (editable, start, end);
5174     }
5175   else
5176     {
5177       gtk_widget_error_bell (GTK_WIDGET (entry));
5178     }
5179 }
5180
5181 static void
5182 gtk_entry_paste_clipboard (GtkEntry *entry)
5183 {
5184   GtkEntryPrivate *priv = entry->priv;
5185
5186   if (priv->editable)
5187     gtk_entry_paste (entry, GDK_SELECTION_CLIPBOARD);
5188   else
5189     gtk_widget_error_bell (GTK_WIDGET (entry));
5190 }
5191
5192 static void
5193 gtk_entry_delete_cb (GtkEntry *entry)
5194 {
5195   GtkEntryPrivate *priv = entry->priv;
5196   GtkEditable *editable = GTK_EDITABLE (entry);
5197   gint start, end;
5198
5199   if (priv->editable)
5200     {
5201       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5202         gtk_editable_delete_text (editable, start, end);
5203     }
5204 }
5205
5206 static void
5207 gtk_entry_toggle_overwrite (GtkEntry *entry)
5208 {
5209   GtkEntryPrivate *priv = entry->priv;
5210
5211   priv->overwrite_mode = !priv->overwrite_mode;
5212   gtk_entry_pend_cursor_blink (entry);
5213   gtk_widget_queue_draw (GTK_WIDGET (entry));
5214 }
5215
5216 static void
5217 gtk_entry_select_all (GtkEntry *entry)
5218 {
5219   gtk_entry_select_line (entry);
5220 }
5221
5222 static void
5223 gtk_entry_real_activate (GtkEntry *entry)
5224 {
5225   GtkEntryPrivate *priv = entry->priv;
5226   GtkWindow *window;
5227   GtkWidget *default_widget, *focus_widget;
5228   GtkWidget *toplevel;
5229   GtkWidget *widget;
5230
5231   widget = GTK_WIDGET (entry);
5232
5233   if (priv->activates_default)
5234     {
5235       toplevel = gtk_widget_get_toplevel (widget);
5236       if (GTK_IS_WINDOW (toplevel))
5237         {
5238           window = GTK_WINDOW (toplevel);
5239
5240           if (window)
5241             {
5242               default_widget = gtk_window_get_default_widget (window);
5243               focus_widget = gtk_window_get_focus (window);
5244               if (widget != default_widget &&
5245                   !(widget == focus_widget && (!default_widget || !gtk_widget_get_sensitive (default_widget))))
5246                 gtk_window_activate_default (window);
5247             }
5248         }
5249     }
5250 }
5251
5252 static void
5253 keymap_direction_changed (GdkKeymap *keymap,
5254                           GtkEntry  *entry)
5255 {
5256   gtk_entry_recompute (entry);
5257 }
5258
5259 /* IM Context Callbacks
5260  */
5261
5262 static void
5263 gtk_entry_commit_cb (GtkIMContext *context,
5264                      const gchar  *str,
5265                      GtkEntry     *entry)
5266 {
5267   GtkEntryPrivate *priv = entry->priv;
5268
5269   if (priv->editable)
5270     gtk_entry_enter_text (entry, str);
5271 }
5272
5273 static void 
5274 gtk_entry_preedit_changed_cb (GtkIMContext *context,
5275                               GtkEntry     *entry)
5276 {
5277   GtkEntryPrivate *priv = entry->priv;
5278
5279   if (priv->editable)
5280     {
5281       gchar *preedit_string;
5282       gint cursor_pos;
5283
5284       gtk_im_context_get_preedit_string (priv->im_context,
5285                                          &preedit_string, NULL,
5286                                          &cursor_pos);
5287       g_signal_emit (entry, signals[PREEDIT_CHANGED], 0, preedit_string);
5288       priv->preedit_length = strlen (preedit_string);
5289       cursor_pos = CLAMP (cursor_pos, 0, g_utf8_strlen (preedit_string, -1));
5290       priv->preedit_cursor = cursor_pos;
5291       g_free (preedit_string);
5292     
5293       gtk_entry_recompute (entry);
5294     }
5295 }
5296
5297 static gboolean
5298 gtk_entry_retrieve_surrounding_cb (GtkIMContext *context,
5299                                    GtkEntry     *entry)
5300 {
5301   GtkEntryPrivate *priv = entry->priv;
5302   gchar *text;
5303
5304   /* XXXX ??? does this even make sense when text is not visible? Should we return FALSE? */
5305   text = gtk_entry_get_display_text (entry, 0, -1);
5306   gtk_im_context_set_surrounding (context, text, strlen (text), /* Length in bytes */
5307                                   g_utf8_offset_to_pointer (text, priv->current_pos) - text);
5308   g_free (text);
5309
5310   return TRUE;
5311 }
5312
5313 static gboolean
5314 gtk_entry_delete_surrounding_cb (GtkIMContext *slave,
5315                                  gint          offset,
5316                                  gint          n_chars,
5317                                  GtkEntry     *entry)
5318 {
5319   GtkEntryPrivate *priv = entry->priv;
5320
5321   if (priv->editable)
5322     gtk_editable_delete_text (GTK_EDITABLE (entry),
5323                               priv->current_pos + offset,
5324                               priv->current_pos + offset + n_chars);
5325
5326   return TRUE;
5327 }
5328
5329 /* Internal functions
5330  */
5331
5332 /* Used for im_commit_cb and inserting Unicode chars */
5333 static void
5334 gtk_entry_enter_text (GtkEntry       *entry,
5335                       const gchar    *str)
5336 {
5337   GtkEntryPrivate *priv = entry->priv;
5338   GtkEditable *editable = GTK_EDITABLE (entry);
5339   gint tmp_pos;
5340   gboolean old_need_im_reset;
5341
5342   old_need_im_reset = priv->need_im_reset;
5343   priv->need_im_reset = FALSE;
5344
5345   if (gtk_editable_get_selection_bounds (editable, NULL, NULL))
5346     gtk_editable_delete_selection (editable);
5347   else
5348     {
5349       if (priv->overwrite_mode)
5350         gtk_entry_delete_from_cursor (entry, GTK_DELETE_CHARS, 1);
5351     }
5352
5353   tmp_pos = priv->current_pos;
5354   gtk_editable_insert_text (editable, str, strlen (str), &tmp_pos);
5355   gtk_editable_set_position (editable, tmp_pos);
5356
5357   priv->need_im_reset = old_need_im_reset;
5358 }
5359
5360 /* All changes to priv->current_pos and priv->selection_bound
5361  * should go through this function.
5362  */
5363 static void
5364 gtk_entry_set_positions (GtkEntry *entry,
5365                          gint      current_pos,
5366                          gint      selection_bound)
5367 {
5368   GtkEntryPrivate *priv = entry->priv;
5369   gboolean changed = FALSE;
5370
5371   g_object_freeze_notify (G_OBJECT (entry));
5372   
5373   if (current_pos != -1 &&
5374       priv->current_pos != current_pos)
5375     {
5376       priv->current_pos = current_pos;
5377       changed = TRUE;
5378
5379       g_object_notify (G_OBJECT (entry), "cursor-position");
5380     }
5381
5382   if (selection_bound != -1 &&
5383       priv->selection_bound != selection_bound)
5384     {
5385       priv->selection_bound = selection_bound;
5386       changed = TRUE;
5387       
5388       g_object_notify (G_OBJECT (entry), "selection-bound");
5389     }
5390
5391   g_object_thaw_notify (G_OBJECT (entry));
5392
5393   if (changed) 
5394     {
5395       gtk_entry_move_adjustments (entry);
5396       gtk_entry_recompute (entry);
5397     }
5398 }
5399
5400 static void
5401 gtk_entry_reset_layout (GtkEntry *entry)
5402 {
5403   GtkEntryPrivate *priv = entry->priv;
5404
5405   if (priv->cached_layout)
5406     {
5407       g_object_unref (priv->cached_layout);
5408       priv->cached_layout = NULL;
5409     }
5410 }
5411
5412 static void
5413 update_im_cursor_location (GtkEntry *entry)
5414 {
5415   GtkEntryPrivate *priv = entry->priv;
5416   GdkRectangle area;
5417   gint strong_x;
5418   gint strong_xoffset;
5419   gint area_width, area_height;
5420
5421   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
5422   gtk_entry_get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5423
5424   strong_xoffset = strong_x - priv->scroll_offset;
5425   if (strong_xoffset < 0)
5426     {
5427       strong_xoffset = 0;
5428     }
5429   else if (strong_xoffset > area_width)
5430     {
5431       strong_xoffset = area_width;
5432     }
5433   area.x = strong_xoffset;
5434   area.y = 0;
5435   area.width = 0;
5436   area.height = area_height;
5437
5438   gtk_im_context_set_cursor_location (priv->im_context, &area);
5439 }
5440
5441 static gboolean
5442 recompute_idle_func (gpointer data)
5443 {
5444   GtkEntry *entry = GTK_ENTRY (data);
5445   GtkEntryPrivate *priv = entry->priv;
5446
5447   priv->recompute_idle = 0;
5448
5449   if (gtk_widget_has_screen (GTK_WIDGET (entry)))
5450     {
5451       gtk_entry_adjust_scroll (entry);
5452       gtk_widget_queue_draw (GTK_WIDGET (entry));
5453
5454       update_im_cursor_location (entry);
5455     }
5456
5457   return FALSE;
5458 }
5459
5460 static void
5461 gtk_entry_recompute (GtkEntry *entry)
5462 {
5463   GtkEntryPrivate *priv = entry->priv;
5464
5465   gtk_entry_reset_layout (entry);
5466   gtk_entry_check_cursor_blink (entry);
5467
5468   if (!priv->recompute_idle)
5469     {
5470       priv->recompute_idle = gdk_threads_add_idle_full (G_PRIORITY_HIGH_IDLE + 15, /* between resize and redraw */
5471                                                recompute_idle_func, entry, NULL); 
5472     }
5473 }
5474
5475 static void
5476 gtk_entry_get_placeholder_text_color (GtkEntry   *entry,
5477                                       PangoColor *color)
5478 {
5479   GtkWidget *widget = GTK_WIDGET (entry);
5480   GtkStyleContext *context;
5481   GdkRGBA fg = { 0.5, 0.5, 0.5 };
5482
5483   context = gtk_widget_get_style_context (widget);
5484   gtk_style_context_lookup_color (context, "placeholder_text_color", &fg);
5485
5486   color->red = CLAMP (fg.red * 65535. + 0.5, 0, 65535);
5487   color->green = CLAMP (fg.green * 65535. + 0.5, 0, 65535);
5488   color->blue = CLAMP (fg.blue * 65535. + 0.5, 0, 65535);
5489 }
5490
5491 static inline gboolean
5492 show_placeholder_text (GtkEntry *entry)
5493 {
5494   GtkEntryPrivate *priv = entry->priv;
5495
5496   if (!gtk_widget_has_focus (GTK_WIDGET (entry)) &&
5497       gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
5498       priv->placeholder_text != NULL)
5499     return TRUE;
5500
5501   return FALSE;
5502 }
5503
5504 static PangoLayout *
5505 gtk_entry_create_layout (GtkEntry *entry,
5506                          gboolean  include_preedit)
5507 {
5508   GtkEntryPrivate *priv = entry->priv;
5509   GtkWidget *widget = GTK_WIDGET (entry);
5510   PangoLayout *layout = gtk_widget_create_pango_layout (widget, NULL);
5511   PangoAttrList *tmp_attrs = pango_attr_list_new ();
5512   gboolean placeholder_layout = show_placeholder_text (entry);
5513
5514   gchar *preedit_string = NULL;
5515   gint preedit_length = 0;
5516   PangoAttrList *preedit_attrs = NULL;
5517
5518   gchar *display;
5519   guint n_bytes;
5520
5521   pango_layout_set_single_paragraph_mode (layout, TRUE);
5522
5523   display = placeholder_layout ? g_strdup (priv->placeholder_text) : gtk_entry_get_display_text (entry, 0, -1);
5524   n_bytes = strlen (display);
5525
5526   if (!placeholder_layout && include_preedit)
5527     {
5528       gtk_im_context_get_preedit_string (priv->im_context,
5529                                          &preedit_string, &preedit_attrs, NULL);
5530       preedit_length = priv->preedit_length;
5531     }
5532   else if (placeholder_layout)
5533     {
5534       PangoColor color;
5535       PangoAttribute *attr;
5536
5537       gtk_entry_get_placeholder_text_color (entry, &color);
5538       attr = pango_attr_foreground_new (color.red, color.green, color.blue);
5539       attr->start_index = 0;
5540       attr->end_index = G_MAXINT;
5541       pango_attr_list_insert (tmp_attrs, attr);
5542     }
5543
5544   if (preedit_length)
5545     {
5546       GString *tmp_string = g_string_new (display);
5547       gint cursor_index = g_utf8_offset_to_pointer (display, priv->current_pos) - display;
5548
5549       g_string_insert (tmp_string, cursor_index, preedit_string);
5550       
5551       pango_layout_set_text (layout, tmp_string->str, tmp_string->len);
5552       
5553       pango_attr_list_splice (tmp_attrs, preedit_attrs,
5554                               cursor_index, preedit_length);
5555       
5556       g_string_free (tmp_string, TRUE);
5557     }
5558   else
5559     {
5560       PangoDirection pango_dir;
5561       
5562       if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL)
5563         pango_dir = pango_find_base_dir (display, n_bytes);
5564       else
5565         pango_dir = PANGO_DIRECTION_NEUTRAL;
5566
5567       if (pango_dir == PANGO_DIRECTION_NEUTRAL)
5568         {
5569           if (gtk_widget_has_focus (widget))
5570             {
5571               GdkDisplay *display = gtk_widget_get_display (widget);
5572               GdkKeymap *keymap = gdk_keymap_get_for_display (display);
5573               if (gdk_keymap_get_direction (keymap) == PANGO_DIRECTION_RTL)
5574                 pango_dir = PANGO_DIRECTION_RTL;
5575               else
5576                 pango_dir = PANGO_DIRECTION_LTR;
5577             }
5578           else
5579             {
5580               if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
5581                 pango_dir = PANGO_DIRECTION_RTL;
5582               else
5583                 pango_dir = PANGO_DIRECTION_LTR;
5584             }
5585         }
5586
5587       pango_context_set_base_dir (gtk_widget_get_pango_context (widget),
5588                                   pango_dir);
5589
5590       priv->resolved_dir = pango_dir;
5591
5592       pango_layout_set_text (layout, display, n_bytes);
5593     }
5594       
5595   pango_layout_set_attributes (layout, tmp_attrs);
5596
5597   g_free (preedit_string);
5598   g_free (display);
5599
5600   if (preedit_attrs)
5601     pango_attr_list_unref (preedit_attrs);
5602       
5603   pango_attr_list_unref (tmp_attrs);
5604
5605   return layout;
5606 }
5607
5608 static PangoLayout *
5609 gtk_entry_ensure_layout (GtkEntry *entry,
5610                          gboolean  include_preedit)
5611 {
5612   GtkEntryPrivate *priv = entry->priv;
5613
5614   if (priv->preedit_length > 0 &&
5615       !include_preedit != !priv->cache_includes_preedit)
5616     gtk_entry_reset_layout (entry);
5617
5618   if (!priv->cached_layout)
5619     {
5620       priv->cached_layout = gtk_entry_create_layout (entry, include_preedit);
5621       priv->cache_includes_preedit = include_preedit;
5622     }
5623
5624   return priv->cached_layout;
5625 }
5626
5627 static void
5628 get_layout_position (GtkEntry *entry,
5629                      gint     *x,
5630                      gint     *y)
5631 {
5632   GtkEntryPrivate *priv = entry->priv;
5633   PangoLayout *layout;
5634   PangoRectangle logical_rect;
5635   gint area_width, area_height;
5636   GtkBorder inner_border;
5637   gint y_pos;
5638   PangoLayoutLine *line;
5639   
5640   layout = gtk_entry_ensure_layout (entry, TRUE);
5641
5642   gtk_entry_get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5643   _gtk_entry_effective_inner_border (entry, &inner_border);
5644
5645   area_height = PANGO_SCALE * (area_height - inner_border.top - inner_border.bottom);
5646
5647   line = pango_layout_get_lines_readonly (layout)->data;
5648   pango_layout_line_get_extents (line, NULL, &logical_rect);
5649   
5650   /* Align primarily for locale's ascent/descent */
5651   y_pos = ((area_height - priv->ascent - priv->descent) / 2 +
5652            priv->ascent + logical_rect.y);
5653
5654   /* Now see if we need to adjust to fit in actual drawn string */
5655   if (logical_rect.height > area_height)
5656     y_pos = (area_height - logical_rect.height) / 2;
5657   else if (y_pos < 0)
5658     y_pos = 0;
5659   else if (y_pos + logical_rect.height > area_height)
5660     y_pos = area_height - logical_rect.height;
5661   
5662   y_pos = inner_border.top + y_pos / PANGO_SCALE;
5663
5664   if (x)
5665     *x = inner_border.left - priv->scroll_offset;
5666
5667   if (y)
5668     *y = y_pos;
5669 }
5670
5671 static void
5672 draw_text_with_color (GtkEntry *entry,
5673                       cairo_t  *cr,
5674                       GdkRGBA  *default_color)
5675 {
5676   GtkEntryPrivate *priv = entry->priv;
5677   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
5678   GtkWidget *widget;
5679   gint x, y;
5680   gint start_pos, end_pos;
5681
5682   widget = GTK_WIDGET (entry);
5683
5684   cairo_save (cr);
5685
5686   get_layout_position (entry, &x, &y);
5687
5688   cairo_move_to (cr, x, y);
5689   gdk_cairo_set_source_rgba (cr, default_color);
5690   pango_cairo_show_layout (cr, layout);
5691
5692   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start_pos, &end_pos))
5693     {
5694       gint *ranges;
5695       gint n_ranges, i;
5696       PangoRectangle logical_rect;
5697       GdkRGBA selection_color, text_color;
5698       GtkBorder inner_border;
5699       GtkStyleContext *context;
5700       GtkStateFlags state;
5701
5702       context = gtk_widget_get_style_context (widget);
5703       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
5704       gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
5705
5706       state = GTK_STATE_FLAG_SELECTED;
5707
5708       if (gtk_widget_has_focus (widget))
5709         state |= GTK_STATE_FLAG_FOCUSED;
5710
5711       gtk_style_context_get_background_color (context, state, &selection_color);
5712       gtk_style_context_get_color (context, state, &text_color);
5713
5714       _gtk_entry_effective_inner_border (entry, &inner_border);
5715
5716       for (i = 0; i < n_ranges; ++i)
5717         cairo_rectangle (cr,
5718                          inner_border.left - priv->scroll_offset + ranges[2 * i],
5719                          y,
5720                          ranges[2 * i + 1],
5721                          logical_rect.height);
5722
5723       cairo_clip (cr);
5724           
5725       gdk_cairo_set_source_rgba (cr, &selection_color);
5726       cairo_paint (cr);
5727
5728       cairo_move_to (cr, x, y);
5729       gdk_cairo_set_source_rgba (cr, &text_color);
5730       pango_cairo_show_layout (cr, layout);
5731   
5732       g_free (ranges);
5733     }
5734   cairo_restore (cr);
5735 }
5736
5737 static void
5738 gtk_entry_draw_text (GtkEntry *entry,
5739                      cairo_t  *cr)
5740 {
5741   GtkEntryPrivate *priv = entry->priv;
5742   GtkWidget *widget = GTK_WIDGET (entry);
5743   GtkStateFlags state = 0;
5744   GdkRGBA text_color, bar_text_color;
5745   GtkStyleContext *context;
5746   gint pos_x, pos_y;
5747   gint width, height;
5748   gint progress_x, progress_y, progress_width, progress_height;
5749   gint clip_width, clip_height;
5750
5751   /* Nothing to display at all */
5752   if (gtk_entry_get_display_mode (entry) == DISPLAY_BLANK)
5753     return;
5754
5755   state = gtk_widget_get_state_flags (widget);
5756   context = gtk_widget_get_style_context (widget);
5757
5758   gtk_style_context_get_color (context, state, &text_color);
5759
5760   /* Get foreground color for progressbars */
5761   gtk_style_context_save (context);
5762   gtk_style_context_add_class (context, GTK_STYLE_CLASS_PROGRESSBAR);
5763   gtk_style_context_get_color (context, state, &bar_text_color);
5764   gtk_style_context_restore (context);
5765
5766   get_progress_area (widget,
5767                      &progress_x, &progress_y,
5768                      &progress_width, &progress_height);
5769
5770   cairo_save (cr);
5771
5772   clip_width = gdk_window_get_width (priv->text_area);
5773   clip_height = gdk_window_get_height (priv->text_area);
5774   cairo_rectangle (cr, 0, 0, clip_width, clip_height);
5775   cairo_clip (cr);
5776
5777   /* If the color is the same, or the progress area has a zero
5778    * size, then we only need to draw once. */
5779   if (gdk_rgba_equal (&text_color, &bar_text_color) ||
5780       ((progress_width == 0) || (progress_height == 0)))
5781     {
5782       draw_text_with_color (entry, cr, &text_color);
5783     }
5784   else
5785     {
5786       width = gdk_window_get_width (priv->text_area);
5787       height = gdk_window_get_height (priv->text_area);
5788
5789       cairo_save (cr);
5790
5791       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
5792       cairo_rectangle (cr, 0, 0, width, height);
5793
5794       gdk_window_get_position (priv->text_area, &pos_x, &pos_y);
5795       progress_x -= pos_x;
5796       progress_y -= pos_y;
5797
5798       cairo_rectangle (cr, progress_x, progress_y,
5799                        progress_width, progress_height);
5800       cairo_clip (cr);
5801       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_WINDING);
5802   
5803       draw_text_with_color (entry, cr, &text_color);
5804       cairo_restore (cr);
5805
5806       cairo_save (cr);
5807
5808       cairo_rectangle (cr, progress_x, progress_y,
5809                        progress_width, progress_height);
5810       cairo_clip (cr);
5811
5812       draw_text_with_color (entry, cr, &bar_text_color);
5813
5814       cairo_restore (cr);
5815     }
5816
5817   cairo_restore (cr);
5818 }
5819
5820 static void
5821 draw_insertion_cursor (GtkEntry      *entry,
5822                        cairo_t       *cr,
5823                        GdkRectangle  *cursor_location,
5824                        gboolean       is_primary,
5825                        PangoDirection direction,
5826                        gboolean       draw_arrow)
5827 {
5828   GtkWidget *widget = GTK_WIDGET (entry);
5829   GtkTextDirection text_dir;
5830
5831   if (direction == PANGO_DIRECTION_LTR)
5832     text_dir = GTK_TEXT_DIR_LTR;
5833   else
5834     text_dir = GTK_TEXT_DIR_RTL;
5835
5836   gtk_draw_insertion_cursor (widget, cr,
5837                              cursor_location,
5838                              is_primary, text_dir, draw_arrow);
5839 }
5840
5841 static void
5842 gtk_entry_draw_cursor (GtkEntry  *entry,
5843                        cairo_t   *cr,
5844                        CursorType type)
5845 {
5846   GtkEntryPrivate *priv = entry->priv;
5847   GtkWidget *widget = GTK_WIDGET (entry);
5848   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
5849   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
5850   GdkRectangle cursor_location;
5851   gboolean split_cursor;
5852   PangoRectangle cursor_rect;
5853   GtkBorder inner_border;
5854   gint xoffset;
5855   gint text_area_height;
5856   gint cursor_index;
5857   gboolean block;
5858   gboolean block_at_line_end;
5859   PangoLayout *layout;
5860   const char *text;
5861
5862   _gtk_entry_effective_inner_border (entry, &inner_border);
5863
5864   xoffset = inner_border.left - priv->scroll_offset;
5865
5866   text_area_height = gdk_window_get_height (priv->text_area);
5867
5868   layout = gtk_entry_ensure_layout (entry, TRUE);
5869   text = pango_layout_get_text (layout);
5870   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
5871   if (!priv->overwrite_mode)
5872     block = FALSE;
5873   else
5874     block = _gtk_text_util_get_block_cursor_location (layout,
5875                                                       cursor_index, &cursor_rect, &block_at_line_end);
5876
5877   if (!block)
5878     {
5879       gint strong_x, weak_x;
5880       PangoDirection dir1 = PANGO_DIRECTION_NEUTRAL;
5881       PangoDirection dir2 = PANGO_DIRECTION_NEUTRAL;
5882       gint x1 = 0;
5883       gint x2 = 0;
5884
5885       gtk_entry_get_cursor_locations (entry, type, &strong_x, &weak_x);
5886
5887       g_object_get (gtk_widget_get_settings (widget),
5888                     "gtk-split-cursor", &split_cursor,
5889                     NULL);
5890
5891       dir1 = priv->resolved_dir;
5892   
5893       if (split_cursor)
5894         {
5895           x1 = strong_x;
5896
5897           if (weak_x != strong_x)
5898             {
5899               dir2 = (priv->resolved_dir == PANGO_DIRECTION_LTR) ? PANGO_DIRECTION_RTL : PANGO_DIRECTION_LTR;
5900               x2 = weak_x;
5901             }
5902         }
5903       else
5904         {
5905           if (keymap_direction == priv->resolved_dir)
5906             x1 = strong_x;
5907           else
5908             x1 = weak_x;
5909         }
5910
5911       cursor_location.x = xoffset + x1;
5912       cursor_location.y = inner_border.top;
5913       cursor_location.width = 0;
5914       cursor_location.height = text_area_height - inner_border.top - inner_border.bottom;
5915
5916       draw_insertion_cursor (entry, cr,
5917                              &cursor_location, TRUE, dir1,
5918                              dir2 != PANGO_DIRECTION_NEUTRAL);
5919   
5920       if (dir2 != PANGO_DIRECTION_NEUTRAL)
5921         {
5922           cursor_location.x = xoffset + x2;
5923           draw_insertion_cursor (entry, cr,
5924                                  &cursor_location, FALSE, dir2,
5925                                  TRUE);
5926         }
5927     }
5928   else /* overwrite_mode */
5929     {
5930       GtkStyleContext *context;
5931       GdkRGBA cursor_color;
5932       GdkRectangle rect;
5933       gint x, y;
5934
5935       cairo_save (cr);
5936
5937       get_layout_position (entry, &x, &y);
5938
5939       rect.x = PANGO_PIXELS (cursor_rect.x) + x;
5940       rect.y = PANGO_PIXELS (cursor_rect.y) + y;
5941       rect.width = PANGO_PIXELS (cursor_rect.width);
5942       rect.height = PANGO_PIXELS (cursor_rect.height);
5943
5944       context = gtk_widget_get_style_context (widget);
5945
5946       _gtk_style_context_get_cursor_color (context, &cursor_color, NULL);
5947       gdk_cairo_set_source_rgba (cr, &cursor_color);
5948       gdk_cairo_rectangle (cr, &rect);
5949       cairo_fill (cr);
5950
5951       if (!block_at_line_end)
5952         {
5953           GtkStateFlags state;
5954           GdkRGBA color;
5955
5956           state = gtk_widget_get_state_flags (widget);
5957           gtk_style_context_get_background_color (context, state, &color);
5958
5959           gdk_cairo_rectangle (cr, &rect);
5960           cairo_clip (cr);
5961           cairo_move_to (cr, x, y);
5962           gdk_cairo_set_source_rgba (cr, &color);
5963           pango_cairo_show_layout (cr, layout);
5964         }
5965
5966       cairo_restore (cr);
5967     }
5968 }
5969
5970 void
5971 _gtk_entry_reset_im_context (GtkEntry *entry)
5972 {
5973   GtkEntryPrivate *priv = entry->priv;
5974
5975   if (priv->need_im_reset)
5976     {
5977       priv->need_im_reset = FALSE;
5978       gtk_im_context_reset (priv->im_context);
5979     }
5980 }
5981
5982 /**
5983  * gtk_entry_reset_im_context:
5984  * @entry: a #GtkEntry
5985  *
5986  * Reset the input method context of the entry if needed.
5987  *
5988  * This can be necessary in the case where modifying the buffer
5989  * would confuse on-going input method behavior.
5990  *
5991  * Since: 2.22
5992  */
5993 void
5994 gtk_entry_reset_im_context (GtkEntry *entry)
5995 {
5996   g_return_if_fail (GTK_IS_ENTRY (entry));
5997
5998   _gtk_entry_reset_im_context (entry);
5999 }
6000
6001 /**
6002  * gtk_entry_im_context_filter_keypress:
6003  * @entry: a #GtkEntry
6004  * @event: (type Gdk.EventKey): the key event
6005  *
6006  * Allow the #GtkEntry input method to internally handle key press
6007  * and release events. If this function returns %TRUE, then no further
6008  * processing should be done for this key event. See
6009  * gtk_im_context_filter_keypress().
6010  *
6011  * Note that you are expected to call this function from your handler
6012  * when overriding key event handling. This is needed in the case when
6013  * you need to insert your own key handling between the input method
6014  * and the default key event handling of the #GtkEntry.
6015  * See gtk_text_view_reset_im_context() for an example of use.
6016  *
6017  * Return value: %TRUE if the input method handled the key event.
6018  *
6019  * Since: 2.22
6020  */
6021 gboolean
6022 gtk_entry_im_context_filter_keypress (GtkEntry    *entry,
6023                                       GdkEventKey *event)
6024 {
6025   GtkEntryPrivate *priv;
6026
6027   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
6028
6029   priv = entry->priv;
6030
6031   return gtk_im_context_filter_keypress (priv->im_context, event);
6032 }
6033
6034 GtkIMContext*
6035 _gtk_entry_get_im_context (GtkEntry *entry)
6036 {
6037   return entry->priv->im_context;
6038 }
6039
6040 static gint
6041 gtk_entry_find_position (GtkEntry *entry,
6042                          gint      x)
6043 {
6044   GtkEntryPrivate *priv = entry->priv;
6045   PangoLayout *layout;
6046   PangoLayoutLine *line;
6047   gint index;
6048   gint pos;
6049   gint trailing;
6050   const gchar *text;
6051   gint cursor_index;
6052   
6053   layout = gtk_entry_ensure_layout (entry, TRUE);
6054   text = pango_layout_get_text (layout);
6055   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
6056
6057   line = pango_layout_get_lines_readonly (layout)->data;
6058   pango_layout_line_x_to_index (line, x * PANGO_SCALE, &index, &trailing);
6059
6060   if (index >= cursor_index && priv->preedit_length)
6061     {
6062       if (index >= cursor_index + priv->preedit_length)
6063         index -= priv->preedit_length;
6064       else
6065         {
6066           index = cursor_index;
6067           trailing = 0;
6068         }
6069     }
6070
6071   pos = g_utf8_pointer_to_offset (text, text + index);
6072   pos += trailing;
6073
6074   return pos;
6075 }
6076
6077 static void
6078 gtk_entry_get_cursor_locations (GtkEntry   *entry,
6079                                 CursorType  type,
6080                                 gint       *strong_x,
6081                                 gint       *weak_x)
6082 {
6083   GtkEntryPrivate *priv = entry->priv;
6084   DisplayMode mode = gtk_entry_get_display_mode (entry);
6085
6086   /* Nothing to display at all, so no cursor is relevant */
6087   if (mode == DISPLAY_BLANK)
6088     {
6089       if (strong_x)
6090         *strong_x = 0;
6091       
6092       if (weak_x)
6093         *weak_x = 0;
6094     }
6095   else
6096     {
6097       PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
6098       const gchar *text = pango_layout_get_text (layout);
6099       PangoRectangle strong_pos, weak_pos;
6100       gint index;
6101   
6102       if (type == CURSOR_STANDARD)
6103         {
6104           index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
6105         }
6106       else /* type == CURSOR_DND */
6107         {
6108           index = g_utf8_offset_to_pointer (text, priv->dnd_position) - text;
6109
6110           if (priv->dnd_position > priv->current_pos)
6111             {
6112               if (mode == DISPLAY_NORMAL)
6113                 index += priv->preedit_length;
6114               else
6115                 {
6116                   gint preedit_len_chars = g_utf8_strlen (text, -1) - gtk_entry_buffer_get_length (get_buffer (entry));
6117                   index += preedit_len_chars * g_unichar_to_utf8 (priv->invisible_char, NULL);
6118                 }
6119             }
6120         }
6121       
6122       pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
6123       
6124       if (strong_x)
6125         *strong_x = strong_pos.x / PANGO_SCALE;
6126       
6127       if (weak_x)
6128         *weak_x = weak_pos.x / PANGO_SCALE;
6129     }
6130 }
6131
6132 static void
6133 gtk_entry_adjust_scroll (GtkEntry *entry)
6134 {
6135   GtkEntryPrivate *priv = entry->priv;
6136   gint min_offset, max_offset;
6137   gint text_area_width, text_width;
6138   GtkBorder inner_border;
6139   gint strong_x, weak_x;
6140   gint strong_xoffset, weak_xoffset;
6141   gfloat xalign;
6142   PangoLayout *layout;
6143   PangoLayoutLine *line;
6144   PangoRectangle logical_rect;
6145
6146   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6147     return;
6148
6149   _gtk_entry_effective_inner_border (entry, &inner_border);
6150
6151   text_area_width = gdk_window_get_width (priv->text_area);
6152   text_area_width -= inner_border.left + inner_border.right;
6153   if (text_area_width < 0)
6154     text_area_width = 0;
6155
6156   layout = gtk_entry_ensure_layout (entry, TRUE);
6157   line = pango_layout_get_lines_readonly (layout)->data;
6158
6159   pango_layout_line_get_extents (line, NULL, &logical_rect);
6160
6161   /* Display as much text as we can */
6162
6163   if (priv->resolved_dir == PANGO_DIRECTION_LTR)
6164       xalign = priv->xalign;
6165   else
6166       xalign = 1.0 - priv->xalign;
6167
6168   text_width = PANGO_PIXELS(logical_rect.width);
6169
6170   if (text_width > text_area_width)
6171     {
6172       min_offset = 0;
6173       max_offset = text_width - text_area_width;
6174     }
6175   else
6176     {
6177       min_offset = (text_width - text_area_width) * xalign;
6178       max_offset = min_offset;
6179     }
6180
6181   priv->scroll_offset = CLAMP (priv->scroll_offset, min_offset, max_offset);
6182
6183   /* And make sure cursors are on screen. Note that the cursor is
6184    * actually drawn one pixel into the INNER_BORDER space on
6185    * the right, when the scroll is at the utmost right. This
6186    * looks better to to me than confining the cursor inside the
6187    * border entirely, though it means that the cursor gets one
6188    * pixel closer to the edge of the widget on the right than
6189    * on the left. This might need changing if one changed
6190    * INNER_BORDER from 2 to 1, as one would do on a
6191    * small-screen-real-estate display.
6192    *
6193    * We always make sure that the strong cursor is on screen, and
6194    * put the weak cursor on screen if possible.
6195    */
6196
6197   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, &weak_x);
6198   
6199   strong_xoffset = strong_x - priv->scroll_offset;
6200
6201   if (strong_xoffset < 0)
6202     {
6203       priv->scroll_offset += strong_xoffset;
6204       strong_xoffset = 0;
6205     }
6206   else if (strong_xoffset > text_area_width)
6207     {
6208       priv->scroll_offset += strong_xoffset - text_area_width;
6209       strong_xoffset = text_area_width;
6210     }
6211
6212   weak_xoffset = weak_x - priv->scroll_offset;
6213
6214   if (weak_xoffset < 0 && strong_xoffset - weak_xoffset <= text_area_width)
6215     {
6216       priv->scroll_offset += weak_xoffset;
6217     }
6218   else if (weak_xoffset > text_area_width &&
6219            strong_xoffset - (weak_xoffset - text_area_width) >= 0)
6220     {
6221       priv->scroll_offset += weak_xoffset - text_area_width;
6222     }
6223
6224   g_object_notify (G_OBJECT (entry), "scroll-offset");
6225 }
6226
6227 static void
6228 gtk_entry_move_adjustments (GtkEntry *entry)
6229 {
6230   GtkWidget *widget = GTK_WIDGET (entry);
6231   GtkAllocation allocation;
6232   GtkAdjustment *adjustment;
6233   PangoContext *context;
6234   PangoFontMetrics *metrics;
6235   GtkStyleContext *style_context;
6236   GtkStateFlags state;
6237   gint x, layout_x, border_x, border_y;
6238   gint char_width;
6239
6240   adjustment = g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
6241   if (!adjustment)
6242     return;
6243
6244   gtk_widget_get_allocation (widget, &allocation);
6245
6246   /* Cursor position, layout offset, border width, and widget allocation */
6247   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &x, NULL);
6248   get_layout_position (entry, &layout_x, NULL);
6249   _gtk_entry_get_borders (entry, &border_x, &border_y);
6250   x += allocation.x + layout_x + border_x;
6251
6252   /* Approximate width of a char, so user can see what is ahead/behind */
6253   context = gtk_widget_get_pango_context (widget);
6254   style_context = gtk_widget_get_style_context (widget);
6255   state = gtk_widget_get_state_flags (widget);
6256
6257   metrics = pango_context_get_metrics (context,
6258                                        gtk_style_context_get_font (style_context, state),
6259                                        pango_context_get_language (context));
6260   char_width = pango_font_metrics_get_approximate_char_width (metrics) / PANGO_SCALE;
6261
6262   /* Scroll it */
6263   gtk_adjustment_clamp_page (adjustment, 
6264                              x - (char_width + 1),   /* one char + one pixel before */
6265                              x + (char_width + 2));  /* one char + cursor + one pixel after */
6266 }
6267
6268 static gint
6269 gtk_entry_move_visually (GtkEntry *entry,
6270                          gint      start,
6271                          gint      count)
6272 {
6273   GtkEntryPrivate *priv = entry->priv;
6274   gint index;
6275   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6276   const gchar *text;
6277
6278   text = pango_layout_get_text (layout);
6279   
6280   index = g_utf8_offset_to_pointer (text, start) - text;
6281
6282   while (count != 0)
6283     {
6284       int new_index, new_trailing;
6285       gboolean split_cursor;
6286       gboolean strong;
6287
6288       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
6289                     "gtk-split-cursor", &split_cursor,
6290                     NULL);
6291
6292       if (split_cursor)
6293         strong = TRUE;
6294       else
6295         {
6296           GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
6297           PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
6298
6299           strong = keymap_direction == priv->resolved_dir;
6300         }
6301       
6302       if (count > 0)
6303         {
6304           pango_layout_move_cursor_visually (layout, strong, index, 0, 1, &new_index, &new_trailing);
6305           count--;
6306         }
6307       else
6308         {
6309           pango_layout_move_cursor_visually (layout, strong, index, 0, -1, &new_index, &new_trailing);
6310           count++;
6311         }
6312
6313       if (new_index < 0)
6314         index = 0;
6315       else if (new_index != G_MAXINT)
6316         index = new_index;
6317       
6318       while (new_trailing--)
6319         index = g_utf8_next_char (text + index) - text;
6320     }
6321   
6322   return g_utf8_pointer_to_offset (text, text + index);
6323 }
6324
6325 static gint
6326 gtk_entry_move_logically (GtkEntry *entry,
6327                           gint      start,
6328                           gint      count)
6329 {
6330   gint new_pos = start;
6331   guint length;
6332
6333   length = gtk_entry_buffer_get_length (get_buffer (entry));
6334
6335   /* Prevent any leak of information */
6336   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6337     {
6338       new_pos = CLAMP (start + count, 0, length);
6339     }
6340   else
6341     {
6342       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6343       PangoLogAttr *log_attrs;
6344       gint n_attrs;
6345
6346       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6347
6348       while (count > 0 && new_pos < length)
6349         {
6350           do
6351             new_pos++;
6352           while (new_pos < length && !log_attrs[new_pos].is_cursor_position);
6353           
6354           count--;
6355         }
6356       while (count < 0 && new_pos > 0)
6357         {
6358           do
6359             new_pos--;
6360           while (new_pos > 0 && !log_attrs[new_pos].is_cursor_position);
6361           
6362           count++;
6363         }
6364       
6365       g_free (log_attrs);
6366     }
6367
6368   return new_pos;
6369 }
6370
6371 static gint
6372 gtk_entry_move_forward_word (GtkEntry *entry,
6373                              gint      start,
6374                              gboolean  allow_whitespace)
6375 {
6376   gint new_pos = start;
6377   guint length;
6378
6379   length = gtk_entry_buffer_get_length (get_buffer (entry));
6380
6381   /* Prevent any leak of information */
6382   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6383     {
6384       new_pos = length;
6385     }
6386   else if (new_pos < length)
6387     {
6388       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6389       PangoLogAttr *log_attrs;
6390       gint n_attrs;
6391
6392       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6393       
6394       /* Find the next word boundary */
6395       new_pos++;
6396       while (new_pos < n_attrs - 1 && !(log_attrs[new_pos].is_word_end ||
6397                                         (log_attrs[new_pos].is_word_start && allow_whitespace)))
6398         new_pos++;
6399
6400       g_free (log_attrs);
6401     }
6402
6403   return new_pos;
6404 }
6405
6406
6407 static gint
6408 gtk_entry_move_backward_word (GtkEntry *entry,
6409                               gint      start,
6410                               gboolean  allow_whitespace)
6411 {
6412   gint new_pos = start;
6413
6414   /* Prevent any leak of information */
6415   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6416     {
6417       new_pos = 0;
6418     }
6419   else if (start > 0)
6420     {
6421       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6422       PangoLogAttr *log_attrs;
6423       gint n_attrs;
6424
6425       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6426
6427       new_pos = start - 1;
6428
6429       /* Find the previous word boundary */
6430       while (new_pos > 0 && !(log_attrs[new_pos].is_word_start || 
6431                               (log_attrs[new_pos].is_word_end && allow_whitespace)))
6432         new_pos--;
6433
6434       g_free (log_attrs);
6435     }
6436
6437   return new_pos;
6438 }
6439
6440 static void
6441 gtk_entry_delete_whitespace (GtkEntry *entry)
6442 {
6443   GtkEntryPrivate *priv = entry->priv;
6444   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6445   PangoLogAttr *log_attrs;
6446   gint n_attrs;
6447   gint start, end;
6448
6449   pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6450
6451   start = end = priv->current_pos;
6452   
6453   while (start > 0 && log_attrs[start-1].is_white)
6454     start--;
6455
6456   while (end < n_attrs && log_attrs[end].is_white)
6457     end++;
6458
6459   g_free (log_attrs);
6460
6461   if (start != end)
6462     gtk_editable_delete_text (GTK_EDITABLE (entry), start, end);
6463 }
6464
6465
6466 static void
6467 gtk_entry_select_word (GtkEntry *entry)
6468 {
6469   GtkEntryPrivate *priv = entry->priv;
6470   gint start_pos = gtk_entry_move_backward_word (entry, priv->current_pos, TRUE);
6471   gint end_pos = gtk_entry_move_forward_word (entry, priv->current_pos, TRUE);
6472
6473   gtk_editable_select_region (GTK_EDITABLE (entry), start_pos, end_pos);
6474 }
6475
6476 static void
6477 gtk_entry_select_line (GtkEntry *entry)
6478 {
6479   gtk_editable_select_region (GTK_EDITABLE (entry), 0, -1);
6480 }
6481
6482 static gint
6483 truncate_multiline (const gchar *text)
6484 {
6485   gint length;
6486
6487   for (length = 0;
6488        text[length] && text[length] != '\n' && text[length] != '\r';
6489        length++);
6490
6491   return length;
6492 }
6493
6494 static void
6495 paste_received (GtkClipboard *clipboard,
6496                 const gchar  *text,
6497                 gpointer      data)
6498 {
6499   GtkEntry *entry = GTK_ENTRY (data);
6500   GtkEditable *editable = GTK_EDITABLE (entry);
6501   GtkEntryPrivate *priv = entry->priv;
6502
6503   if (priv->button == 2)
6504     {
6505       gint pos, start, end;
6506       pos = priv->insert_pos;
6507       gtk_editable_get_selection_bounds (editable, &start, &end);
6508       if (!((start <= pos && pos <= end) || (end <= pos && pos <= start)))
6509         gtk_editable_select_region (editable, pos, pos);
6510     }
6511       
6512   if (text)
6513     {
6514       gint pos, start, end;
6515       gint length = -1;
6516       gboolean popup_completion;
6517       GtkEntryCompletion *completion;
6518
6519       completion = gtk_entry_get_completion (entry);
6520
6521       if (priv->truncate_multiline)
6522         length = truncate_multiline (text);
6523
6524       /* only complete if the selection is at the end */
6525       popup_completion = (gtk_entry_buffer_get_length (get_buffer (entry)) ==
6526                           MAX (priv->current_pos, priv->selection_bound));
6527
6528       if (completion)
6529         {
6530           if (gtk_widget_get_mapped (completion->priv->popup_window))
6531             _gtk_entry_completion_popdown (completion);
6532
6533           if (!popup_completion && completion->priv->changed_id > 0)
6534             g_signal_handler_block (entry, completion->priv->changed_id);
6535         }
6536
6537       begin_change (entry);
6538       g_object_freeze_notify (G_OBJECT (entry));
6539       if (gtk_editable_get_selection_bounds (editable, &start, &end))
6540         gtk_editable_delete_text (editable, start, end);
6541
6542       pos = priv->current_pos;
6543       gtk_editable_insert_text (editable, text, length, &pos);
6544       gtk_editable_set_position (editable, pos);
6545       g_object_thaw_notify (G_OBJECT (entry));
6546       end_change (entry);
6547
6548       if (completion &&
6549           !popup_completion && completion->priv->changed_id > 0)
6550         g_signal_handler_unblock (entry, completion->priv->changed_id);
6551     }
6552
6553   g_object_unref (entry);
6554 }
6555
6556 static void
6557 gtk_entry_paste (GtkEntry *entry,
6558                  GdkAtom   selection)
6559 {
6560   g_object_ref (entry);
6561   gtk_clipboard_request_text (gtk_widget_get_clipboard (GTK_WIDGET (entry), selection),
6562                               paste_received, entry);
6563 }
6564
6565 static void
6566 primary_get_cb (GtkClipboard     *clipboard,
6567                 GtkSelectionData *selection_data,
6568                 guint             info,
6569                 gpointer          data)
6570 {
6571   GtkEntry *entry = GTK_ENTRY (data);
6572   gint start, end;
6573   
6574   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6575     {
6576       gchar *str = gtk_entry_get_display_text (entry, start, end);
6577       gtk_selection_data_set_text (selection_data, str, -1);
6578       g_free (str);
6579     }
6580 }
6581
6582 static void
6583 primary_clear_cb (GtkClipboard *clipboard,
6584                   gpointer      data)
6585 {
6586   GtkEntry *entry = GTK_ENTRY (data);
6587   GtkEntryPrivate *priv = entry->priv;
6588
6589   gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
6590 }
6591
6592 static void
6593 gtk_entry_update_primary_selection (GtkEntry *entry)
6594 {
6595   GtkTargetList *list;
6596   GtkTargetEntry *targets;
6597   GtkClipboard *clipboard;
6598   gint start, end;
6599   gint n_targets;
6600
6601   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6602     return;
6603
6604   list = gtk_target_list_new (NULL, 0);
6605   gtk_target_list_add_text_targets (list, 0);
6606
6607   targets = gtk_target_table_new_from_list (list, &n_targets);
6608
6609   clipboard = gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_PRIMARY);
6610   
6611   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6612     {
6613       if (!gtk_clipboard_set_with_owner (clipboard, targets, n_targets,
6614                                          primary_get_cb, primary_clear_cb, G_OBJECT (entry)))
6615         primary_clear_cb (clipboard, entry);
6616     }
6617   else
6618     {
6619       if (gtk_clipboard_get_owner (clipboard) == G_OBJECT (entry))
6620         gtk_clipboard_clear (clipboard);
6621     }
6622
6623   gtk_target_table_free (targets, n_targets);
6624   gtk_target_list_unref (list);
6625 }
6626
6627 static void
6628 gtk_entry_clear (GtkEntry             *entry,
6629                  GtkEntryIconPosition  icon_pos)
6630 {
6631   GtkEntryPrivate *priv = entry->priv;
6632   EntryIconInfo *icon_info = priv->icons[icon_pos];
6633
6634   if (!icon_info || icon_info->storage_type == GTK_IMAGE_EMPTY)
6635     return;
6636
6637   g_object_freeze_notify (G_OBJECT (entry));
6638
6639   /* Explicitly check, as the pointer may become invalidated
6640    * during destruction.
6641    */
6642   if (GDK_IS_WINDOW (icon_info->window))
6643     gdk_window_hide (icon_info->window);
6644
6645   if (icon_info->pixbuf)
6646     {
6647       g_object_unref (icon_info->pixbuf);
6648       icon_info->pixbuf = NULL;
6649     }
6650
6651   switch (icon_info->storage_type)
6652     {
6653     case GTK_IMAGE_PIXBUF:
6654       g_object_notify (G_OBJECT (entry),
6655                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-pixbuf" : "secondary-icon-pixbuf");
6656       break;
6657
6658     case GTK_IMAGE_STOCK:
6659       g_free (icon_info->stock_id);
6660       icon_info->stock_id = NULL;
6661       g_object_notify (G_OBJECT (entry),
6662                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-stock" : "secondary-icon-stock");
6663       break;
6664
6665     case GTK_IMAGE_ICON_NAME:
6666       g_free (icon_info->icon_name);
6667       icon_info->icon_name = NULL;
6668       g_object_notify (G_OBJECT (entry),
6669                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-name" : "secondary-icon-name");
6670       break;
6671
6672     case GTK_IMAGE_GICON:
6673       if (icon_info->gicon)
6674         {
6675           g_object_unref (icon_info->gicon);
6676           icon_info->gicon = NULL;
6677         }
6678       g_object_notify (G_OBJECT (entry),
6679                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-gicon" : "secondary-icon-gicon");
6680       break;
6681
6682     default:
6683       g_assert_not_reached ();
6684       break;
6685     }
6686
6687   icon_info->storage_type = GTK_IMAGE_EMPTY;
6688   g_object_notify (G_OBJECT (entry),
6689                    icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-storage-type" : "secondary-icon-storage-type");
6690
6691   g_object_thaw_notify (G_OBJECT (entry));
6692 }
6693
6694 static GdkPixbuf *
6695 create_normal_pixbuf (GtkStyleContext *context,
6696                       const gchar     *stock_id,
6697                       GtkIconSize      icon_size)
6698 {
6699   GtkIconSet *icon_set;
6700   GdkPixbuf *pixbuf;
6701
6702   gtk_style_context_save (context);
6703
6704   /* Unset any state */
6705   gtk_style_context_set_state (context, 0);
6706
6707   icon_set = gtk_style_context_lookup_icon_set (context, stock_id);
6708   pixbuf = gtk_icon_set_render_icon_pixbuf (icon_set, context, icon_size);
6709
6710   gtk_style_context_restore (context);
6711
6712   return pixbuf;
6713 }
6714
6715 static void
6716 gtk_entry_ensure_pixbuf (GtkEntry             *entry,
6717                          GtkEntryIconPosition  icon_pos)
6718 {
6719   GtkEntryPrivate *priv = entry->priv;
6720   EntryIconInfo *icon_info = priv->icons[icon_pos];
6721   GtkStyleContext *context;
6722   GtkIconInfo *info;
6723   GtkIconTheme *icon_theme;
6724   GtkSettings *settings;
6725   GtkWidget *widget;
6726   GdkScreen *screen;
6727   gint width, height;
6728
6729   if (!icon_info || icon_info->pixbuf)
6730     return;
6731
6732   widget = GTK_WIDGET (entry);
6733   context = gtk_widget_get_style_context (widget);
6734
6735   switch (icon_info->storage_type)
6736     {
6737     case GTK_IMAGE_EMPTY:
6738     case GTK_IMAGE_PIXBUF:
6739       break;
6740     case GTK_IMAGE_STOCK:
6741       icon_info->pixbuf = create_normal_pixbuf (context, icon_info->stock_id,
6742                                                 GTK_ICON_SIZE_MENU);
6743
6744       if (!icon_info->pixbuf)
6745         icon_info->pixbuf = create_normal_pixbuf (context,
6746                                                   GTK_STOCK_MISSING_IMAGE,
6747                                                   GTK_ICON_SIZE_MENU);
6748       break;
6749
6750     case GTK_IMAGE_ICON_NAME:
6751       screen = gtk_widget_get_screen (widget);
6752       if (screen)
6753         {
6754           icon_theme = gtk_icon_theme_get_for_screen (screen);
6755           settings = gtk_settings_get_for_screen (screen);
6756
6757           gtk_icon_size_lookup_for_settings (settings,
6758                                              GTK_ICON_SIZE_MENU,
6759                                              &width, &height);
6760
6761           icon_info->pixbuf = gtk_icon_theme_load_icon (icon_theme,
6762                                                         icon_info->icon_name,
6763                                                         MIN (width, height),
6764                                                         0, NULL);
6765
6766           if (icon_info->pixbuf == NULL)
6767             icon_info->pixbuf = create_normal_pixbuf (context,
6768                                                       GTK_STOCK_MISSING_IMAGE,
6769                                                       GTK_ICON_SIZE_MENU);
6770         }
6771       break;
6772
6773     case GTK_IMAGE_GICON:
6774       screen = gtk_widget_get_screen (widget);
6775       if (screen)
6776         {
6777           icon_theme = gtk_icon_theme_get_for_screen (screen);
6778           settings = gtk_settings_get_for_screen (screen);
6779
6780           gtk_icon_size_lookup_for_settings (settings,
6781                                              GTK_ICON_SIZE_MENU,
6782                                              &width, &height);
6783
6784           info = gtk_icon_theme_lookup_by_gicon (icon_theme,
6785                                                  icon_info->gicon,
6786                                                  MIN (width, height), 
6787                                                  GTK_ICON_LOOKUP_USE_BUILTIN);
6788           if (info)
6789             {
6790               icon_info->pixbuf = gtk_icon_info_load_icon (info, NULL);
6791               gtk_icon_info_free (info);
6792             }
6793
6794           if (icon_info->pixbuf == NULL)
6795             icon_info->pixbuf = create_normal_pixbuf (context,
6796                                                       GTK_STOCK_MISSING_IMAGE,
6797                                                       GTK_ICON_SIZE_MENU);
6798         }
6799       break;
6800
6801     default:
6802       g_assert_not_reached ();
6803       break;
6804     }
6805     
6806   if (icon_info->pixbuf != NULL && icon_info->window != NULL)
6807     gdk_window_show_unraised (icon_info->window);
6808 }
6809
6810
6811 /* Public API
6812  */
6813
6814 /**
6815  * gtk_entry_new:
6816  *
6817  * Creates a new entry.
6818  *
6819  * Return value: a new #GtkEntry.
6820  */
6821 GtkWidget*
6822 gtk_entry_new (void)
6823 {
6824   return g_object_new (GTK_TYPE_ENTRY, NULL);
6825 }
6826
6827 /**
6828  * gtk_entry_new_with_buffer:
6829  * @buffer: The buffer to use for the new #GtkEntry.
6830  *
6831  * Creates a new entry with the specified text buffer.
6832  *
6833  * Return value: a new #GtkEntry
6834  *
6835  * Since: 2.18
6836  */
6837 GtkWidget*
6838 gtk_entry_new_with_buffer (GtkEntryBuffer *buffer)
6839 {
6840   g_return_val_if_fail (GTK_IS_ENTRY_BUFFER (buffer), NULL);
6841   return g_object_new (GTK_TYPE_ENTRY, "buffer", buffer, NULL);
6842 }
6843
6844 static GtkEntryBuffer*
6845 get_buffer (GtkEntry *entry)
6846 {
6847   GtkEntryPrivate *priv = entry->priv;
6848
6849   if (priv->buffer == NULL)
6850     {
6851       GtkEntryBuffer *buffer;
6852       buffer = gtk_entry_buffer_new (NULL, 0);
6853       gtk_entry_set_buffer (entry, buffer);
6854       g_object_unref (buffer);
6855     }
6856
6857   return priv->buffer;
6858 }
6859
6860 /**
6861  * gtk_entry_get_buffer:
6862  * @entry: a #GtkEntry
6863  *
6864  * Get the #GtkEntryBuffer object which holds the text for
6865  * this widget.
6866  *
6867  * Since: 2.18
6868  *
6869  * Returns: (transfer none): A #GtkEntryBuffer object.
6870  */
6871 GtkEntryBuffer*
6872 gtk_entry_get_buffer (GtkEntry *entry)
6873 {
6874   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
6875
6876   return get_buffer (entry);
6877 }
6878
6879 /**
6880  * gtk_entry_set_buffer:
6881  * @entry: a #GtkEntry
6882  * @buffer: a #GtkEntryBuffer
6883  *
6884  * Set the #GtkEntryBuffer object which holds the text for
6885  * this widget.
6886  *
6887  * Since: 2.18
6888  */
6889 void
6890 gtk_entry_set_buffer (GtkEntry       *entry,
6891                       GtkEntryBuffer *buffer)
6892 {
6893   GtkEntryPrivate *priv;
6894   GObject *obj;
6895
6896   g_return_if_fail (GTK_IS_ENTRY (entry));
6897
6898   priv = entry->priv;
6899
6900   if (buffer)
6901     {
6902       g_return_if_fail (GTK_IS_ENTRY_BUFFER (buffer));
6903       g_object_ref (buffer);
6904     }
6905
6906   if (priv->buffer)
6907     {
6908       buffer_disconnect_signals (entry);
6909       g_object_unref (priv->buffer);
6910     }
6911
6912   priv->buffer = buffer;
6913
6914   if (priv->buffer)
6915      buffer_connect_signals (entry);
6916
6917   obj = G_OBJECT (entry);
6918   g_object_freeze_notify (obj);
6919   g_object_notify (obj, "buffer");
6920   g_object_notify (obj, "text");
6921   g_object_notify (obj, "text-length");
6922   g_object_notify (obj, "max-length");
6923   g_object_notify (obj, "visibility");
6924   g_object_notify (obj, "invisible-char");
6925   g_object_notify (obj, "invisible-char-set");
6926   g_object_thaw_notify (obj);
6927
6928   gtk_editable_set_position (GTK_EDITABLE (entry), 0);
6929   gtk_entry_recompute (entry);
6930 }
6931
6932 /**
6933  * gtk_entry_get_text_area:
6934  * @entry: a #GtkEntry
6935  * @text_area: (out): Return location for the text area.
6936  *
6937  * Gets the area where the entry's text is drawn. This function is
6938  * useful when drawing something to the entry in a draw callback.
6939  *
6940  * If the entry is not realized, @text_area is filled with zeros.
6941  *
6942  * See also gtk_entry_get_icon_area().
6943  *
6944  * Since: 3.0
6945  **/
6946 void
6947 gtk_entry_get_text_area (GtkEntry     *entry,
6948                          GdkRectangle *text_area)
6949 {
6950   GtkEntryPrivate *priv;
6951
6952   g_return_if_fail (GTK_IS_ENTRY (entry));
6953   g_return_if_fail (text_area != NULL);
6954
6955   priv = entry->priv;
6956
6957   if (priv->text_area)
6958     {
6959       GtkAllocation allocation;
6960       gint x, y;
6961
6962       gtk_widget_get_allocation (GTK_WIDGET (entry), &allocation);
6963       gdk_window_get_position (priv->text_area, &x, &y);
6964
6965       text_area->x = x - allocation.x;
6966       text_area->y = y - allocation.y;
6967       text_area->width = gdk_window_get_width (priv->text_area);
6968       text_area->height = gdk_window_get_height (priv->text_area);
6969     }
6970   else
6971     {
6972       text_area->x = 0;
6973       text_area->y = 0;
6974       text_area->width = 0;
6975       text_area->height = 0;
6976     }
6977 }
6978
6979 /**
6980  * gtk_entry_set_text:
6981  * @entry: a #GtkEntry
6982  * @text: the new text
6983  *
6984  * Sets the text in the widget to the given
6985  * value, replacing the current contents.
6986  *
6987  * See gtk_entry_buffer_set_text().
6988  */
6989 void
6990 gtk_entry_set_text (GtkEntry    *entry,
6991                     const gchar *text)
6992 {
6993   gint tmp_pos;
6994   GtkEntryCompletion *completion;
6995
6996   g_return_if_fail (GTK_IS_ENTRY (entry));
6997   g_return_if_fail (text != NULL);
6998
6999   /* Actually setting the text will affect the cursor and selection;
7000    * if the contents don't actually change, this will look odd to the user.
7001    */
7002   if (strcmp (gtk_entry_buffer_get_text (get_buffer (entry)), text) == 0)
7003     return;
7004
7005   completion = gtk_entry_get_completion (entry);
7006   if (completion && completion->priv->changed_id > 0)
7007     g_signal_handler_block (entry, completion->priv->changed_id);
7008
7009   begin_change (entry);
7010   g_object_freeze_notify (G_OBJECT (entry));
7011   gtk_editable_delete_text (GTK_EDITABLE (entry), 0, -1);
7012   tmp_pos = 0;
7013   gtk_editable_insert_text (GTK_EDITABLE (entry), text, strlen (text), &tmp_pos);
7014   g_object_thaw_notify (G_OBJECT (entry));
7015   end_change (entry);
7016
7017   if (completion && completion->priv->changed_id > 0)
7018     g_signal_handler_unblock (entry, completion->priv->changed_id);
7019 }
7020
7021 /**
7022  * gtk_entry_set_visibility:
7023  * @entry: a #GtkEntry
7024  * @visible: %TRUE if the contents of the entry are displayed
7025  *           as plaintext
7026  *
7027  * Sets whether the contents of the entry are visible or not. 
7028  * When visibility is set to %FALSE, characters are displayed 
7029  * as the invisible char, and will also appear that way when 
7030  * the text in the entry widget is copied elsewhere.
7031  *
7032  * By default, GTK+ picks the best invisible character available
7033  * in the current font, but it can be changed with
7034  * gtk_entry_set_invisible_char().
7035  */
7036 void
7037 gtk_entry_set_visibility (GtkEntry *entry,
7038                           gboolean visible)
7039 {
7040   GtkEntryPrivate *priv;
7041
7042   g_return_if_fail (GTK_IS_ENTRY (entry));
7043
7044   priv = entry->priv;
7045
7046   visible = visible != FALSE;
7047
7048   if (priv->visible != visible)
7049     {
7050       priv->visible = visible;
7051
7052       g_object_notify (G_OBJECT (entry), "visibility");
7053       gtk_entry_recompute (entry);
7054     }
7055 }
7056
7057 /**
7058  * gtk_entry_get_visibility:
7059  * @entry: a #GtkEntry
7060  *
7061  * Retrieves whether the text in @entry is visible. See
7062  * gtk_entry_set_visibility().
7063  *
7064  * Return value: %TRUE if the text is currently visible
7065  **/
7066 gboolean
7067 gtk_entry_get_visibility (GtkEntry *entry)
7068 {
7069   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7070
7071   return entry->priv->visible;
7072 }
7073
7074 /**
7075  * gtk_entry_set_invisible_char:
7076  * @entry: a #GtkEntry
7077  * @ch: a Unicode character
7078  * 
7079  * Sets the character to use in place of the actual text when
7080  * gtk_entry_set_visibility() has been called to set text visibility
7081  * to %FALSE. i.e. this is the character used in "password mode" to
7082  * show the user how many characters have been typed. By default, GTK+
7083  * picks the best invisible char available in the current font. If you
7084  * set the invisible char to 0, then the user will get no feedback
7085  * at all; there will be no text on the screen as they type.
7086  **/
7087 void
7088 gtk_entry_set_invisible_char (GtkEntry *entry,
7089                               gunichar  ch)
7090 {
7091   GtkEntryPrivate *priv;
7092
7093   g_return_if_fail (GTK_IS_ENTRY (entry));
7094
7095   priv = entry->priv;
7096
7097   if (!priv->invisible_char_set)
7098     {
7099       priv->invisible_char_set = TRUE;
7100       g_object_notify (G_OBJECT (entry), "invisible-char-set");
7101     }
7102
7103   if (ch == priv->invisible_char)
7104     return;
7105
7106   priv->invisible_char = ch;
7107   g_object_notify (G_OBJECT (entry), "invisible-char");
7108   gtk_entry_recompute (entry);  
7109 }
7110
7111 /**
7112  * gtk_entry_get_invisible_char:
7113  * @entry: a #GtkEntry
7114  *
7115  * Retrieves the character displayed in place of the real characters
7116  * for entries with visibility set to false. See gtk_entry_set_invisible_char().
7117  *
7118  * Return value: the current invisible char, or 0, if the entry does not
7119  *               show invisible text at all. 
7120  **/
7121 gunichar
7122 gtk_entry_get_invisible_char (GtkEntry *entry)
7123 {
7124   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7125
7126   return entry->priv->invisible_char;
7127 }
7128
7129 /**
7130  * gtk_entry_unset_invisible_char:
7131  * @entry: a #GtkEntry
7132  *
7133  * Unsets the invisible char previously set with
7134  * gtk_entry_set_invisible_char(). So that the
7135  * default invisible char is used again.
7136  *
7137  * Since: 2.16
7138  **/
7139 void
7140 gtk_entry_unset_invisible_char (GtkEntry *entry)
7141 {
7142   GtkEntryPrivate *priv;
7143   gunichar ch;
7144
7145   g_return_if_fail (GTK_IS_ENTRY (entry));
7146
7147   priv = entry->priv;
7148
7149   if (!priv->invisible_char_set)
7150     return;
7151
7152   priv->invisible_char_set = FALSE;
7153   ch = find_invisible_char (GTK_WIDGET (entry));
7154
7155   if (priv->invisible_char != ch)
7156     {
7157       priv->invisible_char = ch;
7158       g_object_notify (G_OBJECT (entry), "invisible-char");
7159     }
7160
7161   g_object_notify (G_OBJECT (entry), "invisible-char-set");
7162   gtk_entry_recompute (entry);
7163 }
7164
7165 /**
7166  * gtk_entry_set_overwrite_mode:
7167  * @entry: a #GtkEntry
7168  * @overwrite: new value
7169  * 
7170  * Sets whether the text is overwritten when typing in the #GtkEntry.
7171  *
7172  * Since: 2.14
7173  **/
7174 void
7175 gtk_entry_set_overwrite_mode (GtkEntry *entry,
7176                               gboolean  overwrite)
7177 {
7178   GtkEntryPrivate *priv = entry->priv;
7179
7180   g_return_if_fail (GTK_IS_ENTRY (entry));
7181
7182   if (priv->overwrite_mode == overwrite)
7183     return;
7184   
7185   gtk_entry_toggle_overwrite (entry);
7186
7187   g_object_notify (G_OBJECT (entry), "overwrite-mode");
7188 }
7189
7190 /**
7191  * gtk_entry_get_overwrite_mode:
7192  * @entry: a #GtkEntry
7193  * 
7194  * Gets the value set by gtk_entry_set_overwrite_mode().
7195  * 
7196  * Return value: whether the text is overwritten when typing.
7197  *
7198  * Since: 2.14
7199  **/
7200 gboolean
7201 gtk_entry_get_overwrite_mode (GtkEntry *entry)
7202 {
7203   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7204
7205   return entry->priv->overwrite_mode;
7206 }
7207
7208 /**
7209  * gtk_entry_get_text:
7210  * @entry: a #GtkEntry
7211  *
7212  * Retrieves the contents of the entry widget.
7213  * See also gtk_editable_get_chars().
7214  *
7215  * This is equivalent to:
7216  *
7217  * <informalexample><programlisting>
7218  * gtk_entry_buffer_get_text (gtk_entry_get_buffer (entry));
7219  * </programlisting></informalexample>
7220  *
7221  * Return value: a pointer to the contents of the widget as a
7222  *      string. This string points to internally allocated
7223  *      storage in the widget and must not be freed, modified or
7224  *      stored.
7225  **/
7226 G_CONST_RETURN gchar*
7227 gtk_entry_get_text (GtkEntry *entry)
7228 {
7229   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7230
7231   return gtk_entry_buffer_get_text (get_buffer (entry));
7232 }
7233
7234 /**
7235  * gtk_entry_set_max_length:
7236  * @entry: a #GtkEntry
7237  * @max: the maximum length of the entry, or 0 for no maximum.
7238  *   (other than the maximum length of entries.) The value passed in will
7239  *   be clamped to the range 0-65536.
7240  * 
7241  * Sets the maximum allowed length of the contents of the widget. If
7242  * the current contents are longer than the given length, then they
7243  * will be truncated to fit.
7244  *
7245  * This is equivalent to:
7246  *
7247  * <informalexample><programlisting>
7248  * gtk_entry_buffer_set_max_length (gtk_entry_get_buffer (entry), max);
7249  * </programlisting></informalexample>
7250  **/
7251 void
7252 gtk_entry_set_max_length (GtkEntry     *entry,
7253                           gint          max)
7254 {
7255   g_return_if_fail (GTK_IS_ENTRY (entry));
7256   gtk_entry_buffer_set_max_length (get_buffer (entry), max);
7257 }
7258
7259 /**
7260  * gtk_entry_get_max_length:
7261  * @entry: a #GtkEntry
7262  *
7263  * Retrieves the maximum allowed length of the text in
7264  * @entry. See gtk_entry_set_max_length().
7265  *
7266  * This is equivalent to:
7267  *
7268  * <informalexample><programlisting>
7269  * gtk_entry_buffer_get_max_length (gtk_entry_get_buffer (entry));
7270  * </programlisting></informalexample>
7271  *
7272  * Return value: the maximum allowed number of characters
7273  *               in #GtkEntry, or 0 if there is no maximum.
7274  **/
7275 gint
7276 gtk_entry_get_max_length (GtkEntry *entry)
7277 {
7278   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7279
7280   return gtk_entry_buffer_get_max_length (get_buffer (entry));
7281 }
7282
7283 /**
7284  * gtk_entry_get_text_length:
7285  * @entry: a #GtkEntry
7286  *
7287  * Retrieves the current length of the text in
7288  * @entry. 
7289  *
7290  * This is equivalent to:
7291  *
7292  * <informalexample><programlisting>
7293  * gtk_entry_buffer_get_length (gtk_entry_get_buffer (entry));
7294  * </programlisting></informalexample>
7295  *
7296  * Return value: the current number of characters
7297  *               in #GtkEntry, or 0 if there are none.
7298  *
7299  * Since: 2.14
7300  **/
7301 guint16
7302 gtk_entry_get_text_length (GtkEntry *entry)
7303 {
7304   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7305
7306   return gtk_entry_buffer_get_length (get_buffer (entry));
7307 }
7308
7309 /**
7310  * gtk_entry_set_activates_default:
7311  * @entry: a #GtkEntry
7312  * @setting: %TRUE to activate window's default widget on Enter keypress
7313  *
7314  * If @setting is %TRUE, pressing Enter in the @entry will activate the default
7315  * widget for the window containing the entry. This usually means that
7316  * the dialog box containing the entry will be closed, since the default
7317  * widget is usually one of the dialog buttons.
7318  *
7319  * (For experts: if @setting is %TRUE, the entry calls
7320  * gtk_window_activate_default() on the window containing the entry, in
7321  * the default handler for the #GtkWidget::activate signal.)
7322  **/
7323 void
7324 gtk_entry_set_activates_default (GtkEntry *entry,
7325                                  gboolean  setting)
7326 {
7327   GtkEntryPrivate *priv;
7328
7329   g_return_if_fail (GTK_IS_ENTRY (entry));
7330
7331   priv = entry->priv;
7332
7333   setting = setting != FALSE;
7334
7335   if (setting != priv->activates_default)
7336     {
7337       priv->activates_default = setting;
7338       g_object_notify (G_OBJECT (entry), "activates-default");
7339     }
7340 }
7341
7342 /**
7343  * gtk_entry_get_activates_default:
7344  * @entry: a #GtkEntry
7345  * 
7346  * Retrieves the value set by gtk_entry_set_activates_default().
7347  * 
7348  * Return value: %TRUE if the entry will activate the default widget
7349  **/
7350 gboolean
7351 gtk_entry_get_activates_default (GtkEntry *entry)
7352 {
7353   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7354
7355   return entry->priv->activates_default;
7356 }
7357
7358 /**
7359  * gtk_entry_set_width_chars:
7360  * @entry: a #GtkEntry
7361  * @n_chars: width in chars
7362  *
7363  * Changes the size request of the entry to be about the right size
7364  * for @n_chars characters. Note that it changes the size
7365  * <emphasis>request</emphasis>, the size can still be affected by
7366  * how you pack the widget into containers. If @n_chars is -1, the
7367  * size reverts to the default entry size.
7368  **/
7369 void
7370 gtk_entry_set_width_chars (GtkEntry *entry,
7371                            gint      n_chars)
7372 {
7373   GtkEntryPrivate *priv;
7374
7375   g_return_if_fail (GTK_IS_ENTRY (entry));
7376
7377   priv = entry->priv;
7378
7379   if (priv->width_chars != n_chars)
7380     {
7381       priv->width_chars = n_chars;
7382       g_object_notify (G_OBJECT (entry), "width-chars");
7383       gtk_widget_queue_resize (GTK_WIDGET (entry));
7384     }
7385 }
7386
7387 /**
7388  * gtk_entry_get_width_chars:
7389  * @entry: a #GtkEntry
7390  * 
7391  * Gets the value set by gtk_entry_set_width_chars().
7392  * 
7393  * Return value: number of chars to request space for, or negative if unset
7394  **/
7395 gint
7396 gtk_entry_get_width_chars (GtkEntry *entry)
7397 {
7398   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7399
7400   return entry->priv->width_chars;
7401 }
7402
7403 /**
7404  * gtk_entry_set_has_frame:
7405  * @entry: a #GtkEntry
7406  * @setting: new value
7407  * 
7408  * Sets whether the entry has a beveled frame around it.
7409  **/
7410 void
7411 gtk_entry_set_has_frame (GtkEntry *entry,
7412                          gboolean  setting)
7413 {
7414   GtkEntryPrivate *priv;
7415
7416   g_return_if_fail (GTK_IS_ENTRY (entry));
7417
7418   priv = entry->priv;
7419
7420   setting = (setting != FALSE);
7421
7422   if (priv->has_frame == setting)
7423     return;
7424
7425   gtk_widget_queue_resize (GTK_WIDGET (entry));
7426   priv->has_frame = setting;
7427   g_object_notify (G_OBJECT (entry), "has-frame");
7428 }
7429
7430 /**
7431  * gtk_entry_get_has_frame:
7432  * @entry: a #GtkEntry
7433  * 
7434  * Gets the value set by gtk_entry_set_has_frame().
7435  * 
7436  * Return value: whether the entry has a beveled frame
7437  **/
7438 gboolean
7439 gtk_entry_get_has_frame (GtkEntry *entry)
7440 {
7441   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7442
7443   return entry->priv->has_frame;
7444 }
7445
7446 /**
7447  * gtk_entry_set_inner_border:
7448  * @entry: a #GtkEntry
7449  * @border: (allow-none): a #GtkBorder, or %NULL
7450  *
7451  * Sets %entry's inner-border property to %border, or clears it if %NULL
7452  * is passed. The inner-border is the area around the entry's text, but
7453  * inside its frame.
7454  *
7455  * If set, this property overrides the inner-border style property.
7456  * Overriding the style-provided border is useful when you want to do
7457  * in-place editing of some text in a canvas or list widget, where
7458  * pixel-exact positioning of the entry is important.
7459  *
7460  * Since: 2.10
7461  **/
7462 void
7463 gtk_entry_set_inner_border (GtkEntry        *entry,
7464                             const GtkBorder *border)
7465 {
7466   g_return_if_fail (GTK_IS_ENTRY (entry));
7467
7468   gtk_widget_queue_resize (GTK_WIDGET (entry));
7469
7470   if (border)
7471     g_object_set_qdata_full (G_OBJECT (entry), quark_inner_border,
7472                              gtk_border_copy (border),
7473                              (GDestroyNotify) gtk_border_free);
7474   else
7475     g_object_set_qdata (G_OBJECT (entry), quark_inner_border, NULL);
7476
7477   g_object_notify (G_OBJECT (entry), "inner-border");
7478 }
7479
7480 /**
7481  * gtk_entry_get_inner_border:
7482  * @entry: a #GtkEntry
7483  *
7484  * This function returns the entry's #GtkEntry:inner-border property. See
7485  * gtk_entry_set_inner_border() for more information.
7486  *
7487  * Return value: (transfer none): the entry's #GtkBorder, or %NULL if none was set.
7488  *
7489  * Since: 2.10
7490  **/
7491 G_CONST_RETURN GtkBorder *
7492 gtk_entry_get_inner_border (GtkEntry *entry)
7493 {
7494   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7495
7496   return g_object_get_qdata (G_OBJECT (entry), quark_inner_border);
7497 }
7498
7499 /**
7500  * gtk_entry_get_layout:
7501  * @entry: a #GtkEntry
7502  * 
7503  * Gets the #PangoLayout used to display the entry.
7504  * The layout is useful to e.g. convert text positions to
7505  * pixel positions, in combination with gtk_entry_get_layout_offsets().
7506  * The returned layout is owned by the entry and must not be 
7507  * modified or freed by the caller.
7508  *
7509  * Keep in mind that the layout text may contain a preedit string, so
7510  * gtk_entry_layout_index_to_text_index() and
7511  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7512  * indices in the layout to byte indices in the entry contents.
7513  *
7514  * Return value: (transfer none): the #PangoLayout for this entry
7515  **/
7516 PangoLayout*
7517 gtk_entry_get_layout (GtkEntry *entry)
7518 {
7519   PangoLayout *layout;
7520   
7521   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7522
7523   layout = gtk_entry_ensure_layout (entry, TRUE);
7524
7525   return layout;
7526 }
7527
7528
7529 /**
7530  * gtk_entry_layout_index_to_text_index:
7531  * @entry: a #GtkEntry
7532  * @layout_index: byte index into the entry layout text
7533  * 
7534  * Converts from a position in the entry contents (returned
7535  * by gtk_entry_get_text()) to a position in the
7536  * entry's #PangoLayout (returned by gtk_entry_get_layout(),
7537  * with text retrieved via pango_layout_get_text()).
7538  * 
7539  * Return value: byte index into the entry contents
7540  **/
7541 gint
7542 gtk_entry_layout_index_to_text_index (GtkEntry *entry,
7543                                       gint      layout_index)
7544 {
7545   GtkEntryPrivate *priv;
7546   PangoLayout *layout;
7547   const gchar *text;
7548   gint cursor_index;
7549   
7550   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7551
7552   priv = entry->priv;
7553
7554   layout = gtk_entry_ensure_layout (entry, TRUE);
7555   text = pango_layout_get_text (layout);
7556   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7557
7558   if (layout_index >= cursor_index && priv->preedit_length)
7559     {
7560       if (layout_index >= cursor_index + priv->preedit_length)
7561         layout_index -= priv->preedit_length;
7562       else
7563         layout_index = cursor_index;
7564     }
7565
7566   return layout_index;
7567 }
7568
7569 /**
7570  * gtk_entry_text_index_to_layout_index:
7571  * @entry: a #GtkEntry
7572  * @text_index: byte index into the entry contents
7573  * 
7574  * Converts from a position in the entry's #PangoLayout (returned by
7575  * gtk_entry_get_layout()) to a position in the entry contents
7576  * (returned by gtk_entry_get_text()).
7577  * 
7578  * Return value: byte index into the entry layout text
7579  **/
7580 gint
7581 gtk_entry_text_index_to_layout_index (GtkEntry *entry,
7582                                       gint      text_index)
7583 {
7584   GtkEntryPrivate *priv;
7585   PangoLayout *layout;
7586   const gchar *text;
7587   gint cursor_index;
7588
7589   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7590
7591   priv = entry->priv;
7592
7593   layout = gtk_entry_ensure_layout (entry, TRUE);
7594   text = pango_layout_get_text (layout);
7595   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7596
7597   if (text_index > cursor_index)
7598     text_index += priv->preedit_length;
7599
7600   return text_index;
7601 }
7602
7603 /**
7604  * gtk_entry_get_layout_offsets:
7605  * @entry: a #GtkEntry
7606  * @x: (out) (allow-none): location to store X offset of layout, or %NULL
7607  * @y: (out) (allow-none): location to store Y offset of layout, or %NULL
7608  *
7609  *
7610  * Obtains the position of the #PangoLayout used to render text
7611  * in the entry, in widget coordinates. Useful if you want to line
7612  * up the text in an entry with some other text, e.g. when using the
7613  * entry to implement editable cells in a sheet widget.
7614  *
7615  * Also useful to convert mouse events into coordinates inside the
7616  * #PangoLayout, e.g. to take some action if some part of the entry text
7617  * is clicked.
7618  * 
7619  * Note that as the user scrolls around in the entry the offsets will
7620  * change; you'll need to connect to the "notify::scroll-offset"
7621  * signal to track this. Remember when using the #PangoLayout
7622  * functions you need to convert to and from pixels using
7623  * PANGO_PIXELS() or #PANGO_SCALE.
7624  *
7625  * Keep in mind that the layout text may contain a preedit string, so
7626  * gtk_entry_layout_index_to_text_index() and
7627  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7628  * indices in the layout to byte indices in the entry contents.
7629  **/
7630 void
7631 gtk_entry_get_layout_offsets (GtkEntry *entry,
7632                               gint     *x,
7633                               gint     *y)
7634 {
7635   gint text_area_x, text_area_y;
7636   
7637   g_return_if_fail (GTK_IS_ENTRY (entry));
7638
7639   /* this gets coords relative to text area */
7640   get_layout_position (entry, x, y);
7641
7642   /* convert to widget coords */
7643   gtk_entry_get_text_area_size (entry, &text_area_x, &text_area_y, NULL, NULL);
7644   
7645   if (x)
7646     *x += text_area_x;
7647
7648   if (y)
7649     *y += text_area_y;
7650 }
7651
7652
7653 /**
7654  * gtk_entry_set_alignment:
7655  * @entry: a #GtkEntry
7656  * @xalign: The horizontal alignment, from 0 (left) to 1 (right).
7657  *          Reversed for RTL layouts
7658  * 
7659  * Sets the alignment for the contents of the entry. This controls
7660  * the horizontal positioning of the contents when the displayed
7661  * text is shorter than the width of the entry.
7662  *
7663  * Since: 2.4
7664  **/
7665 void
7666 gtk_entry_set_alignment (GtkEntry *entry, gfloat xalign)
7667 {
7668   GtkEntryPrivate *priv;
7669
7670   g_return_if_fail (GTK_IS_ENTRY (entry));
7671
7672   priv = entry->priv;
7673
7674   if (xalign < 0.0)
7675     xalign = 0.0;
7676   else if (xalign > 1.0)
7677     xalign = 1.0;
7678
7679   if (xalign != priv->xalign)
7680     {
7681       priv->xalign = xalign;
7682
7683       gtk_entry_recompute (entry);
7684
7685       g_object_notify (G_OBJECT (entry), "xalign");
7686     }
7687 }
7688
7689 /**
7690  * gtk_entry_get_alignment:
7691  * @entry: a #GtkEntry
7692  * 
7693  * Gets the value set by gtk_entry_set_alignment().
7694  * 
7695  * Return value: the alignment
7696  *
7697  * Since: 2.4
7698  **/
7699 gfloat
7700 gtk_entry_get_alignment (GtkEntry *entry)
7701 {
7702   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
7703
7704   return entry->priv->xalign;
7705 }
7706
7707 /**
7708  * gtk_entry_set_icon_from_pixbuf:
7709  * @entry: a #GtkEntry
7710  * @icon_pos: Icon position
7711  * @pixbuf: (allow-none): A #GdkPixbuf, or %NULL
7712  *
7713  * Sets the icon shown in the specified position using a pixbuf.
7714  *
7715  * If @pixbuf is %NULL, no icon will be shown in the specified position.
7716  *
7717  * Since: 2.16
7718  */
7719 void
7720 gtk_entry_set_icon_from_pixbuf (GtkEntry             *entry,
7721                                 GtkEntryIconPosition  icon_pos,
7722                                 GdkPixbuf            *pixbuf)
7723 {
7724   GtkEntryPrivate *priv;
7725   EntryIconInfo *icon_info;
7726
7727   g_return_if_fail (GTK_IS_ENTRY (entry));
7728   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7729
7730   priv = entry->priv;
7731
7732   if ((icon_info = priv->icons[icon_pos]) == NULL)
7733     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7734
7735   g_object_freeze_notify (G_OBJECT (entry));
7736
7737   if (pixbuf)
7738     g_object_ref (pixbuf);
7739
7740   gtk_entry_clear (entry, icon_pos);
7741
7742   if (pixbuf)
7743     {
7744       icon_info->storage_type = GTK_IMAGE_PIXBUF;
7745       icon_info->pixbuf = pixbuf;
7746
7747       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7748         {
7749           g_object_notify (G_OBJECT (entry), "primary-icon-pixbuf");
7750           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7751         }
7752       else
7753         {
7754           g_object_notify (G_OBJECT (entry), "secondary-icon-pixbuf");
7755           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7756         }
7757
7758       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7759           gdk_window_show_unraised (icon_info->window);
7760     }
7761
7762   gtk_entry_ensure_pixbuf (entry, icon_pos);
7763   
7764   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7765     gtk_widget_queue_resize (GTK_WIDGET (entry));
7766
7767   g_object_thaw_notify (G_OBJECT (entry));
7768 }
7769
7770 /**
7771  * gtk_entry_set_icon_from_stock:
7772  * @entry: A #GtkEntry
7773  * @icon_pos: Icon position
7774  * @stock_id: (allow-none): The name of the stock item, or %NULL
7775  *
7776  * Sets the icon shown in the entry at the specified position from
7777  * a stock image.
7778  *
7779  * If @stock_id is %NULL, no icon will be shown in the specified position.
7780  *
7781  * Since: 2.16
7782  */
7783 void
7784 gtk_entry_set_icon_from_stock (GtkEntry             *entry,
7785                                GtkEntryIconPosition  icon_pos,
7786                                const gchar          *stock_id)
7787 {
7788   GtkEntryPrivate *priv;
7789   EntryIconInfo *icon_info;
7790   gchar *new_id;
7791
7792   g_return_if_fail (GTK_IS_ENTRY (entry));
7793   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7794
7795   priv = entry->priv;
7796
7797   if ((icon_info = priv->icons[icon_pos]) == NULL)
7798     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7799
7800   g_object_freeze_notify (G_OBJECT (entry));
7801
7802   /* need to dup before clearing */
7803   new_id = g_strdup (stock_id);
7804
7805   gtk_entry_clear (entry, icon_pos);
7806
7807   if (new_id != NULL)
7808     {
7809       icon_info->storage_type = GTK_IMAGE_STOCK;
7810       icon_info->stock_id = new_id;
7811
7812       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7813         {
7814           g_object_notify (G_OBJECT (entry), "primary-icon-stock");
7815           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7816         }
7817       else
7818         {
7819           g_object_notify (G_OBJECT (entry), "secondary-icon-stock");
7820           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7821         }
7822
7823       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7824           gdk_window_show_unraised (icon_info->window);
7825     }
7826
7827   gtk_entry_ensure_pixbuf (entry, icon_pos);
7828
7829   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7830     gtk_widget_queue_resize (GTK_WIDGET (entry));
7831
7832   g_object_thaw_notify (G_OBJECT (entry));
7833 }
7834
7835 /**
7836  * gtk_entry_set_icon_from_icon_name:
7837  * @entry: A #GtkEntry
7838  * @icon_pos: The position at which to set the icon
7839  * @icon_name: (allow-none): An icon name, or %NULL
7840  *
7841  * Sets the icon shown in the entry at the specified position
7842  * from the current icon theme.
7843  *
7844  * If the icon name isn't known, a "broken image" icon will be displayed
7845  * instead.
7846  *
7847  * If @icon_name is %NULL, no icon will be shown in the specified position.
7848  *
7849  * Since: 2.16
7850  */
7851 void
7852 gtk_entry_set_icon_from_icon_name (GtkEntry             *entry,
7853                                    GtkEntryIconPosition  icon_pos,
7854                                    const gchar          *icon_name)
7855 {
7856   GtkEntryPrivate *priv;
7857   EntryIconInfo *icon_info;
7858   gchar *new_name;
7859
7860   g_return_if_fail (GTK_IS_ENTRY (entry));
7861   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7862
7863   priv = entry->priv;
7864
7865   if ((icon_info = priv->icons[icon_pos]) == NULL)
7866     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7867
7868   g_object_freeze_notify (G_OBJECT (entry));
7869
7870   /* need to dup before clearing */
7871   new_name = g_strdup (icon_name);
7872
7873   gtk_entry_clear (entry, icon_pos);
7874
7875   if (new_name != NULL)
7876     {
7877       icon_info->storage_type = GTK_IMAGE_ICON_NAME;
7878       icon_info->icon_name = new_name;
7879
7880       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7881         {
7882           g_object_notify (G_OBJECT (entry), "primary-icon-name");
7883           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7884         }
7885       else
7886         {
7887           g_object_notify (G_OBJECT (entry), "secondary-icon-name");
7888           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7889         }
7890
7891       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7892           gdk_window_show_unraised (icon_info->window);
7893     }
7894
7895   gtk_entry_ensure_pixbuf (entry, icon_pos);
7896
7897   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7898     gtk_widget_queue_resize (GTK_WIDGET (entry));
7899
7900   g_object_thaw_notify (G_OBJECT (entry));
7901 }
7902
7903 /**
7904  * gtk_entry_set_icon_from_gicon:
7905  * @entry: A #GtkEntry
7906  * @icon_pos: The position at which to set the icon
7907  * @icon: (allow-none): The icon to set, or %NULL
7908  *
7909  * Sets the icon shown in the entry at the specified position
7910  * from the current icon theme.
7911  * If the icon isn't known, a "broken image" icon will be displayed
7912  * instead.
7913  *
7914  * If @icon is %NULL, no icon will be shown in the specified position.
7915  *
7916  * Since: 2.16
7917  */
7918 void
7919 gtk_entry_set_icon_from_gicon (GtkEntry             *entry,
7920                                GtkEntryIconPosition  icon_pos,
7921                                GIcon                *icon)
7922 {
7923   GtkEntryPrivate *priv;
7924   EntryIconInfo *icon_info;
7925
7926   g_return_if_fail (GTK_IS_ENTRY (entry));
7927   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7928
7929   priv = entry->priv;
7930
7931   if ((icon_info = priv->icons[icon_pos]) == NULL)
7932     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7933
7934   g_object_freeze_notify (G_OBJECT (entry));
7935
7936   /* need to ref before clearing */
7937   if (icon)
7938     g_object_ref (icon);
7939
7940   gtk_entry_clear (entry, icon_pos);
7941
7942   if (icon)
7943     {
7944       icon_info->storage_type = GTK_IMAGE_GICON;
7945       icon_info->gicon = icon;
7946
7947       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7948         {
7949           g_object_notify (G_OBJECT (entry), "primary-icon-gicon");
7950           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7951         }
7952       else
7953         {
7954           g_object_notify (G_OBJECT (entry), "secondary-icon-gicon");
7955           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7956         }
7957
7958       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7959           gdk_window_show_unraised (icon_info->window);
7960     }
7961
7962   gtk_entry_ensure_pixbuf (entry, icon_pos);
7963
7964   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7965     gtk_widget_queue_resize (GTK_WIDGET (entry));
7966
7967   g_object_thaw_notify (G_OBJECT (entry));
7968 }
7969
7970 /**
7971  * gtk_entry_set_icon_activatable:
7972  * @entry: A #GtkEntry
7973  * @icon_pos: Icon position
7974  * @activatable: %TRUE if the icon should be activatable
7975  *
7976  * Sets whether the icon is activatable.
7977  *
7978  * Since: 2.16
7979  */
7980 void
7981 gtk_entry_set_icon_activatable (GtkEntry             *entry,
7982                                 GtkEntryIconPosition  icon_pos,
7983                                 gboolean              activatable)
7984 {
7985   GtkEntryPrivate *priv;
7986   EntryIconInfo *icon_info;
7987
7988   g_return_if_fail (GTK_IS_ENTRY (entry));
7989   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7990
7991   priv = entry->priv;
7992
7993   if ((icon_info = priv->icons[icon_pos]) == NULL)
7994     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7995
7996   activatable = activatable != FALSE;
7997
7998   if (icon_info->nonactivatable != !activatable)
7999     {
8000       icon_info->nonactivatable = !activatable;
8001
8002       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8003         update_cursors (GTK_WIDGET (entry));
8004
8005       g_object_notify (G_OBJECT (entry),
8006                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-activatable" : "secondary-icon-activatable");
8007     }
8008 }
8009
8010 /**
8011  * gtk_entry_get_icon_activatable:
8012  * @entry: a #GtkEntry
8013  * @icon_pos: Icon position
8014  *
8015  * Returns whether the icon is activatable.
8016  *
8017  * Returns: %TRUE if the icon is activatable.
8018  *
8019  * Since: 2.16
8020  */
8021 gboolean
8022 gtk_entry_get_icon_activatable (GtkEntry             *entry,
8023                                 GtkEntryIconPosition  icon_pos)
8024 {
8025   GtkEntryPrivate *priv;
8026   EntryIconInfo *icon_info;
8027
8028   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
8029   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), FALSE);
8030
8031   priv = entry->priv;
8032   icon_info = priv->icons[icon_pos];
8033
8034   return (!icon_info || !icon_info->nonactivatable);
8035 }
8036
8037 /**
8038  * gtk_entry_get_icon_pixbuf:
8039  * @entry: A #GtkEntry
8040  * @icon_pos: Icon position
8041  *
8042  * Retrieves the image used for the icon.
8043  *
8044  * Unlike the other methods of setting and getting icon data, this
8045  * method will work regardless of whether the icon was set using a
8046  * #GdkPixbuf, a #GIcon, a stock item, or an icon name.
8047  *
8048  * Returns: (transfer none): A #GdkPixbuf, or %NULL if no icon is
8049  *     set for this position.
8050  *
8051  * Since: 2.16
8052  */
8053 GdkPixbuf *
8054 gtk_entry_get_icon_pixbuf (GtkEntry             *entry,
8055                            GtkEntryIconPosition  icon_pos)
8056 {
8057   GtkEntryPrivate *priv;
8058   EntryIconInfo *icon_info;
8059
8060   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8061   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8062
8063   priv = entry->priv;
8064
8065   icon_info = priv->icons[icon_pos];
8066
8067   if (!icon_info)
8068     return NULL;
8069
8070   gtk_entry_ensure_pixbuf (entry, icon_pos);
8071
8072   return icon_info->pixbuf;
8073 }
8074
8075 /**
8076  * gtk_entry_get_icon_gicon:
8077  * @entry: A #GtkEntry
8078  * @icon_pos: Icon position
8079  *
8080  * Retrieves the #GIcon used for the icon, or %NULL if there is
8081  * no icon or if the icon was set by some other method (e.g., by
8082  * stock, pixbuf, or icon name).
8083  *
8084  * Returns: (transfer none): A #GIcon, or %NULL if no icon is set
8085  *     or if the icon is not a #GIcon
8086  *
8087  * Since: 2.16
8088  */
8089 GIcon *
8090 gtk_entry_get_icon_gicon (GtkEntry             *entry,
8091                           GtkEntryIconPosition  icon_pos)
8092 {
8093   GtkEntryPrivate *priv;
8094   EntryIconInfo *icon_info;
8095
8096   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8097   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8098
8099   priv = entry->priv;
8100   icon_info = priv->icons[icon_pos];
8101
8102   if (!icon_info)
8103     return NULL;
8104
8105   return icon_info->storage_type == GTK_IMAGE_GICON ? icon_info->gicon : NULL;
8106 }
8107
8108 /**
8109  * gtk_entry_get_icon_stock:
8110  * @entry: A #GtkEntry
8111  * @icon_pos: Icon position
8112  *
8113  * Retrieves the stock id used for the icon, or %NULL if there is
8114  * no icon or if the icon was set by some other method (e.g., by
8115  * pixbuf, icon name or gicon).
8116  *
8117  * Returns: A stock id, or %NULL if no icon is set or if the icon
8118  *          wasn't set from a stock id
8119  *
8120  * Since: 2.16
8121  */
8122 const gchar *
8123 gtk_entry_get_icon_stock (GtkEntry             *entry,
8124                           GtkEntryIconPosition  icon_pos)
8125 {
8126   GtkEntryPrivate *priv;
8127   EntryIconInfo *icon_info;
8128
8129   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8130   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8131
8132   priv = entry->priv;
8133   icon_info = priv->icons[icon_pos];
8134
8135   if (!icon_info)
8136     return NULL;
8137
8138   return icon_info->storage_type == GTK_IMAGE_STOCK ? icon_info->stock_id : NULL;
8139 }
8140
8141 /**
8142  * gtk_entry_get_icon_name:
8143  * @entry: A #GtkEntry
8144  * @icon_pos: Icon position
8145  *
8146  * Retrieves the icon name used for the icon, or %NULL if there is
8147  * no icon or if the icon was set by some other method (e.g., by
8148  * pixbuf, stock or gicon).
8149  *
8150  * Returns: An icon name, or %NULL if no icon is set or if the icon
8151  *          wasn't set from an icon name
8152  *
8153  * Since: 2.16
8154  */
8155 const gchar *
8156 gtk_entry_get_icon_name (GtkEntry             *entry,
8157                          GtkEntryIconPosition  icon_pos)
8158 {
8159   GtkEntryPrivate *priv;
8160   EntryIconInfo *icon_info;
8161
8162   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8163   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8164
8165   priv = entry->priv;
8166   icon_info = priv->icons[icon_pos];
8167
8168   if (!icon_info)
8169     return NULL;
8170
8171   return icon_info->storage_type == GTK_IMAGE_ICON_NAME ? icon_info->icon_name : NULL;
8172 }
8173
8174 /**
8175  * gtk_entry_set_icon_sensitive:
8176  * @entry: A #GtkEntry
8177  * @icon_pos: Icon position
8178  * @sensitive: Specifies whether the icon should appear
8179  *             sensitive or insensitive
8180  *
8181  * Sets the sensitivity for the specified icon.
8182  *
8183  * Since: 2.16
8184  */
8185 void
8186 gtk_entry_set_icon_sensitive (GtkEntry             *entry,
8187                               GtkEntryIconPosition  icon_pos,
8188                               gboolean              sensitive)
8189 {
8190   GtkEntryPrivate *priv;
8191   EntryIconInfo *icon_info;
8192
8193   g_return_if_fail (GTK_IS_ENTRY (entry));
8194   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8195
8196   priv = entry->priv;
8197
8198   if ((icon_info = priv->icons[icon_pos]) == NULL)
8199     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8200
8201   if (icon_info->insensitive != !sensitive)
8202     {
8203       icon_info->insensitive = !sensitive;
8204
8205       icon_info->pressed = FALSE;
8206       icon_info->prelight = FALSE;
8207
8208       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8209         update_cursors (GTK_WIDGET (entry));
8210
8211       gtk_widget_queue_draw (GTK_WIDGET (entry));
8212
8213       g_object_notify (G_OBJECT (entry),
8214                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-sensitive" : "secondary-icon-sensitive");
8215     }
8216 }
8217
8218 /**
8219  * gtk_entry_get_icon_sensitive:
8220  * @entry: a #GtkEntry
8221  * @icon_pos: Icon position
8222  *
8223  * Returns whether the icon appears sensitive or insensitive.
8224  *
8225  * Returns: %TRUE if the icon is sensitive.
8226  *
8227  * Since: 2.16
8228  */
8229 gboolean
8230 gtk_entry_get_icon_sensitive (GtkEntry             *entry,
8231                               GtkEntryIconPosition  icon_pos)
8232 {
8233   GtkEntryPrivate *priv;
8234   EntryIconInfo *icon_info;
8235
8236   g_return_val_if_fail (GTK_IS_ENTRY (entry), TRUE);
8237   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), TRUE);
8238
8239   priv = entry->priv;
8240
8241   icon_info = priv->icons[icon_pos];
8242
8243   return (!icon_info || !icon_info->insensitive);
8244
8245 }
8246
8247 /**
8248  * gtk_entry_get_icon_storage_type:
8249  * @entry: a #GtkEntry
8250  * @icon_pos: Icon position
8251  *
8252  * Gets the type of representation being used by the icon
8253  * to store image data. If the icon has no image data,
8254  * the return value will be %GTK_IMAGE_EMPTY.
8255  *
8256  * Return value: image representation being used
8257  *
8258  * Since: 2.16
8259  **/
8260 GtkImageType
8261 gtk_entry_get_icon_storage_type (GtkEntry             *entry,
8262                                  GtkEntryIconPosition  icon_pos)
8263 {
8264   GtkEntryPrivate *priv;
8265   EntryIconInfo *icon_info;
8266
8267   g_return_val_if_fail (GTK_IS_ENTRY (entry), GTK_IMAGE_EMPTY);
8268   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), GTK_IMAGE_EMPTY);
8269
8270   priv = entry->priv;
8271
8272   icon_info = priv->icons[icon_pos];
8273
8274   if (!icon_info)
8275     return GTK_IMAGE_EMPTY;
8276
8277   return icon_info->storage_type;
8278 }
8279
8280 /**
8281  * gtk_entry_get_icon_at_pos:
8282  * @entry: a #GtkEntry
8283  * @x: the x coordinate of the position to find
8284  * @y: the y coordinate of the position to find
8285  *
8286  * Finds the icon at the given position and return its index. The
8287  * position's coordinates are relative to the @entry's top left corner.
8288  * If @x, @y doesn't lie inside an icon, -1 is returned.
8289  * This function is intended for use in a #GtkWidget::query-tooltip
8290  * signal handler.
8291  *
8292  * Returns: the index of the icon at the given position, or -1
8293  *
8294  * Since: 2.16
8295  */
8296 gint
8297 gtk_entry_get_icon_at_pos (GtkEntry *entry,
8298                            gint      x,
8299                            gint      y)
8300 {
8301   GtkAllocation primary;
8302   GtkAllocation secondary;
8303   gint frame_x, frame_y;
8304
8305   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8306
8307   get_frame_size (entry, FALSE, &frame_x, &frame_y, NULL, NULL);
8308   x -= frame_x;
8309   y -= frame_y;
8310
8311   get_icon_allocations (entry, &primary, &secondary);
8312
8313   if (primary.x <= x && x < primary.x + primary.width &&
8314       primary.y <= y && y < primary.y + primary.height)
8315     return GTK_ENTRY_ICON_PRIMARY;
8316
8317   if (secondary.x <= x && x < secondary.x + secondary.width &&
8318       secondary.y <= y && y < secondary.y + secondary.height)
8319     return GTK_ENTRY_ICON_SECONDARY;
8320
8321   return -1;
8322 }
8323
8324 /**
8325  * gtk_entry_set_icon_drag_source:
8326  * @entry: a #GtkIconEntry
8327  * @icon_pos: icon position
8328  * @target_list: the targets (data formats) in which the data can be provided
8329  * @actions: a bitmask of the allowed drag actions
8330  *
8331  * Sets up the icon at the given position so that GTK+ will start a drag
8332  * operation when the user clicks and drags the icon.
8333  *
8334  * To handle the drag operation, you need to connect to the usual
8335  * #GtkWidget::drag-data-get (or possibly #GtkWidget::drag-data-delete)
8336  * signal, and use gtk_entry_get_current_icon_drag_source() in
8337  * your signal handler to find out if the drag was started from
8338  * an icon.
8339  *
8340  * By default, GTK+ uses the icon as the drag icon. You can use the 
8341  * #GtkWidget::drag-begin signal to set a different icon. Note that you 
8342  * have to use g_signal_connect_after() to ensure that your signal handler
8343  * gets executed after the default handler.
8344  *
8345  * Since: 2.16
8346  */
8347 void
8348 gtk_entry_set_icon_drag_source (GtkEntry             *entry,
8349                                 GtkEntryIconPosition  icon_pos,
8350                                 GtkTargetList        *target_list,
8351                                 GdkDragAction         actions)
8352 {
8353   GtkEntryPrivate *priv;
8354   EntryIconInfo *icon_info;
8355
8356   g_return_if_fail (GTK_IS_ENTRY (entry));
8357   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8358
8359   priv = entry->priv;
8360
8361   if ((icon_info = priv->icons[icon_pos]) == NULL)
8362     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8363
8364   if (icon_info->target_list)
8365     gtk_target_list_unref (icon_info->target_list);
8366   icon_info->target_list = target_list;
8367   if (icon_info->target_list)
8368     gtk_target_list_ref (icon_info->target_list);
8369
8370   icon_info->actions = actions;
8371 }
8372
8373 /**
8374  * gtk_entry_get_current_icon_drag_source:
8375  * @entry: a #GtkIconEntry
8376  *
8377  * Returns the index of the icon which is the source of the current
8378  * DND operation, or -1.
8379  *
8380  * This function is meant to be used in a #GtkWidget::drag-data-get
8381  * callback.
8382  *
8383  * Returns: index of the icon which is the source of the current
8384  *          DND operation, or -1.
8385  *
8386  * Since: 2.16
8387  */
8388 gint
8389 gtk_entry_get_current_icon_drag_source (GtkEntry *entry)
8390 {
8391   GtkEntryPrivate *priv;
8392   EntryIconInfo *icon_info = NULL;
8393   gint i;
8394
8395   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8396
8397   priv = entry->priv;
8398
8399   for (i = 0; i < MAX_ICONS; i++)
8400     {
8401       if ((icon_info = priv->icons[i]))
8402         {
8403           if (icon_info->in_drag)
8404             return i;
8405         }
8406     }
8407
8408   return -1;
8409 }
8410
8411 /**
8412  * gtk_entry_get_icon_area:
8413  * @entry: A #GtkEntry
8414  * @icon_pos: Icon position
8415  * @icon_area: (out): Return location for the icon's area
8416  *
8417  * Gets the area where entry's icon at @icon_pos is drawn.
8418  * This function is useful when drawing something to the
8419  * entry in a draw callback.
8420  *
8421  * If the entry is not realized or has no icon at the given position,
8422  * @icon_area is filled with zeros.
8423  *
8424  * See also gtk_entry_get_text_area()
8425  *
8426  * Since: 3.0
8427  */
8428 void
8429 gtk_entry_get_icon_area (GtkEntry             *entry,
8430                          GtkEntryIconPosition  icon_pos,
8431                          GdkRectangle         *icon_area)
8432 {
8433   GtkEntryPrivate *priv;
8434   EntryIconInfo *icon_info;
8435
8436   g_return_if_fail (GTK_IS_ENTRY (entry));
8437   g_return_if_fail (icon_area != NULL);
8438
8439   priv = entry->priv;
8440
8441   icon_info = priv->icons[icon_pos];
8442
8443   if (icon_info)
8444     {
8445       GtkAllocation primary;
8446       GtkAllocation secondary;
8447
8448       get_icon_allocations (entry, &primary, &secondary);
8449
8450       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8451         *icon_area = primary;
8452       else
8453         *icon_area = secondary;
8454     }
8455   else
8456     {
8457       icon_area->x = 0;
8458       icon_area->y = 0;
8459       icon_area->width = 0;
8460       icon_area->height = 0;
8461     }
8462 }
8463
8464 static void
8465 ensure_has_tooltip (GtkEntry *entry)
8466 {
8467   GtkEntryPrivate *priv;
8468   EntryIconInfo *icon_info;
8469   int i;
8470   gboolean has_tooltip = FALSE;
8471
8472   priv = entry->priv;
8473
8474   for (i = 0; i < MAX_ICONS; i++)
8475     {
8476       if ((icon_info = priv->icons[i]) != NULL)
8477         {
8478           if (icon_info->tooltip != NULL)
8479             {
8480               has_tooltip = TRUE;
8481               break;
8482             }
8483         }
8484     }
8485
8486   gtk_widget_set_has_tooltip (GTK_WIDGET (entry), has_tooltip);
8487 }
8488
8489 /**
8490  * gtk_entry_get_icon_tooltip_text:
8491  * @entry: a #GtkEntry
8492  * @icon_pos: the icon position
8493  *
8494  * Gets the contents of the tooltip on the icon at the specified 
8495  * position in @entry.
8496  * 
8497  * Returns: the tooltip text, or %NULL. Free the returned string
8498  *     with g_free() when done.
8499  * 
8500  * Since: 2.16
8501  */
8502 gchar *
8503 gtk_entry_get_icon_tooltip_text (GtkEntry             *entry,
8504                                  GtkEntryIconPosition  icon_pos)
8505 {
8506   GtkEntryPrivate *priv;
8507   EntryIconInfo *icon_info;
8508   gchar *text = NULL;
8509
8510   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8511   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8512
8513   priv = entry->priv;
8514
8515   icon_info = priv->icons[icon_pos];
8516
8517   if (!icon_info)
8518     return NULL;
8519  
8520   if (icon_info->tooltip && 
8521       !pango_parse_markup (icon_info->tooltip, -1, 0, NULL, &text, NULL, NULL))
8522     g_assert (NULL == text); /* text should still be NULL in case of markup errors */
8523
8524   return text;
8525 }
8526
8527 /**
8528  * gtk_entry_set_icon_tooltip_text:
8529  * @entry: a #GtkEntry
8530  * @icon_pos: the icon position
8531  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8532  *
8533  * Sets @tooltip as the contents of the tooltip for the icon
8534  * at the specified position.
8535  *
8536  * Use %NULL for @tooltip to remove an existing tooltip.
8537  *
8538  * See also gtk_widget_set_tooltip_text() and 
8539  * gtk_entry_set_icon_tooltip_markup().
8540  *
8541  * Since: 2.16
8542  */
8543 void
8544 gtk_entry_set_icon_tooltip_text (GtkEntry             *entry,
8545                                  GtkEntryIconPosition  icon_pos,
8546                                  const gchar          *tooltip)
8547 {
8548   GtkEntryPrivate *priv;
8549   EntryIconInfo *icon_info;
8550
8551   g_return_if_fail (GTK_IS_ENTRY (entry));
8552   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8553
8554   priv = entry->priv;
8555
8556   if ((icon_info = priv->icons[icon_pos]) == NULL)
8557     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8558
8559   if (icon_info->tooltip)
8560     g_free (icon_info->tooltip);
8561
8562   /* Treat an empty string as a NULL string,
8563    * because an empty string would be useless for a tooltip:
8564    */
8565   if (tooltip && tooltip[0] == '\0')
8566     tooltip = NULL;
8567
8568   icon_info->tooltip = tooltip ? g_markup_escape_text (tooltip, -1) : NULL;
8569
8570   ensure_has_tooltip (entry);
8571 }
8572
8573 /**
8574  * gtk_entry_get_icon_tooltip_markup:
8575  * @entry: a #GtkEntry
8576  * @icon_pos: the icon position
8577  *
8578  * Gets the contents of the tooltip on the icon at the specified 
8579  * position in @entry.
8580  * 
8581  * Returns: the tooltip text, or %NULL. Free the returned string
8582  *     with g_free() when done.
8583  * 
8584  * Since: 2.16
8585  */
8586 gchar *
8587 gtk_entry_get_icon_tooltip_markup (GtkEntry             *entry,
8588                                    GtkEntryIconPosition  icon_pos)
8589 {
8590   GtkEntryPrivate *priv;
8591   EntryIconInfo *icon_info;
8592
8593   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8594   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8595
8596   priv = entry->priv;
8597
8598   icon_info = priv->icons[icon_pos];
8599
8600   if (!icon_info)
8601     return NULL;
8602  
8603   return g_strdup (icon_info->tooltip);
8604 }
8605
8606 /**
8607  * gtk_entry_set_icon_tooltip_markup:
8608  * @entry: a #GtkEntry
8609  * @icon_pos: the icon position
8610  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8611  *
8612  * Sets @tooltip as the contents of the tooltip for the icon at
8613  * the specified position. @tooltip is assumed to be marked up with
8614  * the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
8615  *
8616  * Use %NULL for @tooltip to remove an existing tooltip.
8617  *
8618  * See also gtk_widget_set_tooltip_markup() and 
8619  * gtk_enty_set_icon_tooltip_text().
8620  *
8621  * Since: 2.16
8622  */
8623 void
8624 gtk_entry_set_icon_tooltip_markup (GtkEntry             *entry,
8625                                    GtkEntryIconPosition  icon_pos,
8626                                    const gchar          *tooltip)
8627 {
8628   GtkEntryPrivate *priv;
8629   EntryIconInfo *icon_info;
8630
8631   g_return_if_fail (GTK_IS_ENTRY (entry));
8632   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8633
8634   priv = entry->priv;
8635
8636   if ((icon_info = priv->icons[icon_pos]) == NULL)
8637     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8638
8639   if (icon_info->tooltip)
8640     g_free (icon_info->tooltip);
8641
8642   /* Treat an empty string as a NULL string,
8643    * because an empty string would be useless for a tooltip:
8644    */
8645   if (tooltip && tooltip[0] == '\0')
8646     tooltip = NULL;
8647
8648   icon_info->tooltip = g_strdup (tooltip);
8649
8650   ensure_has_tooltip (entry);
8651 }
8652
8653 static gboolean
8654 gtk_entry_query_tooltip (GtkWidget  *widget,
8655                          gint        x,
8656                          gint        y,
8657                          gboolean    keyboard_tip,
8658                          GtkTooltip *tooltip)
8659 {
8660   GtkEntry *entry;
8661   GtkEntryPrivate *priv;
8662   EntryIconInfo *icon_info;
8663   gint icon_pos;
8664
8665   entry = GTK_ENTRY (widget);
8666   priv = entry->priv;
8667
8668   if (!keyboard_tip)
8669     {
8670       icon_pos = gtk_entry_get_icon_at_pos (entry, x, y);
8671       if (icon_pos != -1)
8672         {
8673           if ((icon_info = priv->icons[icon_pos]) != NULL)
8674             {
8675               if (icon_info->tooltip)
8676                 {
8677                   gtk_tooltip_set_markup (tooltip, icon_info->tooltip);
8678                   return TRUE;
8679                 }
8680
8681               return FALSE;
8682             }
8683         }
8684     }
8685
8686   return GTK_WIDGET_CLASS (gtk_entry_parent_class)->query_tooltip (widget,
8687                                                                    x, y,
8688                                                                    keyboard_tip,
8689                                                                    tooltip);
8690 }
8691
8692
8693 /* Quick hack of a popup menu
8694  */
8695 static void
8696 activate_cb (GtkWidget *menuitem,
8697              GtkEntry  *entry)
8698 {
8699   const gchar *signal = g_object_get_data (G_OBJECT (menuitem), "gtk-signal");
8700   g_signal_emit_by_name (entry, signal);
8701 }
8702
8703
8704 static gboolean
8705 gtk_entry_mnemonic_activate (GtkWidget *widget,
8706                              gboolean   group_cycling)
8707 {
8708   gtk_widget_grab_focus (widget);
8709   return TRUE;
8710 }
8711
8712 static void
8713 append_action_signal (GtkEntry     *entry,
8714                       GtkWidget    *menu,
8715                       const gchar  *stock_id,
8716                       const gchar  *signal,
8717                       gboolean      sensitive)
8718 {
8719   GtkWidget *menuitem = gtk_image_menu_item_new_from_stock (stock_id, NULL);
8720
8721   g_object_set_data (G_OBJECT (menuitem), I_("gtk-signal"), (char *)signal);
8722   g_signal_connect (menuitem, "activate",
8723                     G_CALLBACK (activate_cb), entry);
8724
8725   gtk_widget_set_sensitive (menuitem, sensitive);
8726   
8727   gtk_widget_show (menuitem);
8728   gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
8729 }
8730         
8731 static void
8732 popup_menu_detach (GtkWidget *attach_widget,
8733                    GtkMenu   *menu)
8734 {
8735   GtkEntry *entry_attach = GTK_ENTRY (attach_widget);
8736   GtkEntryPrivate *priv_attach = entry_attach->priv;
8737
8738   priv_attach->popup_menu = NULL;
8739 }
8740
8741 static void
8742 popup_position_func (GtkMenu   *menu,
8743                      gint      *x,
8744                      gint      *y,
8745                      gboolean  *push_in,
8746                      gpointer   user_data)
8747 {
8748   GtkEntry *entry = GTK_ENTRY (user_data);
8749   GtkEntryPrivate *priv = entry->priv;
8750   GtkWidget *widget = GTK_WIDGET (entry);
8751   GdkScreen *screen;
8752   GtkRequisition menu_req;
8753   GdkRectangle monitor;
8754   GtkBorder inner_border;
8755   gint monitor_num, strong_x, height;
8756  
8757   g_return_if_fail (gtk_widget_get_realized (widget));
8758
8759   gdk_window_get_origin (priv->text_area, x, y);
8760
8761   screen = gtk_widget_get_screen (widget);
8762   monitor_num = gdk_screen_get_monitor_at_window (screen, priv->text_area);
8763   if (monitor_num < 0)
8764     monitor_num = 0;
8765   gtk_menu_set_monitor (menu, monitor_num);
8766
8767   gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor);
8768   gtk_widget_get_preferred_size (priv->popup_menu,
8769                                  &menu_req, NULL);
8770   height = gdk_window_get_height (priv->text_area);
8771   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
8772   _gtk_entry_effective_inner_border (entry, &inner_border);
8773
8774   *x += inner_border.left + strong_x - priv->scroll_offset;
8775   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
8776     *x -= menu_req.width;
8777
8778   if ((*y + height + menu_req.height) <= monitor.y + monitor.height)
8779     *y += height;
8780   else if ((*y - menu_req.height) >= monitor.y)
8781     *y -= menu_req.height;
8782   else if (monitor.y + monitor.height - (*y + height) > *y)
8783     *y += height;
8784   else
8785     *y -= menu_req.height;
8786
8787   *push_in = FALSE;
8788 }
8789
8790 static void
8791 unichar_chosen_func (const char *text,
8792                      gpointer    data)
8793 {
8794   GtkEntry *entry = GTK_ENTRY (data);
8795   GtkEntryPrivate *priv = entry->priv;
8796
8797   if (priv->editable)
8798     gtk_entry_enter_text (entry, text);
8799 }
8800
8801 typedef struct
8802 {
8803   GtkEntry *entry;
8804   gint button;
8805   guint time;
8806 } PopupInfo;
8807
8808 static void
8809 popup_targets_received (GtkClipboard     *clipboard,
8810                         GtkSelectionData *data,
8811                         gpointer          user_data)
8812 {
8813   PopupInfo *info = user_data;
8814   GtkEntry *entry = info->entry;
8815   GtkEntryPrivate *info_entry_priv = entry->priv;
8816
8817   if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8818     {
8819       DisplayMode mode;
8820       gboolean clipboard_contains_text;
8821       GtkWidget *menuitem;
8822       GtkWidget *submenu;
8823       gboolean show_input_method_menu;
8824       gboolean show_unicode_menu;
8825       
8826       clipboard_contains_text = gtk_selection_data_targets_include_text (data);
8827       if (info_entry_priv->popup_menu)
8828         gtk_widget_destroy (info_entry_priv->popup_menu);
8829
8830       info_entry_priv->popup_menu = gtk_menu_new ();
8831
8832       gtk_menu_attach_to_widget (GTK_MENU (info_entry_priv->popup_menu),
8833                                  GTK_WIDGET (entry),
8834                                  popup_menu_detach);
8835       
8836       mode = gtk_entry_get_display_mode (entry);
8837       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_CUT, "cut-clipboard",
8838                             info_entry_priv->editable && mode == DISPLAY_NORMAL &&
8839                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
8840
8841       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_COPY, "copy-clipboard",
8842                             mode == DISPLAY_NORMAL &&
8843                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
8844
8845       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_PASTE, "paste-clipboard",
8846                             info_entry_priv->editable && clipboard_contains_text);
8847
8848       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
8849       gtk_widget_set_sensitive (menuitem, info_entry_priv->editable && info_entry_priv->current_pos != info_entry_priv->selection_bound);
8850       g_signal_connect_swapped (menuitem, "activate",
8851                                 G_CALLBACK (gtk_entry_delete_cb), entry);
8852       gtk_widget_show (menuitem);
8853       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8854
8855       menuitem = gtk_separator_menu_item_new ();
8856       gtk_widget_show (menuitem);
8857       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8858       
8859       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
8860       g_signal_connect_swapped (menuitem, "activate",
8861                                 G_CALLBACK (gtk_entry_select_all), entry);
8862       gtk_widget_show (menuitem);
8863       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8864       
8865       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
8866                     "gtk-show-input-method-menu", &show_input_method_menu,
8867                     "gtk-show-unicode-menu", &show_unicode_menu,
8868                     NULL);
8869
8870       if (show_input_method_menu || show_unicode_menu)
8871         {
8872           menuitem = gtk_separator_menu_item_new ();
8873           gtk_widget_show (menuitem);
8874           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8875         }
8876       
8877       if (show_input_method_menu)
8878         {
8879           menuitem = gtk_menu_item_new_with_mnemonic (_("Input _Methods"));
8880           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
8881           gtk_widget_show (menuitem);
8882           submenu = gtk_menu_new ();
8883           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
8884
8885           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8886
8887           gtk_im_multicontext_append_menuitems (GTK_IM_MULTICONTEXT (info_entry_priv->im_context),
8888                                                 GTK_MENU_SHELL (submenu));
8889         }
8890       
8891       if (show_unicode_menu)
8892         {
8893           menuitem = gtk_menu_item_new_with_mnemonic (_("_Insert Unicode Control Character"));
8894           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
8895           gtk_widget_show (menuitem);
8896           
8897           submenu = gtk_menu_new ();
8898           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
8899           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
8900
8901           _gtk_text_util_append_special_char_menuitems (GTK_MENU_SHELL (submenu),
8902                                                         unichar_chosen_func,
8903                                                         entry);
8904         }
8905       
8906       g_signal_emit (entry,
8907                      signals[POPULATE_POPUP],
8908                      0,
8909                      info_entry_priv->popup_menu);
8910
8911
8912       if (info->button)
8913         gtk_menu_popup (GTK_MENU (info_entry_priv->popup_menu), NULL, NULL,
8914                         NULL, NULL,
8915                         info->button, info->time);
8916       else
8917         {
8918           gtk_menu_popup (GTK_MENU (info_entry_priv->popup_menu), NULL, NULL,
8919                           popup_position_func, entry,
8920                           info->button, info->time);
8921           gtk_menu_shell_select_first (GTK_MENU_SHELL (info_entry_priv->popup_menu), FALSE);
8922         }
8923     }
8924
8925   g_object_unref (entry);
8926   g_slice_free (PopupInfo, info);
8927 }
8928                         
8929 static void
8930 gtk_entry_do_popup (GtkEntry       *entry,
8931                     GdkEventButton *event)
8932 {
8933   PopupInfo *info = g_slice_new (PopupInfo);
8934
8935   /* In order to know what entries we should make sensitive, we
8936    * ask for the current targets of the clipboard, and when
8937    * we get them, then we actually pop up the menu.
8938    */
8939   info->entry = g_object_ref (entry);
8940   
8941   if (event)
8942     {
8943       info->button = event->button;
8944       info->time = event->time;
8945     }
8946   else
8947     {
8948       info->button = 0;
8949       info->time = gtk_get_current_event_time ();
8950     }
8951
8952   gtk_clipboard_request_contents (gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_CLIPBOARD),
8953                                   gdk_atom_intern_static_string ("TARGETS"),
8954                                   popup_targets_received,
8955                                   info);
8956 }
8957
8958 static gboolean
8959 gtk_entry_popup_menu (GtkWidget *widget)
8960 {
8961   gtk_entry_do_popup (GTK_ENTRY (widget), NULL);
8962   return TRUE;
8963 }
8964
8965 static void
8966 gtk_entry_drag_begin (GtkWidget      *widget,
8967                       GdkDragContext *context)
8968 {
8969   GtkEntry *entry = GTK_ENTRY (widget);
8970   GtkEntryPrivate *priv = entry->priv;
8971   gint i;
8972
8973   for (i = 0; i < MAX_ICONS; i++)
8974     {
8975       EntryIconInfo *icon_info = priv->icons[i];
8976       
8977       if (icon_info != NULL)
8978         {
8979           if (icon_info->in_drag) 
8980             {
8981               switch (icon_info->storage_type)
8982                 {
8983                 case GTK_IMAGE_STOCK:
8984                   gtk_drag_set_icon_stock (context, icon_info->stock_id, -2, -2);
8985                   break;
8986
8987                 case GTK_IMAGE_ICON_NAME:
8988                   gtk_drag_set_icon_name (context, icon_info->icon_name, -2, -2);
8989                   break;
8990
8991                   /* FIXME: No GIcon support for dnd icons */
8992                 case GTK_IMAGE_GICON:
8993                 case GTK_IMAGE_PIXBUF:
8994                   gtk_drag_set_icon_pixbuf (context, icon_info->pixbuf, -2, -2);
8995                   break;
8996                 default:
8997                   g_assert_not_reached ();
8998                 }
8999             }
9000         }
9001     }
9002 }
9003
9004 static void
9005 gtk_entry_drag_end (GtkWidget      *widget,
9006                     GdkDragContext *context)
9007 {
9008   GtkEntry *entry = GTK_ENTRY (widget);
9009   GtkEntryPrivate *priv = entry->priv;
9010   gint i;
9011
9012   for (i = 0; i < MAX_ICONS; i++)
9013     {
9014       EntryIconInfo *icon_info = priv->icons[i];
9015
9016       if (icon_info != NULL)
9017         icon_info->in_drag = 0;
9018     }
9019 }
9020
9021 static void
9022 gtk_entry_drag_leave (GtkWidget        *widget,
9023                       GdkDragContext   *context,
9024                       guint             time)
9025 {
9026   GtkEntry *entry = GTK_ENTRY (widget);
9027   GtkEntryPrivate *priv = entry->priv;
9028
9029   priv->dnd_position = -1;
9030   gtk_widget_queue_draw (widget);
9031 }
9032
9033 static gboolean
9034 gtk_entry_drag_drop  (GtkWidget        *widget,
9035                       GdkDragContext   *context,
9036                       gint              x,
9037                       gint              y,
9038                       guint             time)
9039 {
9040   GtkEntry *entry = GTK_ENTRY (widget);
9041   GtkEntryPrivate *priv = entry->priv;
9042   GdkAtom target = GDK_NONE;
9043
9044   if (priv->editable)
9045     target = gtk_drag_dest_find_target (widget, context, NULL);
9046
9047   if (target != GDK_NONE)
9048     gtk_drag_get_data (widget, context, target, time);
9049   else
9050     gtk_drag_finish (context, FALSE, FALSE, time);
9051   
9052   return TRUE;
9053 }
9054
9055 static gboolean
9056 gtk_entry_drag_motion (GtkWidget        *widget,
9057                        GdkDragContext   *context,
9058                        gint              x,
9059                        gint              y,
9060                        guint             time)
9061 {
9062   GtkEntry *entry = GTK_ENTRY (widget);
9063   GtkEntryPrivate *priv = entry->priv;
9064   GtkStyleContext *style_context;
9065   GtkWidget *source_widget;
9066   GdkDragAction suggested_action;
9067   gint new_position, old_position;
9068   gint sel1, sel2;
9069   GtkBorder padding;
9070
9071   style_context = gtk_widget_get_style_context (widget);
9072   gtk_style_context_get_padding (style_context, 0, &padding);
9073   x -= padding.left;
9074   y -= padding.top;
9075
9076   old_position = priv->dnd_position;
9077   new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9078
9079   if (priv->editable &&
9080       gtk_drag_dest_find_target (widget, context, NULL) != GDK_NONE)
9081     {
9082       source_widget = gtk_drag_get_source_widget (context);
9083       suggested_action = gdk_drag_context_get_suggested_action (context);
9084
9085       if (!gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &sel1, &sel2) ||
9086           new_position < sel1 || new_position > sel2)
9087         {
9088           if (source_widget == widget)
9089             {
9090               /* Default to MOVE, unless the user has
9091                * pressed ctrl or alt to affect available actions
9092                */
9093               if ((gdk_drag_context_get_actions (context) & GDK_ACTION_MOVE) != 0)
9094                 suggested_action = GDK_ACTION_MOVE;
9095             }
9096
9097           priv->dnd_position = new_position;
9098         }
9099       else
9100         {
9101           if (source_widget == widget)
9102             suggested_action = 0;       /* Can't drop in selection where drag started */
9103
9104           priv->dnd_position = -1;
9105         }
9106     }
9107   else
9108     {
9109       /* Entry not editable, or no text */
9110       suggested_action = 0;
9111       priv->dnd_position = -1;
9112     }
9113   
9114   gdk_drag_status (context, suggested_action, time);
9115
9116   if (priv->dnd_position != old_position)
9117     gtk_widget_queue_draw (widget);
9118
9119   return TRUE;
9120 }
9121
9122 static void
9123 gtk_entry_drag_data_received (GtkWidget        *widget,
9124                               GdkDragContext   *context,
9125                               gint              x,
9126                               gint              y,
9127                               GtkSelectionData *selection_data,
9128                               guint             info,
9129                               guint             time)
9130 {
9131   GtkEntry *entry = GTK_ENTRY (widget);
9132   GtkEntryPrivate *priv = entry->priv;
9133   GtkEditable *editable = GTK_EDITABLE (widget);
9134   GtkStyleContext *style_context;
9135   GtkBorder padding;
9136   gchar *str;
9137
9138   str = (gchar *) gtk_selection_data_get_text (selection_data);
9139
9140   style_context = gtk_widget_get_style_context (widget);
9141   gtk_style_context_get_padding (style_context, 0, &padding);
9142   x -= padding.left;
9143   y -= padding.top;
9144
9145   if (str && priv->editable)
9146     {
9147       gint new_position;
9148       gint sel1, sel2;
9149       gint length = -1;
9150
9151       if (priv->truncate_multiline)
9152         length = truncate_multiline (str);
9153
9154       new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9155
9156       if (!gtk_editable_get_selection_bounds (editable, &sel1, &sel2) ||
9157           new_position < sel1 || new_position > sel2)
9158         {
9159           gtk_editable_insert_text (editable, str, length, &new_position);
9160         }
9161       else
9162         {
9163           /* Replacing selection */
9164           begin_change (entry);
9165           g_object_freeze_notify (G_OBJECT (entry));
9166           gtk_editable_delete_text (editable, sel1, sel2);
9167           gtk_editable_insert_text (editable, str, length, &sel1);
9168           g_object_thaw_notify (G_OBJECT (entry));
9169           end_change (entry);
9170         }
9171       
9172       gtk_drag_finish (context, TRUE, gdk_drag_context_get_selected_action (context) == GDK_ACTION_MOVE, time);
9173     }
9174   else
9175     {
9176       /* Drag and drop didn't happen! */
9177       gtk_drag_finish (context, FALSE, FALSE, time);
9178     }
9179
9180   g_free (str);
9181 }
9182
9183 static void
9184 gtk_entry_drag_data_get (GtkWidget        *widget,
9185                          GdkDragContext   *context,
9186                          GtkSelectionData *selection_data,
9187                          guint             info,
9188                          guint             time)
9189 {
9190   GtkEntry *entry = GTK_ENTRY (widget);
9191   GtkEntryPrivate *priv = entry->priv;
9192   GtkEditable *editable = GTK_EDITABLE (widget);
9193   gint sel_start, sel_end;
9194   gint i;
9195
9196   /* If there is an icon drag going on, exit early. */
9197   for (i = 0; i < MAX_ICONS; i++)
9198     {
9199       EntryIconInfo *icon_info = priv->icons[i];
9200
9201       if (icon_info != NULL)
9202         {
9203           if (icon_info->in_drag)
9204             return;
9205         }
9206     }
9207
9208   if (gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9209     {
9210       gchar *str = gtk_entry_get_display_text (GTK_ENTRY (widget), sel_start, sel_end);
9211
9212       gtk_selection_data_set_text (selection_data, str, -1);
9213       
9214       g_free (str);
9215     }
9216
9217 }
9218
9219 static void
9220 gtk_entry_drag_data_delete (GtkWidget      *widget,
9221                             GdkDragContext *context)
9222 {
9223   GtkEntry *entry = GTK_ENTRY (widget);
9224   GtkEntryPrivate *priv = entry->priv;
9225   GtkEditable *editable = GTK_EDITABLE (widget);
9226   gint sel_start, sel_end;
9227   gint i;
9228
9229   /* If there is an icon drag going on, exit early. */
9230   for (i = 0; i < MAX_ICONS; i++)
9231     {
9232       EntryIconInfo *icon_info = priv->icons[i];
9233
9234       if (icon_info != NULL)
9235         {
9236           if (icon_info->in_drag)
9237             return;
9238         }
9239     }
9240
9241   if (priv->editable &&
9242       gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9243     gtk_editable_delete_text (editable, sel_start, sel_end);
9244 }
9245
9246 /* We display the cursor when
9247  *
9248  *  - the selection is empty, AND
9249  *  - the widget has focus
9250  */
9251
9252 #define CURSOR_ON_MULTIPLIER 2
9253 #define CURSOR_OFF_MULTIPLIER 1
9254 #define CURSOR_PEND_MULTIPLIER 3
9255 #define CURSOR_DIVIDER 3
9256
9257 static gboolean
9258 cursor_blinks (GtkEntry *entry)
9259 {
9260   GtkEntryPrivate *priv = entry->priv;
9261
9262   if (gtk_widget_has_focus (GTK_WIDGET (entry)) &&
9263       priv->editable &&
9264       priv->selection_bound == priv->current_pos)
9265     {
9266       GtkSettings *settings;
9267       gboolean blink;
9268
9269       settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9270       g_object_get (settings, "gtk-cursor-blink", &blink, NULL);
9271
9272       return blink;
9273     }
9274   else
9275     return FALSE;
9276 }
9277
9278 static gint
9279 get_cursor_time (GtkEntry *entry)
9280 {
9281   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9282   gint time;
9283
9284   g_object_get (settings, "gtk-cursor-blink-time", &time, NULL);
9285
9286   return time;
9287 }
9288
9289 static gint
9290 get_cursor_blink_timeout (GtkEntry *entry)
9291 {
9292   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9293   gint timeout;
9294
9295   g_object_get (settings, "gtk-cursor-blink-timeout", &timeout, NULL);
9296
9297   return timeout;
9298 }
9299
9300 static void
9301 show_cursor (GtkEntry *entry)
9302 {
9303   GtkEntryPrivate *priv = entry->priv;
9304   GtkWidget *widget;
9305
9306   if (!priv->cursor_visible)
9307     {
9308       priv->cursor_visible = TRUE;
9309
9310       widget = GTK_WIDGET (entry);
9311       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9312         gtk_widget_queue_draw (widget);
9313     }
9314 }
9315
9316 static void
9317 hide_cursor (GtkEntry *entry)
9318 {
9319   GtkEntryPrivate *priv = entry->priv;
9320   GtkWidget *widget;
9321
9322   if (priv->cursor_visible)
9323     {
9324       priv->cursor_visible = FALSE;
9325
9326       widget = GTK_WIDGET (entry);
9327       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9328         gtk_widget_queue_draw (widget);
9329     }
9330 }
9331
9332 /*
9333  * Blink!
9334  */
9335 static gint
9336 blink_cb (gpointer data)
9337 {
9338   GtkEntry *entry;
9339   GtkEntryPrivate *priv; 
9340   gint blink_timeout;
9341
9342   entry = GTK_ENTRY (data);
9343   priv = entry->priv;
9344  
9345   if (!gtk_widget_has_focus (GTK_WIDGET (entry)))
9346     {
9347       g_warning ("GtkEntry - did not receive focus-out-event. If you\n"
9348                  "connect a handler to this signal, it must return\n"
9349                  "FALSE so the entry gets the event as well");
9350
9351       gtk_entry_check_cursor_blink (entry);
9352
9353       return FALSE;
9354     }
9355   
9356   g_assert (priv->selection_bound == priv->current_pos);
9357   
9358   blink_timeout = get_cursor_blink_timeout (entry);
9359   if (priv->blink_time > 1000 * blink_timeout && 
9360       blink_timeout < G_MAXINT/1000) 
9361     {
9362       /* we've blinked enough without the user doing anything, stop blinking */
9363       show_cursor (entry);
9364       priv->blink_timeout = 0;
9365     } 
9366   else if (priv->cursor_visible)
9367     {
9368       hide_cursor (entry);
9369       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_OFF_MULTIPLIER / CURSOR_DIVIDER,
9370                                             blink_cb,
9371                                             entry);
9372     }
9373   else
9374     {
9375       show_cursor (entry);
9376       priv->blink_time += get_cursor_time (entry);
9377       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9378                                             blink_cb,
9379                                             entry);
9380     }
9381
9382   /* Remove ourselves */
9383   return FALSE;
9384 }
9385
9386 static void
9387 gtk_entry_check_cursor_blink (GtkEntry *entry)
9388 {
9389   GtkEntryPrivate *priv = entry->priv;
9390
9391   if (cursor_blinks (entry))
9392     {
9393       if (!priv->blink_timeout)
9394         {
9395           show_cursor (entry);
9396           priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9397                                                 blink_cb,
9398                                                 entry);
9399         }
9400     }
9401   else
9402     {
9403       if (priv->blink_timeout)
9404         {
9405           g_source_remove (priv->blink_timeout);
9406           priv->blink_timeout = 0;
9407         }
9408
9409       priv->cursor_visible = TRUE;
9410     }
9411 }
9412
9413 static void
9414 gtk_entry_pend_cursor_blink (GtkEntry *entry)
9415 {
9416   GtkEntryPrivate *priv = entry->priv;
9417
9418   if (cursor_blinks (entry))
9419     {
9420       if (priv->blink_timeout != 0)
9421         g_source_remove (priv->blink_timeout);
9422
9423       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_PEND_MULTIPLIER / CURSOR_DIVIDER,
9424                                                      blink_cb,
9425                                                      entry);
9426       show_cursor (entry);
9427     }
9428 }
9429
9430 static void
9431 gtk_entry_reset_blink_time (GtkEntry *entry)
9432 {
9433   GtkEntryPrivate *priv = entry->priv;
9434
9435   priv->blink_time = 0;
9436 }
9437
9438
9439 /* completion */
9440 static gint
9441 gtk_entry_completion_timeout (gpointer data)
9442 {
9443   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
9444   GtkEntryPrivate *completion_entry_priv = GTK_ENTRY (completion->priv->entry)->priv;
9445
9446   completion->priv->completion_timeout = 0;
9447
9448   if (completion->priv->filter_model &&
9449       g_utf8_strlen (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)), -1)
9450       >= completion->priv->minimum_key_length)
9451     {
9452       gint matches;
9453       gint actions;
9454       GtkTreeSelection *s;
9455       gboolean popup_single;
9456
9457       gtk_entry_completion_complete (completion);
9458       matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
9459
9460       gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9461
9462       s = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
9463
9464       gtk_tree_selection_unselect_all (s);
9465
9466       actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
9467
9468       g_object_get (completion, "popup-single-match", &popup_single, NULL);
9469       if ((matches > (popup_single ? 0: 1)) || actions > 0)
9470         { 
9471           if (gtk_widget_get_visible (completion->priv->popup_window))
9472             _gtk_entry_completion_resize_popup (completion);
9473           else
9474             _gtk_entry_completion_popup (completion, completion_entry_priv->completion_device);
9475         }
9476       else 
9477         _gtk_entry_completion_popdown (completion);
9478     }
9479   else if (gtk_widget_get_visible (completion->priv->popup_window))
9480     _gtk_entry_completion_popdown (completion);
9481
9482   return FALSE;
9483 }
9484
9485 static inline gboolean
9486 keyval_is_cursor_move (guint keyval)
9487 {
9488   if (keyval == GDK_KEY_Up || keyval == GDK_KEY_KP_Up)
9489     return TRUE;
9490
9491   if (keyval == GDK_KEY_Down || keyval == GDK_KEY_KP_Down)
9492     return TRUE;
9493
9494   if (keyval == GDK_KEY_Page_Up)
9495     return TRUE;
9496
9497   if (keyval == GDK_KEY_Page_Down)
9498     return TRUE;
9499
9500   return FALSE;
9501 }
9502
9503 static gboolean
9504 gtk_entry_completion_key_press (GtkWidget   *widget,
9505                                 GdkEventKey *event,
9506                                 gpointer     user_data)
9507 {
9508   gint matches, actions = 0;
9509   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
9510
9511   if (!gtk_widget_get_mapped (completion->priv->popup_window))
9512     return FALSE;
9513
9514   matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
9515
9516   if (completion->priv->actions)
9517     actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
9518
9519   if (keyval_is_cursor_move (event->keyval))
9520     {
9521       GtkTreePath *path = NULL;
9522       
9523       if (event->keyval == GDK_KEY_Up || event->keyval == GDK_KEY_KP_Up)
9524         {
9525           if (completion->priv->current_selected < 0)
9526             completion->priv->current_selected = matches + actions - 1;
9527           else
9528             completion->priv->current_selected--;
9529         }
9530       else if (event->keyval == GDK_KEY_Down || event->keyval == GDK_KEY_KP_Down)
9531         {
9532           if (completion->priv->current_selected < matches + actions - 1)
9533             completion->priv->current_selected++;
9534           else
9535             completion->priv->current_selected = -1;
9536         }
9537       else if (event->keyval == GDK_KEY_Page_Up)
9538         {
9539           if (completion->priv->current_selected < 0)
9540             completion->priv->current_selected = matches + actions - 1;
9541           else if (completion->priv->current_selected == 0)
9542             completion->priv->current_selected = -1;
9543           else if (completion->priv->current_selected < matches) 
9544             {
9545               completion->priv->current_selected -= 14;
9546               if (completion->priv->current_selected < 0)
9547                 completion->priv->current_selected = 0;
9548             }
9549           else 
9550             {
9551               completion->priv->current_selected -= 14;
9552               if (completion->priv->current_selected < matches - 1)
9553                 completion->priv->current_selected = matches - 1;
9554             }
9555         }
9556       else if (event->keyval == GDK_KEY_Page_Down)
9557         {
9558           if (completion->priv->current_selected < 0)
9559             completion->priv->current_selected = 0;
9560           else if (completion->priv->current_selected < matches - 1)
9561             {
9562               completion->priv->current_selected += 14;
9563               if (completion->priv->current_selected > matches - 1)
9564                 completion->priv->current_selected = matches - 1;
9565             }
9566           else if (completion->priv->current_selected == matches + actions - 1)
9567             {
9568               completion->priv->current_selected = -1;
9569             }
9570           else
9571             {
9572               completion->priv->current_selected += 14;
9573               if (completion->priv->current_selected > matches + actions - 1)
9574                 completion->priv->current_selected = matches + actions - 1;
9575             }
9576         }
9577
9578       if (completion->priv->current_selected < 0)
9579         {
9580           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9581           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
9582
9583           if (completion->priv->inline_selection &&
9584               completion->priv->completion_prefix)
9585             {
9586               gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9587                                   completion->priv->completion_prefix);
9588               gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9589             }
9590         }
9591       else if (completion->priv->current_selected < matches)
9592         {
9593           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
9594
9595           path = gtk_tree_path_new_from_indices (completion->priv->current_selected, -1);
9596           gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->tree_view),
9597                                     path, NULL, FALSE);
9598
9599           if (completion->priv->inline_selection)
9600             {
9601
9602               GtkTreeIter iter;
9603               GtkTreeIter child_iter;
9604               GtkTreeModel *model = NULL;
9605               GtkTreeSelection *sel;
9606               gboolean entry_set;
9607
9608               sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
9609               if (!gtk_tree_selection_get_selected (sel, &model, &iter))
9610                 return FALSE;
9611
9612               gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
9613               model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
9614               
9615               if (completion->priv->completion_prefix == NULL)
9616                 completion->priv->completion_prefix = g_strdup (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)));
9617
9618               g_signal_emit_by_name (completion, "cursor-on-match", model,
9619                                      &child_iter, &entry_set);
9620             }
9621         }
9622       else if (completion->priv->current_selected - matches >= 0)
9623         {
9624           gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
9625
9626           path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
9627           gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->action_view),
9628                                     path, NULL, FALSE);
9629
9630           if (completion->priv->inline_selection &&
9631               completion->priv->completion_prefix)
9632             {
9633               gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9634                                   completion->priv->completion_prefix);
9635               gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9636             }
9637         }
9638
9639       gtk_tree_path_free (path);
9640
9641       return TRUE;
9642     }
9643   else if (event->keyval == GDK_KEY_Escape ||
9644            event->keyval == GDK_KEY_Left ||
9645            event->keyval == GDK_KEY_KP_Left ||
9646            event->keyval == GDK_KEY_Right ||
9647            event->keyval == GDK_KEY_KP_Right) 
9648     {
9649       gboolean retval = TRUE;
9650
9651       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9652       _gtk_entry_completion_popdown (completion);
9653
9654       if (completion->priv->current_selected < 0)
9655         {
9656           retval = FALSE;
9657           goto keypress_completion_out;
9658         }
9659       else if (completion->priv->inline_selection)
9660         {
9661           /* Escape rejects the tentative completion */
9662           if (event->keyval == GDK_KEY_Escape)
9663             {
9664               if (completion->priv->completion_prefix)
9665                 gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), 
9666                                     completion->priv->completion_prefix);
9667               else 
9668                 gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), "");
9669             }
9670
9671           /* Move the cursor to the end for Right/Esc, to the
9672              beginning for Left */
9673           if (event->keyval == GDK_KEY_Right ||
9674               event->keyval == GDK_KEY_KP_Right ||
9675               event->keyval == GDK_KEY_Escape)
9676             gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9677           else
9678             gtk_editable_set_position (GTK_EDITABLE (widget), 0);
9679         }
9680
9681 keypress_completion_out:
9682       if (completion->priv->inline_selection)
9683         {
9684           g_free (completion->priv->completion_prefix);
9685           completion->priv->completion_prefix = NULL;
9686         }
9687
9688       return retval;
9689     }
9690   else if (event->keyval == GDK_KEY_Tab || 
9691            event->keyval == GDK_KEY_KP_Tab ||
9692            event->keyval == GDK_KEY_ISO_Left_Tab) 
9693     {
9694       GtkDirectionType dir = event->keyval == GDK_KEY_ISO_Left_Tab ? 
9695         GTK_DIR_TAB_BACKWARD : GTK_DIR_TAB_FORWARD;
9696       
9697       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9698       _gtk_entry_completion_popdown (completion);
9699
9700       g_free (completion->priv->completion_prefix);
9701       completion->priv->completion_prefix = NULL;
9702
9703       gtk_widget_child_focus (gtk_widget_get_toplevel (widget), dir);
9704
9705       return TRUE;
9706     }
9707   else if (event->keyval == GDK_KEY_ISO_Enter ||
9708            event->keyval == GDK_KEY_KP_Enter ||
9709            event->keyval == GDK_KEY_Return)
9710     {
9711       GtkTreeIter iter;
9712       GtkTreeModel *model = NULL;
9713       GtkTreeModel *child_model;
9714       GtkTreeIter child_iter;
9715       GtkTreeSelection *sel;
9716       gboolean retval = TRUE;
9717
9718       _gtk_entry_reset_im_context (GTK_ENTRY (widget));
9719       _gtk_entry_completion_popdown (completion);
9720
9721       if (completion->priv->current_selected < matches)
9722         {
9723           gboolean entry_set;
9724
9725           sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
9726           if (gtk_tree_selection_get_selected (sel, &model, &iter))
9727             {
9728               gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
9729               child_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
9730               g_signal_handler_block (widget, completion->priv->changed_id);
9731               g_signal_emit_by_name (completion, "match-selected",
9732                                      child_model, &child_iter, &entry_set);
9733               g_signal_handler_unblock (widget, completion->priv->changed_id);
9734
9735               if (!entry_set)
9736                 {
9737                   gchar *str = NULL;
9738
9739                   gtk_tree_model_get (model, &iter,
9740                                       completion->priv->text_column, &str,
9741                                       -1);
9742
9743                   gtk_entry_set_text (GTK_ENTRY (widget), str);
9744
9745                   /* move the cursor to the end */
9746                   gtk_editable_set_position (GTK_EDITABLE (widget), -1);
9747
9748                   g_free (str);
9749                 }
9750             }
9751           else
9752             retval = FALSE;
9753         }
9754       else if (completion->priv->current_selected - matches >= 0)
9755         {
9756           sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
9757           if (gtk_tree_selection_get_selected (sel, &model, &iter))
9758             {
9759               GtkTreePath *path;
9760
9761               path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
9762               g_signal_emit_by_name (completion, "action-activated",
9763                                      gtk_tree_path_get_indices (path)[0]);
9764               gtk_tree_path_free (path);
9765             }
9766           else
9767             retval = FALSE;
9768         }
9769
9770       g_free (completion->priv->completion_prefix);
9771       completion->priv->completion_prefix = NULL;
9772
9773       return retval;
9774     }
9775
9776   return FALSE;
9777 }
9778
9779 static void
9780 gtk_entry_completion_changed (GtkWidget *widget,
9781                               gpointer   user_data)
9782 {
9783   GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
9784   GtkEntry *entry = GTK_ENTRY (widget);
9785   GtkEntryPrivate *priv = entry->priv;
9786   GdkDevice *device;
9787
9788   /* (re)install completion timeout */
9789   if (completion->priv->completion_timeout)
9790     g_source_remove (completion->priv->completion_timeout);
9791
9792   if (!gtk_entry_get_text (entry))
9793     return;
9794
9795   /* no need to normalize for this test */
9796   if (completion->priv->minimum_key_length > 0 &&
9797       strcmp ("", gtk_entry_get_text (entry)) == 0)
9798     {
9799       if (gtk_widget_get_visible (completion->priv->popup_window))
9800         _gtk_entry_completion_popdown (completion);
9801       return;
9802     }
9803
9804   device = gtk_get_current_event_device ();
9805
9806   if (device && gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
9807     device = gdk_device_get_associated_device (device);
9808
9809   if (device)
9810     priv->completion_device = device;
9811
9812   completion->priv->completion_timeout =
9813     gdk_threads_add_timeout (COMPLETION_TIMEOUT,
9814                    gtk_entry_completion_timeout,
9815                    completion);
9816 }
9817
9818 static gboolean
9819 check_completion_callback (GtkEntryCompletion *completion)
9820 {
9821   completion->priv->check_completion_idle = NULL;
9822   
9823   gtk_entry_completion_complete (completion);
9824   gtk_entry_completion_insert_prefix (completion);
9825
9826   return FALSE;
9827 }
9828
9829 static void
9830 clear_completion_callback (GtkEntry   *entry,
9831                            GParamSpec *pspec)
9832 {
9833   if (pspec->name == I_("cursor-position") ||
9834       pspec->name == I_("selection-bound"))
9835     {
9836       GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
9837       
9838       completion->priv->has_completion = FALSE;
9839     }
9840 }
9841
9842 static gboolean
9843 accept_completion_callback (GtkEntry *entry)
9844 {
9845   GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
9846
9847   if (completion->priv->has_completion)
9848     gtk_editable_set_position (GTK_EDITABLE (entry),
9849                                gtk_entry_buffer_get_length (get_buffer (entry)));
9850
9851   return FALSE;
9852 }
9853
9854 static void
9855 completion_insert_text_callback (GtkEntry           *entry,
9856                                  const gchar        *text,
9857                                  gint                length,
9858                                  gint                position,
9859                                  GtkEntryCompletion *completion)
9860 {
9861   /* idle to update the selection based on the file list */
9862   if (completion->priv->check_completion_idle == NULL)
9863     {
9864       completion->priv->check_completion_idle = g_idle_source_new ();
9865       g_source_set_priority (completion->priv->check_completion_idle, G_PRIORITY_HIGH);
9866       g_source_set_closure (completion->priv->check_completion_idle,
9867                             g_cclosure_new_object (G_CALLBACK (check_completion_callback),
9868                                                    G_OBJECT (completion)));
9869       g_source_attach (completion->priv->check_completion_idle, NULL);
9870     }
9871 }
9872
9873 static void
9874 completion_changed (GtkEntryCompletion *completion,
9875                     GParamSpec         *pspec,
9876                     gpointer            data)
9877 {
9878   GtkEntry *entry = GTK_ENTRY (data);
9879
9880   if (pspec->name == I_("popup-completion") ||
9881       pspec->name == I_("inline-completion"))
9882     {
9883       disconnect_completion_signals (entry, completion);
9884       connect_completion_signals (entry, completion);
9885     }
9886 }
9887
9888 static void
9889 disconnect_completion_signals (GtkEntry           *entry,
9890                                GtkEntryCompletion *completion)
9891 {
9892   g_signal_handlers_disconnect_by_func (completion, 
9893                                        G_CALLBACK (completion_changed), entry);
9894   if (completion->priv->changed_id > 0 &&
9895       g_signal_handler_is_connected (entry, completion->priv->changed_id))
9896     {
9897       g_signal_handler_disconnect (entry, completion->priv->changed_id);
9898       completion->priv->changed_id = 0;
9899     }
9900   g_signal_handlers_disconnect_by_func (entry, 
9901                                         G_CALLBACK (gtk_entry_completion_key_press), completion);
9902   if (completion->priv->insert_text_id > 0 &&
9903       g_signal_handler_is_connected (entry, completion->priv->insert_text_id))
9904     {
9905       g_signal_handler_disconnect (entry, completion->priv->insert_text_id);
9906       completion->priv->insert_text_id = 0;
9907     }
9908   g_signal_handlers_disconnect_by_func (entry, 
9909                                         G_CALLBACK (completion_insert_text_callback), completion);
9910   g_signal_handlers_disconnect_by_func (entry, 
9911                                         G_CALLBACK (clear_completion_callback), completion);
9912   g_signal_handlers_disconnect_by_func (entry, 
9913                                         G_CALLBACK (accept_completion_callback), completion);
9914 }
9915
9916 static void
9917 connect_completion_signals (GtkEntry           *entry,
9918                             GtkEntryCompletion *completion)
9919 {
9920   if (completion->priv->popup_completion)
9921     {
9922       completion->priv->changed_id =
9923         g_signal_connect (entry, "changed",
9924                           G_CALLBACK (gtk_entry_completion_changed), completion);
9925       g_signal_connect (entry, "key-press-event",
9926                         G_CALLBACK (gtk_entry_completion_key_press), completion);
9927     }
9928  
9929   if (completion->priv->inline_completion)
9930     {
9931       completion->priv->insert_text_id =
9932         g_signal_connect (entry, "insert-text",
9933                           G_CALLBACK (completion_insert_text_callback), completion);
9934       g_signal_connect (entry, "notify",
9935                         G_CALLBACK (clear_completion_callback), completion);
9936       g_signal_connect (entry, "activate",
9937                         G_CALLBACK (accept_completion_callback), completion);
9938       g_signal_connect (entry, "focus-out-event",
9939                         G_CALLBACK (accept_completion_callback), completion);
9940     }
9941
9942   g_signal_connect (completion, "notify",
9943                     G_CALLBACK (completion_changed), entry);
9944 }
9945
9946 /**
9947  * gtk_entry_set_completion:
9948  * @entry: A #GtkEntry
9949  * @completion: (allow-none): The #GtkEntryCompletion or %NULL
9950  *
9951  * Sets @completion to be the auxiliary completion object to use with @entry.
9952  * All further configuration of the completion mechanism is done on
9953  * @completion using the #GtkEntryCompletion API. Completion is disabled if
9954  * @completion is set to %NULL.
9955  *
9956  * Since: 2.4
9957  */
9958 void
9959 gtk_entry_set_completion (GtkEntry           *entry,
9960                           GtkEntryCompletion *completion)
9961 {
9962   GtkEntryCompletion *old;
9963
9964   g_return_if_fail (GTK_IS_ENTRY (entry));
9965   g_return_if_fail (!completion || GTK_IS_ENTRY_COMPLETION (completion));
9966
9967   old = gtk_entry_get_completion (entry);
9968
9969   if (old == completion)
9970     return;
9971   
9972   if (old)
9973     {
9974       if (old->priv->completion_timeout)
9975         {
9976           g_source_remove (old->priv->completion_timeout);
9977           old->priv->completion_timeout = 0;
9978         }
9979
9980       if (gtk_widget_get_mapped (old->priv->popup_window))
9981         _gtk_entry_completion_popdown (old);
9982
9983       disconnect_completion_signals (entry, old);
9984       old->priv->entry = NULL;
9985
9986       g_object_unref (old);
9987     }
9988
9989   if (!completion)
9990     {
9991       g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), NULL);
9992       return;
9993     }
9994
9995   /* hook into the entry */
9996   g_object_ref (completion);
9997
9998   connect_completion_signals (entry, completion);    
9999   completion->priv->entry = GTK_WIDGET (entry);
10000   g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), completion);
10001
10002   g_object_notify (G_OBJECT (entry), "completion");
10003 }
10004
10005 /**
10006  * gtk_entry_get_completion:
10007  * @entry: A #GtkEntry
10008  *
10009  * Returns the auxiliary completion object currently in use by @entry.
10010  *
10011  * Return value: (transfer none): The auxiliary completion object currently
10012  *     in use by @entry.
10013  *
10014  * Since: 2.4
10015  */
10016 GtkEntryCompletion *
10017 gtk_entry_get_completion (GtkEntry *entry)
10018 {
10019   GtkEntryCompletion *completion;
10020
10021   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10022
10023   completion = GTK_ENTRY_COMPLETION (g_object_get_data (G_OBJECT (entry),
10024                                      GTK_ENTRY_COMPLETION_KEY));
10025
10026   return completion;
10027 }
10028
10029 /**
10030  * gtk_entry_set_cursor_hadjustment:
10031  * @entry: a #GtkEntry
10032  * @adjustment: an adjustment which should be adjusted when the cursor 
10033  *              is moved, or %NULL
10034  *
10035  * Hooks up an adjustment to the cursor position in an entry, so that when 
10036  * the cursor is moved, the adjustment is scrolled to show that position. 
10037  * See gtk_scrolled_window_get_hadjustment() for a typical way of obtaining 
10038  * the adjustment.
10039  *
10040  * The adjustment has to be in pixel units and in the same coordinate system 
10041  * as the entry. 
10042  * 
10043  * Since: 2.12
10044  */
10045 void
10046 gtk_entry_set_cursor_hadjustment (GtkEntry      *entry,
10047                                   GtkAdjustment *adjustment)
10048 {
10049   g_return_if_fail (GTK_IS_ENTRY (entry));
10050   if (adjustment)
10051     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
10052
10053   if (adjustment)
10054     g_object_ref (adjustment);
10055
10056   g_object_set_qdata_full (G_OBJECT (entry), 
10057                            quark_cursor_hadjustment,
10058                            adjustment, 
10059                            g_object_unref);
10060 }
10061
10062 /**
10063  * gtk_entry_get_cursor_hadjustment:
10064  * @entry: a #GtkEntry
10065  *
10066  * Retrieves the horizontal cursor adjustment for the entry. 
10067  * See gtk_entry_set_cursor_hadjustment().
10068  *
10069  * Return value: (transfer none): the horizontal cursor adjustment, or %NULL
10070  *   if none has been set.
10071  *
10072  * Since: 2.12
10073  */
10074 GtkAdjustment*
10075 gtk_entry_get_cursor_hadjustment (GtkEntry *entry)
10076 {
10077   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10078
10079   return g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
10080 }
10081
10082 /**
10083  * gtk_entry_set_progress_fraction:
10084  * @entry: a #GtkEntry
10085  * @fraction: fraction of the task that's been completed
10086  *
10087  * Causes the entry's progress indicator to "fill in" the given
10088  * fraction of the bar. The fraction should be between 0.0 and 1.0,
10089  * inclusive.
10090  *
10091  * Since: 2.16
10092  */
10093 void
10094 gtk_entry_set_progress_fraction (GtkEntry *entry,
10095                                  gdouble   fraction)
10096 {
10097   GtkWidget       *widget;
10098   GtkEntryPrivate *private;
10099   gdouble          old_fraction;
10100   gint x, y, width, height;
10101   gint old_x, old_y, old_width, old_height;
10102
10103   g_return_if_fail (GTK_IS_ENTRY (entry));
10104
10105   widget = GTK_WIDGET (entry);
10106   private = entry->priv;
10107
10108   if (private->progress_pulse_mode)
10109     old_fraction = -1;
10110   else
10111     old_fraction = private->progress_fraction;
10112
10113   if (gtk_widget_is_drawable (widget))
10114     get_progress_area (widget, &old_x, &old_y, &old_width, &old_height);
10115
10116   fraction = CLAMP (fraction, 0.0, 1.0);
10117
10118   private->progress_fraction = fraction;
10119   private->progress_pulse_mode = FALSE;
10120   private->progress_pulse_current = 0.0;
10121
10122   if (gtk_widget_is_drawable (widget))
10123     {
10124       get_progress_area (widget, &x, &y, &width, &height);
10125
10126       if ((x != old_x) || (y != old_y) || (width != old_width) || (height != old_height))
10127         gtk_widget_queue_draw (widget);
10128     }
10129
10130   if (fraction != old_fraction)
10131     g_object_notify (G_OBJECT (entry), "progress-fraction");
10132 }
10133
10134 /**
10135  * gtk_entry_get_progress_fraction:
10136  * @entry: a #GtkEntry
10137  *
10138  * Returns the current fraction of the task that's been completed.
10139  * See gtk_entry_set_progress_fraction().
10140  *
10141  * Return value: a fraction from 0.0 to 1.0
10142  *
10143  * Since: 2.16
10144  */
10145 gdouble
10146 gtk_entry_get_progress_fraction (GtkEntry *entry)
10147 {
10148   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
10149
10150   return entry->priv->progress_fraction;
10151 }
10152
10153 /**
10154  * gtk_entry_set_progress_pulse_step:
10155  * @entry: a #GtkEntry
10156  * @fraction: fraction between 0.0 and 1.0
10157  *
10158  * Sets the fraction of total entry width to move the progress
10159  * bouncing block for each call to gtk_entry_progress_pulse().
10160  *
10161  * Since: 2.16
10162  */
10163 void
10164 gtk_entry_set_progress_pulse_step (GtkEntry *entry,
10165                                    gdouble   fraction)
10166 {
10167   GtkEntryPrivate *private;
10168
10169   g_return_if_fail (GTK_IS_ENTRY (entry));
10170
10171   private = entry->priv;
10172
10173   fraction = CLAMP (fraction, 0.0, 1.0);
10174
10175   if (fraction != private->progress_pulse_fraction)
10176     {
10177       private->progress_pulse_fraction = fraction;
10178
10179       gtk_widget_queue_draw (GTK_WIDGET (entry));
10180
10181       g_object_notify (G_OBJECT (entry), "progress-pulse-step");
10182     }
10183 }
10184
10185 /**
10186  * gtk_entry_get_progress_pulse_step:
10187  * @entry: a #GtkEntry
10188  *
10189  * Retrieves the pulse step set with gtk_entry_set_progress_pulse_step().
10190  *
10191  * Return value: a fraction from 0.0 to 1.0
10192  *
10193  * Since: 2.16
10194  */
10195 gdouble
10196 gtk_entry_get_progress_pulse_step (GtkEntry *entry)
10197 {
10198   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
10199
10200   return entry->priv->progress_pulse_fraction;
10201 }
10202
10203 /**
10204  * gtk_entry_progress_pulse:
10205  * @entry: a #GtkEntry
10206  *
10207  * Indicates that some progress is made, but you don't know how much.
10208  * Causes the entry's progress indicator to enter "activity mode,"
10209  * where a block bounces back and forth. Each call to
10210  * gtk_entry_progress_pulse() causes the block to move by a little bit
10211  * (the amount of movement per pulse is determined by
10212  * gtk_entry_set_progress_pulse_step()).
10213  *
10214  * Since: 2.16
10215  */
10216 void
10217 gtk_entry_progress_pulse (GtkEntry *entry)
10218 {
10219   GtkEntryPrivate *private;
10220
10221   g_return_if_fail (GTK_IS_ENTRY (entry));
10222
10223   private = entry->priv;
10224
10225   if (private->progress_pulse_mode)
10226     {
10227       if (private->progress_pulse_way_back)
10228         {
10229           private->progress_pulse_current -= private->progress_pulse_fraction;
10230
10231           if (private->progress_pulse_current < 0.0)
10232             {
10233               private->progress_pulse_current = 0.0;
10234               private->progress_pulse_way_back = FALSE;
10235             }
10236         }
10237       else
10238         {
10239           private->progress_pulse_current += private->progress_pulse_fraction;
10240
10241           if (private->progress_pulse_current > 1.0 - private->progress_pulse_fraction)
10242             {
10243               private->progress_pulse_current = 1.0 - private->progress_pulse_fraction;
10244               private->progress_pulse_way_back = TRUE;
10245             }
10246         }
10247     }
10248   else
10249     {
10250       private->progress_fraction = 0.0;
10251       private->progress_pulse_mode = TRUE;
10252       private->progress_pulse_way_back = FALSE;
10253       private->progress_pulse_current = 0.0;
10254     }
10255
10256   gtk_widget_queue_draw (GTK_WIDGET (entry));
10257 }
10258
10259 /**
10260  * gtk_entry_set_placeholder_text:
10261  * @entry: a #GtkEntry
10262  * @text: a string to be displayed when @entry is empty an unfocused, or %NULL
10263  *
10264  * Sets text to be displayed in @entry when
10265  * it is empty and unfocused. This can be used to give a visual hint
10266  * of the expected contents of the #GtkEntry.
10267  *
10268  * Since: 3.2
10269  **/
10270 void
10271 gtk_entry_set_placeholder_text (GtkEntry    *entry,
10272                                 const gchar *text)
10273 {
10274   GtkEntryPrivate *priv;
10275
10276   g_return_if_fail (GTK_IS_ENTRY (entry));
10277
10278   priv = entry->priv;
10279
10280   if (g_strcmp0 (priv->placeholder_text, text) == 0)
10281     return;
10282
10283   g_free (priv->placeholder_text);
10284   priv->placeholder_text = g_strdup (text);
10285
10286   gtk_entry_recompute (entry);
10287
10288   g_object_notify (G_OBJECT (entry), "placeholder-text");
10289 }
10290
10291 /**
10292  * gtk_entry_get_placeholder_text:
10293  * @entry: a #GtkEntry
10294  *
10295  * Retrieves the text that will be displayed when @entry is empty and unfocused
10296  *
10297  * Returns: a pointer to the placeholder text as a string. This string points to internally allocated
10298  * storage in the widget and must not be freed, modified or stored.
10299  *
10300  * Since: 3.2
10301  **/
10302 G_CONST_RETURN gchar *
10303 gtk_entry_get_placeholder_text (GtkEntry *entry)
10304 {
10305   GtkEntryPrivate *priv;
10306
10307   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10308
10309   priv = entry->priv;
10310
10311   return priv->placeholder_text;
10312 }
10313
10314 /* Caps Lock warning for password entries */
10315
10316 static void
10317 show_capslock_feedback (GtkEntry    *entry,
10318                         const gchar *text)
10319 {
10320   GtkEntryPrivate *priv = entry->priv;
10321
10322   if (gtk_entry_get_icon_storage_type (entry, GTK_ENTRY_ICON_SECONDARY) == GTK_IMAGE_EMPTY)
10323     {
10324       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CAPS_LOCK_WARNING);
10325       gtk_entry_set_icon_activatable (entry, GTK_ENTRY_ICON_SECONDARY, FALSE);
10326       priv->caps_lock_warning_shown = TRUE;
10327     }
10328
10329   if (priv->caps_lock_warning_shown)
10330     gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, text);
10331   else
10332     g_warning ("Can't show Caps Lock warning, since secondary icon is set");
10333 }
10334
10335 static void
10336 remove_capslock_feedback (GtkEntry *entry)
10337 {
10338   GtkEntryPrivate *priv = entry->priv;
10339
10340   if (priv->caps_lock_warning_shown)
10341     {
10342       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
10343       priv->caps_lock_warning_shown = FALSE;
10344     } 
10345 }
10346
10347 static void
10348 keymap_state_changed (GdkKeymap *keymap, 
10349                       GtkEntry  *entry)
10350 {
10351   GtkEntryPrivate *priv = entry->priv;
10352   char *text = NULL;
10353
10354   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL && priv->caps_lock_warning)
10355     { 
10356       if (gdk_keymap_get_num_lock_state (keymap)
10357           && gdk_keymap_get_caps_lock_state (keymap))
10358         text = _("Caps Lock and Num Lock are on");
10359       else if (gdk_keymap_get_num_lock_state (keymap))
10360         text = _("Num Lock is on");
10361       else if (gdk_keymap_get_caps_lock_state (keymap))
10362         text = _("Caps Lock is on");
10363     }
10364
10365   if (text)
10366     show_capslock_feedback (entry, text);
10367   else
10368     remove_capslock_feedback (entry);
10369 }
10370
10371 /*
10372  * _gtk_entry_set_is_cell_renderer:
10373  * @entry: a #GtkEntry
10374  * @is_cell_renderer: new value
10375  *
10376  * This is a helper function for GtkComboBox. A GtkEntry in a GtkComboBox
10377  * is supposed to behave like a GtkCellEditable when placed in a combo box.
10378  *
10379  * I.e take up its allocation and get GtkEntry->is_cell_renderer = TRUE.
10380  *
10381  */
10382 void
10383 _gtk_entry_set_is_cell_renderer (GtkEntry *entry,
10384                                  gboolean  is_cell_renderer)
10385 {
10386   entry->priv->is_cell_renderer = is_cell_renderer;
10387 }