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