]> Pileus Git - ~andy/gtk/blob - gtk/gtkentry.c
[entry] unregister icon windows
[~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   gtk_widget_register_window (widget, icon_info->window);
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   gtk_widget_register_window (widget, priv->text_area);
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       gtk_widget_unregister_window (widget, priv->text_area);
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               gtk_widget_unregister_window (widget, icon_info->window);
3168               gdk_window_destroy (icon_info->window);
3169               icon_info->window = NULL;
3170             }
3171         }
3172     }
3173 }
3174
3175 void
3176 _gtk_entry_get_borders (GtkEntry *entry,
3177                         GtkBorder *border_out)
3178 {
3179   GtkEntryPrivate *priv = entry->priv;
3180   GtkWidget *widget = GTK_WIDGET (entry);
3181   GtkBorder tmp = { 0, 0, 0, 0 };
3182   GtkStyleContext *context;
3183
3184   context = gtk_widget_get_style_context (widget);
3185   gtk_style_context_get_padding (context, 0, &tmp);
3186
3187   if (priv->has_frame)
3188     {
3189       GtkBorder border;
3190
3191       gtk_style_context_get_border (context, 0, &border);
3192       tmp.top += border.top;
3193       tmp.right += border.right;
3194       tmp.bottom += border.bottom;
3195       tmp.left += border.left;
3196     }
3197
3198   if (!priv->interior_focus)
3199     {
3200       tmp.top += priv->focus_width;
3201       tmp.right += priv->focus_width;
3202       tmp.bottom += priv->focus_width;
3203       tmp.left += priv->focus_width;
3204     }
3205
3206   if (border_out != NULL)
3207     *border_out = tmp;
3208 }
3209
3210 static void
3211 gtk_entry_get_preferred_width (GtkWidget *widget,
3212                                gint      *minimum,
3213                                gint      *natural)
3214 {
3215   GtkEntry *entry = GTK_ENTRY (widget);
3216   GtkEntryPrivate *priv = entry->priv;
3217   PangoFontMetrics *metrics;
3218   GtkBorder borders;
3219   PangoContext *context;
3220   gint icon_widths = 0;
3221   gint icon_width, i;
3222   gint width;
3223
3224   context = gtk_widget_get_pango_context (widget);
3225
3226   metrics = pango_context_get_metrics (context,
3227                                        pango_context_get_font_description (context),
3228                                        pango_context_get_language (context));
3229
3230   _gtk_entry_get_borders (entry, &borders);
3231
3232   if (priv->width_chars < 0)
3233     width = MIN_ENTRY_WIDTH + borders.left + borders.right;
3234   else
3235     {
3236       gint char_width = pango_font_metrics_get_approximate_char_width (metrics);
3237       gint digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
3238       gint char_pixels = (MAX (char_width, digit_width) + PANGO_SCALE - 1) / PANGO_SCALE;
3239
3240       width = char_pixels * priv->width_chars + borders.left + borders.right;
3241     }
3242
3243   for (i = 0; i < MAX_ICONS; i++)
3244     {
3245       icon_width = get_icon_width (entry, i);
3246       if (icon_width > 0)
3247         icon_widths += icon_width;
3248     }
3249
3250   if (icon_widths > width)
3251     width += icon_widths;
3252
3253   pango_font_metrics_unref (metrics);
3254
3255   *minimum = width;
3256   *natural = width;
3257 }
3258
3259 static void
3260 gtk_entry_get_preferred_height (GtkWidget *widget,
3261                                 gint      *minimum,
3262                                 gint      *natural)
3263 {
3264   GtkEntry *entry = GTK_ENTRY (widget);
3265   GtkEntryPrivate *priv = entry->priv;
3266   PangoFontMetrics *metrics;
3267   GtkBorder borders;
3268   PangoContext *context;
3269   gint height;
3270   PangoLayout *layout;
3271
3272   layout = gtk_entry_ensure_layout (entry, TRUE);
3273   context = gtk_widget_get_pango_context (widget);
3274
3275   metrics = pango_context_get_metrics (context,
3276                                        pango_context_get_font_description (context),
3277                                        pango_context_get_language (context));
3278
3279   priv->ascent = pango_font_metrics_get_ascent (metrics);
3280   priv->descent = pango_font_metrics_get_descent (metrics);
3281   pango_font_metrics_unref (metrics);
3282
3283   _gtk_entry_get_borders (entry, &borders);
3284   pango_layout_get_pixel_size (layout, NULL, &height);
3285
3286   height += borders.top + borders.bottom;
3287
3288   *minimum = height;
3289   *natural = height;
3290 }
3291
3292 static void
3293 place_windows (GtkEntry *entry)
3294 {
3295   GtkWidget *widget = GTK_WIDGET (entry);
3296   GtkEntryPrivate *priv = entry->priv;
3297   gint x, y, width, height;
3298   gint frame_x, frame_y;
3299   GtkAllocation primary;
3300   GtkAllocation secondary;
3301   EntryIconInfo *icon_info = NULL;
3302
3303   get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
3304   get_text_area_size (entry, &x, &y, &width, &height);
3305   get_icon_allocations (entry, &primary, &secondary);
3306
3307   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3308     y += priv->focus_width;
3309
3310   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
3311     x += secondary.width;
3312   else
3313     x += primary.width;
3314   width -= primary.width + secondary.width;
3315
3316   x += frame_x;
3317   y += frame_y;
3318   primary.x += frame_x;
3319   primary.y += frame_y;
3320   secondary.x += frame_x;
3321   secondary.y += frame_y;
3322
3323   if ((icon_info = priv->icons[GTK_ENTRY_ICON_PRIMARY]) != NULL)
3324     gdk_window_move_resize (icon_info->window,
3325                             primary.x, primary.y,
3326                             primary.width, primary.height);
3327
3328   if ((icon_info = priv->icons[GTK_ENTRY_ICON_SECONDARY]) != NULL)
3329     gdk_window_move_resize (icon_info->window,
3330                             secondary.x, secondary.y,
3331                             secondary.width, secondary.height);
3332
3333   gdk_window_move_resize (priv->text_area, x, y, width, height);
3334 }
3335
3336 static void
3337 gtk_entry_get_text_area_size (GtkEntry *entry,
3338                               gint     *x,
3339                               gint     *y,
3340                               gint     *width,
3341                               gint     *height)
3342 {
3343   GtkEntryPrivate *priv = entry->priv;
3344   GtkWidget *widget = GTK_WIDGET (entry);
3345   GtkAllocation allocation;
3346   GtkRequisition requisition;
3347   gint req_height;
3348   gint frame_height;
3349   GtkBorder borders;
3350
3351   gtk_widget_get_preferred_size (widget, &requisition, NULL);
3352   req_height = requisition.height - gtk_widget_get_margin_top (widget) - gtk_widget_get_margin_bottom (widget);
3353
3354   gtk_widget_get_allocation (widget, &allocation);
3355   _gtk_entry_get_borders (entry, &borders);
3356
3357   if (gtk_widget_get_realized (widget))
3358     get_frame_size (entry, TRUE, NULL, NULL, NULL, &frame_height);
3359   else
3360     frame_height = req_height;
3361
3362   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3363     frame_height -= 2 * priv->focus_width;
3364
3365   if (x)
3366     *x = borders.left;
3367
3368   if (y)
3369     *y = floor ((frame_height - req_height) / 2) + borders.top;
3370
3371   if (width)
3372     *width = allocation.width - borders.left - borders.right;
3373
3374   if (height)
3375     *height = req_height - borders.top - borders.bottom;
3376 }
3377
3378 static void
3379 get_text_area_size (GtkEntry *entry,
3380                     gint     *x,
3381                     gint     *y,
3382                     gint     *width,
3383                     gint     *height)
3384 {
3385   GtkEntryClass *class;
3386
3387   g_return_if_fail (GTK_IS_ENTRY (entry));
3388
3389   class = GTK_ENTRY_GET_CLASS (entry);
3390
3391   if (class->get_text_area_size)
3392     class->get_text_area_size (entry, x, y, width, height);
3393 }
3394
3395
3396 static void
3397 gtk_entry_get_frame_size (GtkEntry *entry,
3398                           gint     *x,
3399                           gint     *y,
3400                           gint     *width,
3401                           gint     *height)
3402 {
3403   GtkEntryPrivate *priv = entry->priv;
3404   GtkAllocation allocation;
3405   GtkRequisition requisition;
3406   GtkWidget *widget = GTK_WIDGET (entry);
3407   gint req_height;
3408
3409   gtk_widget_get_preferred_size (widget, &requisition, NULL);
3410
3411   req_height = requisition.height - gtk_widget_get_margin_top (widget) - gtk_widget_get_margin_bottom (widget);
3412
3413   gtk_widget_get_allocation (widget, &allocation);
3414
3415   if (x)
3416     *x = allocation.x;
3417
3418   if (y)
3419     {
3420       if (priv->is_cell_renderer)
3421         *y = 0;
3422       else
3423         *y = (allocation.height - req_height) / 2;
3424
3425       *y += allocation.y;
3426     }
3427
3428   if (width)
3429     *width = allocation.width;
3430
3431   if (height)
3432     {
3433       if (priv->is_cell_renderer)
3434         *height = allocation.height;
3435       else
3436         *height = req_height;
3437     }
3438 }
3439
3440 static void
3441 get_frame_size (GtkEntry *entry,
3442                 gboolean  relative_to_window,
3443                 gint     *x,
3444                 gint     *y,
3445                 gint     *width,
3446                 gint     *height)
3447 {
3448   GtkEntryClass *class;
3449   GtkWidget *widget = GTK_WIDGET (entry);
3450
3451   g_return_if_fail (GTK_IS_ENTRY (entry));
3452
3453   class = GTK_ENTRY_GET_CLASS (entry);
3454
3455   if (class->get_frame_size)
3456     class->get_frame_size (entry, x, y, width, height);
3457
3458   if (!relative_to_window)
3459     {
3460       GtkAllocation allocation;
3461       gtk_widget_get_allocation (widget, &allocation);
3462
3463       if (x)
3464         *x -= allocation.x;
3465       if (y)
3466         *y -= allocation.y;
3467     }
3468 }
3469
3470 static void
3471 gtk_entry_size_allocate (GtkWidget     *widget,
3472                          GtkAllocation *allocation)
3473 {
3474   GtkEntry *entry = GTK_ENTRY (widget);
3475
3476   gtk_widget_set_allocation (widget, allocation);
3477
3478   if (gtk_widget_get_realized (widget))
3479     {
3480       GtkEntryCompletion* completion;
3481
3482       place_windows (entry);
3483       gtk_entry_recompute (entry);
3484
3485       completion = gtk_entry_get_completion (entry);
3486       if (completion)
3487         _gtk_entry_completion_resize_popup (completion);
3488     }
3489 }
3490
3491 static gboolean
3492 should_prelight (GtkEntry             *entry,
3493                  GtkEntryIconPosition  icon_pos)
3494 {
3495   GtkEntryPrivate *priv = entry->priv;
3496   EntryIconInfo *icon_info = priv->icons[icon_pos];
3497   gboolean prelight;
3498
3499   if (!icon_info)
3500     return FALSE;
3501
3502   if (icon_info->nonactivatable && icon_info->target_list == NULL)
3503     return FALSE;
3504
3505   if (icon_info->pressed)
3506     return FALSE;
3507
3508   gtk_widget_style_get (GTK_WIDGET (entry),
3509                         "icon-prelight", &prelight,
3510                         NULL);
3511
3512   return prelight;
3513 }
3514
3515 static void
3516 draw_icon (GtkWidget            *widget,
3517            cairo_t              *cr,
3518            GtkEntryIconPosition  icon_pos)
3519 {
3520   GtkEntry *entry = GTK_ENTRY (widget);
3521   GtkEntryPrivate *priv = entry->priv;
3522   EntryIconInfo *icon_info = priv->icons[icon_pos];
3523   gint x, y, width, height, pix_width, pix_height;
3524   GtkStyleContext *context;
3525   GtkBorder padding;
3526
3527   if (!icon_info)
3528     return;
3529
3530   width = gdk_window_get_width (icon_info->window);
3531   height = gdk_window_get_height (icon_info->window);
3532
3533   /* size_allocate hasn't been called yet. These are the default values.
3534    */
3535   if (width == 1 || height == 1)
3536     return;
3537
3538   cairo_save (cr);
3539   gtk_cairo_transform_to_window (cr, widget, icon_info->window);
3540
3541   context = gtk_widget_get_style_context (widget);
3542   gtk_entry_prepare_context_for_icon (entry, context, icon_pos);
3543   _gtk_icon_helper_get_size (icon_info->icon_helper, context,
3544                              &pix_width, &pix_height);
3545   gtk_style_context_get_padding (context, 0, &padding);
3546
3547   x = MAX (0, padding.left);
3548   y = MAX (0, (height - pix_height) / 2);
3549
3550   _gtk_icon_helper_draw (icon_info->icon_helper,
3551                          context, cr,
3552                          x, y);
3553
3554   gtk_style_context_restore (context);
3555   cairo_restore (cr);
3556 }
3557
3558
3559 static void
3560 gtk_entry_draw_frame (GtkWidget       *widget,
3561                       GtkStyleContext *context,
3562                       cairo_t         *cr)
3563 {
3564   GtkEntry *entry = GTK_ENTRY (widget);
3565   GtkEntryPrivate *priv = entry->priv;
3566   gint x = 0, y = 0, width, height;
3567   gint frame_x, frame_y;
3568
3569   cairo_save (cr);
3570
3571   get_frame_size (GTK_ENTRY (widget), FALSE, &frame_x, &frame_y, &width, &height);
3572
3573   cairo_translate (cr, frame_x, frame_y);
3574
3575   /* Fix a problem with some themes which assume that entry->text_area's
3576    * width equals widget->window's width
3577    * http://bugzilla.gnome.org/show_bug.cgi?id=466000 */
3578   if (GTK_IS_SPIN_BUTTON (widget))
3579     {
3580       GtkBorder borders;
3581
3582       gtk_entry_get_text_area_size (GTK_ENTRY (widget), &x, NULL, &width, NULL);
3583       _gtk_entry_get_borders (GTK_ENTRY (widget), &borders);
3584
3585       x -= borders.left;
3586       width += borders.left + borders.right;
3587     }
3588
3589   if (gtk_widget_has_focus (widget) && !priv->interior_focus)
3590     {
3591       x += priv->focus_width;
3592       y += priv->focus_width;
3593       width -= 2 * priv->focus_width;
3594       height -= 2 * priv->focus_width;
3595     }
3596
3597   gtk_render_background (context, cr,
3598                          x, y, width, height);
3599
3600   if (priv->has_frame)
3601     gtk_render_frame (context, cr,
3602                       x, y, width, height);
3603
3604   gtk_entry_draw_progress (widget, context, cr);
3605
3606   if (gtk_widget_has_visible_focus (widget) && !priv->interior_focus)
3607     {
3608       x -= priv->focus_width;
3609       y -= priv->focus_width;
3610       width += 2 * priv->focus_width;
3611       height += 2 * priv->focus_width;
3612
3613       gtk_render_focus (context, cr,
3614                         0, 0, width, height);
3615     }
3616
3617   cairo_restore (cr);
3618 }
3619
3620 static void
3621 gtk_entry_prepare_context_for_progress (GtkEntry *entry,
3622                                         GtkStyleContext *context)
3623 {
3624   GtkEntryPrivate *private = entry->priv;
3625
3626   gtk_style_context_save (context);
3627   gtk_style_context_add_class (context, GTK_STYLE_CLASS_PROGRESSBAR);
3628   if (private->progress_pulse_mode)
3629     gtk_style_context_add_class (context, GTK_STYLE_CLASS_PULSE);
3630 }
3631
3632 static void
3633 get_progress_area (GtkWidget *widget,
3634                    gint       *x,
3635                    gint       *y,
3636                    gint       *width,
3637                    gint       *height)
3638 {
3639   GtkEntry *entry = GTK_ENTRY (widget);
3640   GtkEntryPrivate *private = entry->priv;
3641   GtkStyleContext *context;
3642   GtkBorder margin, border, entry_borders;
3643   gint frame_width, text_area_width, text_area_height;
3644
3645   context = gtk_widget_get_style_context (widget);
3646   _gtk_entry_get_borders (entry, &entry_borders);
3647   get_text_area_size (entry,
3648                       NULL, NULL,
3649                       &text_area_width, &text_area_height);
3650   get_frame_size (entry, FALSE,
3651                   NULL, NULL,
3652                   &frame_width, NULL);
3653
3654   *x = 0;
3655   *y = 0;
3656   *width = text_area_width + entry_borders.left + entry_borders.right;
3657   *height = text_area_height + entry_borders.top + entry_borders.bottom;
3658
3659   /* if the text area got resized by a subclass, subtract the left/right
3660    * border width, so that the progress bar won't extend over the resized
3661    * text area.
3662    */
3663   if (frame_width > *width)
3664     {
3665       gtk_style_context_get_border (context, 0, &border);
3666       if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL)
3667         {
3668           *x = (frame_width - *width) + border.left;
3669           *width -= border.left;
3670         }
3671       else
3672         {
3673           *width -= border.right;
3674         }
3675     }
3676
3677   gtk_entry_prepare_context_for_progress (entry, context);
3678   gtk_style_context_get_margin (context, 0, &margin);
3679
3680   gtk_style_context_restore (context);
3681
3682   *x += margin.left;
3683   *y += margin.top;
3684   *width -= margin.left + margin.right;
3685   *height -= margin.top + margin.bottom;
3686
3687   if (private->progress_pulse_mode)
3688     {
3689       gdouble value = private->progress_pulse_current;
3690
3691       *x += (gint) floor(value * (*width));
3692       *width = (gint) ceil(private->progress_pulse_fraction * (*width));
3693     }
3694   else if (private->progress_fraction > 0)
3695     {
3696       gdouble value = private->progress_fraction;
3697
3698       if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL)
3699         {
3700           gint bar_width;
3701
3702           bar_width = floor(value * (*width) + 0.5);
3703           *x += *width - bar_width;
3704           *width = bar_width;
3705         }
3706       else
3707         {
3708           *width = (gint) floor(value * (*width) + 0.5);
3709         }
3710     }
3711   else
3712     {
3713       *width = 0;
3714       *height = 0;
3715     }
3716 }
3717
3718 static void
3719 gtk_entry_draw_progress (GtkWidget       *widget,
3720                          GtkStyleContext *context,
3721                          cairo_t         *cr)
3722 {
3723   GtkEntry *entry = GTK_ENTRY (widget);
3724   gint x, y, width, height;
3725
3726   get_progress_area (widget, &x, &y, &width, &height);
3727
3728   if ((width <= 0) || (height <= 0))
3729     return;
3730  
3731   gtk_entry_prepare_context_for_progress (entry, context);
3732   gtk_render_activity (context, cr,
3733                        x, y, width, height);
3734
3735   gtk_style_context_restore (context);
3736 }
3737
3738 static gint
3739 gtk_entry_draw (GtkWidget *widget,
3740                 cairo_t   *cr)
3741 {
3742   GtkEntry *entry = GTK_ENTRY (widget);
3743   GtkStyleContext *context;
3744   GtkEntryPrivate *priv = entry->priv;
3745   int i;
3746
3747   context = gtk_widget_get_style_context (widget);
3748
3749   /* Draw entry_bg, shadow, progress and focus */
3750   gtk_entry_draw_frame (widget, context, cr);
3751
3752   /* Draw text and cursor */
3753   cairo_save (cr);
3754
3755   gtk_cairo_transform_to_window (cr, widget, priv->text_area);
3756
3757   if (priv->dnd_position != -1)
3758     gtk_entry_draw_cursor (GTK_ENTRY (widget), cr, CURSOR_DND);
3759   
3760   gtk_entry_draw_text (GTK_ENTRY (widget), cr);
3761
3762   /* When no text is being displayed at all, don't show the cursor */
3763   if (gtk_entry_get_display_mode (entry) != DISPLAY_BLANK &&
3764       gtk_widget_has_focus (widget) &&
3765       priv->selection_bound == priv->current_pos && priv->cursor_visible)
3766     gtk_entry_draw_cursor (GTK_ENTRY (widget), cr, CURSOR_STANDARD);
3767
3768   cairo_restore (cr);
3769
3770   /* Draw icons */
3771   for (i = 0; i < MAX_ICONS; i++)
3772     {
3773       EntryIconInfo *icon_info = priv->icons[i];
3774
3775       if (icon_info != NULL)
3776         draw_icon (widget, cr, i);
3777     }
3778
3779   return FALSE;
3780 }
3781
3782 static gint
3783 gtk_entry_enter_notify (GtkWidget *widget,
3784                         GdkEventCrossing *event)
3785 {
3786   GtkEntry *entry = GTK_ENTRY (widget);
3787   GtkEntryPrivate *priv = entry->priv;
3788   gint i;
3789
3790   for (i = 0; i < MAX_ICONS; i++)
3791     {
3792       EntryIconInfo *icon_info = priv->icons[i];
3793
3794       if (icon_info != NULL && event->window == icon_info->window)
3795         {
3796           if (should_prelight (entry, i))
3797             {
3798               icon_info->prelight = TRUE;
3799               gtk_widget_queue_draw (widget);
3800             }
3801
3802           break;
3803         }
3804     }
3805
3806     return FALSE;
3807 }
3808
3809 static gint
3810 gtk_entry_leave_notify (GtkWidget        *widget,
3811                         GdkEventCrossing *event)
3812 {
3813   GtkEntry *entry = GTK_ENTRY (widget);
3814   GtkEntryPrivate *priv = entry->priv;
3815   gint i;
3816
3817   for (i = 0; i < MAX_ICONS; i++)
3818     {
3819       EntryIconInfo *icon_info = priv->icons[i];
3820
3821       if (icon_info != NULL && event->window == icon_info->window)
3822         {
3823           /* a grab means that we may never see the button release */
3824           if (event->mode == GDK_CROSSING_GRAB || event->mode == GDK_CROSSING_GTK_GRAB)
3825             icon_info->pressed = FALSE;
3826
3827           if (should_prelight (entry, i))
3828             {
3829               icon_info->prelight = FALSE;
3830               gtk_widget_queue_draw (widget);
3831             }
3832
3833           break;
3834         }
3835     }
3836
3837   return FALSE;
3838 }
3839
3840 static void
3841 gtk_entry_get_pixel_ranges (GtkEntry  *entry,
3842                             gint     **ranges,
3843                             gint      *n_ranges)
3844 {
3845   gint start_char, end_char;
3846
3847   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start_char, &end_char))
3848     {
3849       PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
3850       PangoLayoutLine *line = pango_layout_get_lines_readonly (layout)->data;
3851       const char *text = pango_layout_get_text (layout);
3852       gint start_index = g_utf8_offset_to_pointer (text, start_char) - text;
3853       gint end_index = g_utf8_offset_to_pointer (text, end_char) - text;
3854       gint real_n_ranges, i;
3855
3856       pango_layout_line_get_x_ranges (line, start_index, end_index, ranges, &real_n_ranges);
3857
3858       if (ranges)
3859         {
3860           gint *r = *ranges;
3861           
3862           for (i = 0; i < real_n_ranges; ++i)
3863             {
3864               r[2 * i + 1] = (r[2 * i + 1] - r[2 * i]) / PANGO_SCALE;
3865               r[2 * i] = r[2 * i] / PANGO_SCALE;
3866             }
3867         }
3868       
3869       if (n_ranges)
3870         *n_ranges = real_n_ranges;
3871     }
3872   else
3873     {
3874       if (n_ranges)
3875         *n_ranges = 0;
3876       if (ranges)
3877         *ranges = NULL;
3878     }
3879 }
3880
3881 static gboolean
3882 in_selection (GtkEntry *entry,
3883               gint      x)
3884 {
3885   gint *ranges;
3886   gint n_ranges, i;
3887   gint retval = FALSE;
3888
3889   gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
3890
3891   for (i = 0; i < n_ranges; ++i)
3892     {
3893       if (x >= ranges[2 * i] && x < ranges[2 * i] + ranges[2 * i + 1])
3894         {
3895           retval = TRUE;
3896           break;
3897         }
3898     }
3899
3900   g_free (ranges);
3901   return retval;
3902 }
3903
3904 static void
3905 gtk_entry_move_handle (GtkEntry              *entry,
3906                        GtkTextHandlePosition  pos,
3907                        gint                   x,
3908                        gint                   y,
3909                        gint                   height)
3910 {
3911   GtkEntryPrivate *priv = entry->priv;
3912
3913   if (!_gtk_text_handle_get_is_dragged (priv->text_handle, pos) &&
3914       (x < 0 || x > gdk_window_get_width (priv->text_area)))
3915     {
3916       /* Hide the handle if it's not being manipulated
3917        * and fell outside of the visible text area.
3918        */
3919       _gtk_text_handle_set_visible (priv->text_handle, pos, FALSE);
3920     }
3921   else
3922     {
3923       GdkRectangle rect;
3924
3925       rect.x = CLAMP (x, 0, gdk_window_get_width (priv->text_area));
3926       rect.y = y;
3927       rect.width = 1;
3928       rect.height = height;
3929
3930       _gtk_text_handle_set_visible (priv->text_handle, pos, TRUE);
3931       _gtk_text_handle_set_position (priv->text_handle, pos, &rect);
3932     }
3933 }
3934
3935 static gint
3936 gtk_entry_get_selection_bound_location (GtkEntry *entry)
3937 {
3938   GtkEntryPrivate *priv = entry->priv;
3939   PangoLayout *layout;
3940   PangoRectangle pos;
3941   gint x;
3942   const gchar *text;
3943   gint index;
3944
3945   layout = gtk_entry_ensure_layout (entry, FALSE);
3946   text = pango_layout_get_text (layout);
3947   index = g_utf8_offset_to_pointer (text, priv->selection_bound) - text;
3948   pango_layout_index_to_pos (layout, index, &pos);
3949
3950   if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL)
3951     x = (pos.x + pos.width) / PANGO_SCALE;
3952   else
3953     x = pos.x / PANGO_SCALE;
3954
3955   return x;
3956 }
3957
3958 static void
3959 gtk_entry_update_handles (GtkEntry          *entry,
3960                           GtkTextHandleMode  mode)
3961 {
3962   GtkEntryPrivate *priv = entry->priv;
3963   gint strong_x, height;
3964   gint cursor, bound;
3965
3966   _gtk_text_handle_set_mode (priv->text_handle, mode);
3967
3968   /* Wait for recomputation before repositioning */
3969   if (priv->recompute_idle != 0)
3970     return;
3971
3972   height = gdk_window_get_height (priv->text_area);
3973
3974   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
3975   cursor = strong_x - priv->scroll_offset;
3976
3977   if (mode == GTK_TEXT_HANDLE_MODE_SELECTION)
3978     {
3979       gint start, end;
3980
3981       bound = gtk_entry_get_selection_bound_location (entry) - priv->scroll_offset;
3982
3983       if (priv->selection_bound > priv->current_pos)
3984         {
3985           start = cursor;
3986           end = bound;
3987         }
3988       else
3989         {
3990           start = bound;
3991           end = cursor;
3992         }
3993
3994       /* Update start selection bound */
3995       gtk_entry_move_handle (entry, GTK_TEXT_HANDLE_POSITION_SELECTION_START,
3996                              start, 0, height);
3997       gtk_entry_move_handle (entry, GTK_TEXT_HANDLE_POSITION_SELECTION_END,
3998                              end, 0, height);
3999     }
4000   else
4001     gtk_entry_move_handle (entry, GTK_TEXT_HANDLE_POSITION_CURSOR,
4002                            cursor, 0, height);
4003 }
4004
4005 static gint
4006 gtk_entry_button_press (GtkWidget      *widget,
4007                         GdkEventButton *event)
4008 {
4009   GtkEntry *entry = GTK_ENTRY (widget);
4010   GtkEditable *editable = GTK_EDITABLE (widget);
4011   GtkEntryPrivate *priv = entry->priv;
4012   EntryIconInfo *icon_info = NULL;
4013   gint tmp_pos;
4014   gint sel_start, sel_end;
4015   gint i;
4016
4017   for (i = 0; i < MAX_ICONS; i++)
4018     {
4019       icon_info = priv->icons[i];
4020
4021       if (!icon_info || icon_info->insensitive)
4022         continue;
4023
4024       if (event->window == icon_info->window)
4025         {
4026           if (should_prelight (entry, i))
4027             {
4028               icon_info->prelight = FALSE;
4029               gtk_widget_queue_draw (widget);
4030             }
4031
4032           priv->start_x = event->x;
4033           priv->start_y = event->y;
4034           icon_info->pressed = TRUE;
4035
4036           if (!icon_info->nonactivatable)
4037             g_signal_emit (entry, signals[ICON_PRESS], 0, i, event);
4038
4039           return TRUE;
4040         }
4041     }
4042
4043   if (event->window != priv->text_area ||
4044       (priv->button && event->button != priv->button))
4045     return FALSE;
4046
4047   gtk_entry_reset_blink_time (entry);
4048
4049   priv->button = event->button;
4050   priv->device = gdk_event_get_device ((GdkEvent *) event);
4051
4052   if (!gtk_widget_has_focus (widget))
4053     {
4054       priv->in_click = TRUE;
4055       gtk_widget_grab_focus (widget);
4056       priv->in_click = FALSE;
4057     }
4058
4059   tmp_pos = gtk_entry_find_position (entry, event->x + priv->scroll_offset);
4060
4061   if (gdk_event_triggers_context_menu ((GdkEvent *) event))
4062     {
4063       gtk_entry_do_popup (entry, event);
4064       priv->button = 0; /* Don't wait for release, since the menu will gtk_grab_add */
4065       priv->device = NULL;
4066
4067       return TRUE;
4068     }
4069   else if (event->button == GDK_BUTTON_PRIMARY)
4070     {
4071       gboolean have_selection = gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end);
4072       gboolean is_touchscreen;
4073       GdkDevice *source;
4074
4075       source = gdk_event_get_source_device ((GdkEvent *) event);
4076       is_touchscreen = test_touchscreen ||
4077         gdk_device_get_source (source) == GDK_SOURCE_TOUCHSCREEN;
4078
4079       priv->select_words = FALSE;
4080       priv->select_lines = FALSE;
4081
4082       if (event->state &
4083           gtk_widget_get_modifier_mask (widget,
4084                                         GDK_MODIFIER_INTENT_EXTEND_SELECTION))
4085         {
4086           gtk_entry_reset_im_context (entry);
4087
4088           if (!have_selection) /* select from the current position to the clicked position */
4089             sel_start = sel_end = priv->current_pos;
4090
4091           if (tmp_pos > sel_start && tmp_pos < sel_end)
4092             {
4093               /* Truncate current selection, but keep it as big as possible */
4094               if (tmp_pos - sel_start > sel_end - tmp_pos)
4095                 gtk_entry_set_positions (entry, sel_start, tmp_pos);
4096               else
4097                 gtk_entry_set_positions (entry, tmp_pos, sel_end);
4098             }
4099           else
4100             {
4101               gboolean extend_to_left;
4102               gint start, end;
4103
4104               /* Figure out what click selects and extend current selection */
4105               switch (event->type)
4106                 {
4107                 case GDK_BUTTON_PRESS:
4108                   gtk_entry_set_positions (entry, tmp_pos, tmp_pos);
4109                   break;
4110                   
4111                 case GDK_2BUTTON_PRESS:
4112                   priv->select_words = TRUE;
4113                   gtk_entry_select_word (entry);
4114                   break;
4115                   
4116                 case GDK_3BUTTON_PRESS:
4117                   priv->select_lines = TRUE;
4118                   gtk_entry_select_line (entry);
4119                   break;
4120
4121                 default:
4122                   break;
4123                 }
4124
4125               start = MIN (priv->current_pos, priv->selection_bound);
4126               start = MIN (sel_start, start);
4127               
4128               end = MAX (priv->current_pos, priv->selection_bound);
4129               end = MAX (sel_end, end);
4130
4131               if (tmp_pos == sel_start || tmp_pos == sel_end)
4132                 extend_to_left = (tmp_pos == start);
4133               else
4134                 extend_to_left = (end == sel_end);
4135               
4136               if (extend_to_left)
4137                 gtk_entry_set_positions (entry, start, end);
4138               else
4139                 gtk_entry_set_positions (entry, end, start);
4140             }
4141         }
4142       else /* no shift key */
4143         switch (event->type)
4144         {
4145         case GDK_BUTTON_PRESS:
4146           if (in_selection (entry, event->x + priv->scroll_offset))
4147             {
4148               /* Click inside the selection - we'll either start a drag, or
4149                * clear the selection
4150                */
4151               priv->in_drag = TRUE;
4152               priv->drag_start_x = event->x + priv->scroll_offset;
4153               priv->drag_start_y = event->y;
4154             }
4155           else
4156             {
4157               gtk_editable_set_position (editable, tmp_pos);
4158
4159               if (is_touchscreen)
4160                 gtk_entry_update_handles (entry, GTK_TEXT_HANDLE_MODE_CURSOR);
4161             }
4162           break;
4163  
4164         case GDK_2BUTTON_PRESS:
4165           /* We ALWAYS receive a GDK_BUTTON_PRESS immediately before 
4166            * receiving a GDK_2BUTTON_PRESS so we need to reset
4167            * priv->in_drag which may have been set above
4168            */
4169           priv->in_drag = FALSE;
4170           priv->select_words = TRUE;
4171           gtk_entry_select_word (entry);
4172
4173           if (is_touchscreen)
4174             gtk_entry_update_handles (entry, GTK_TEXT_HANDLE_MODE_SELECTION);
4175           break;
4176         
4177         case GDK_3BUTTON_PRESS:
4178           /* We ALWAYS receive a GDK_BUTTON_PRESS immediately before
4179            * receiving a GDK_3BUTTON_PRESS so we need to reset
4180            * priv->in_drag which may have been set above
4181            */
4182           priv->in_drag = FALSE;
4183           priv->select_lines = TRUE;
4184           gtk_entry_select_line (entry);
4185           if (is_touchscreen)
4186             gtk_entry_update_handles (entry, GTK_TEXT_HANDLE_MODE_SELECTION);
4187           break;
4188
4189         default:
4190           break;
4191         }
4192
4193       return TRUE;
4194     }
4195   else if (event->type == GDK_BUTTON_PRESS &&
4196            event->button == GDK_BUTTON_MIDDLE &&
4197            get_middle_click_paste (entry))
4198     {
4199       if (priv->editable)
4200         {
4201           priv->insert_pos = tmp_pos;
4202           gtk_entry_paste (entry, GDK_SELECTION_PRIMARY);
4203           return TRUE;
4204         }
4205       else
4206         {
4207           gtk_widget_error_bell (widget);
4208         }
4209     }
4210
4211   return FALSE;
4212 }
4213
4214 static gint
4215 gtk_entry_button_release (GtkWidget      *widget,
4216                           GdkEventButton *event)
4217 {
4218   GtkEntry *entry = GTK_ENTRY (widget);
4219   GtkEntryPrivate *priv = entry->priv;
4220   EntryIconInfo *icon_info = NULL;
4221   gint i;
4222
4223   for (i = 0; i < MAX_ICONS; i++)
4224     {
4225       icon_info = priv->icons[i];
4226
4227       if (!icon_info || icon_info->insensitive)
4228         continue;
4229
4230       if (event->window == icon_info->window)
4231         {
4232           icon_info->pressed = FALSE;
4233
4234           if (should_prelight (entry, i) &&
4235               event->x >= 0 && event->y >= 0 &&
4236               event->x < gdk_window_get_width (icon_info->window) &&
4237               event->y < gdk_window_get_height (icon_info->window))
4238             {
4239               icon_info->prelight = TRUE;
4240               gtk_widget_queue_draw (widget);
4241             }
4242
4243           if (!icon_info->nonactivatable)
4244             g_signal_emit (entry, signals[ICON_RELEASE], 0, i, event);
4245
4246           return TRUE;
4247         }
4248     }
4249
4250   if (event->window != priv->text_area || priv->button != event->button)
4251     return FALSE;
4252
4253   if (priv->in_drag)
4254     {
4255       gint tmp_pos = gtk_entry_find_position (entry, priv->drag_start_x);
4256       GdkDevice *source;
4257
4258       gtk_editable_set_position (GTK_EDITABLE (entry), tmp_pos);
4259
4260       source = gdk_event_get_source_device ((GdkEvent *) event);
4261
4262       if (test_touchscreen ||
4263           gdk_device_get_source (source) == GDK_SOURCE_TOUCHSCREEN)
4264         gtk_entry_update_handles (entry, GTK_TEXT_HANDLE_MODE_CURSOR);
4265
4266       priv->in_drag = 0;
4267     }
4268
4269   priv->button = 0;
4270   priv->device = NULL;
4271
4272   gtk_entry_update_primary_selection (entry);
4273               
4274   return TRUE;
4275 }
4276
4277 static gchar *
4278 _gtk_entry_get_selected_text (GtkEntry *entry)
4279 {
4280   GtkEditable *editable = GTK_EDITABLE (entry);
4281   gint         start_text, end_text;
4282   gchar       *text = NULL;
4283
4284   if (gtk_editable_get_selection_bounds (editable, &start_text, &end_text))
4285     text = gtk_editable_get_chars (editable, start_text, end_text);
4286
4287   return text;
4288 }
4289
4290 static gint
4291 gtk_entry_motion_notify (GtkWidget      *widget,
4292                          GdkEventMotion *event)
4293 {
4294   GtkEntry *entry = GTK_ENTRY (widget);
4295   GtkEntryPrivate *priv = entry->priv;
4296   EntryIconInfo *icon_info = NULL;
4297   gint tmp_pos;
4298   gint i;
4299
4300   for (i = 0; i < MAX_ICONS; i++)
4301     {
4302       icon_info = priv->icons[i];
4303
4304       if (!icon_info || icon_info->insensitive)
4305         continue;
4306
4307       if (event->window == icon_info->window)
4308         {
4309           if (icon_info->pressed &&
4310               icon_info->target_list != NULL &&
4311               gtk_drag_check_threshold (widget,
4312                                         priv->start_x,
4313                                         priv->start_y,
4314                                         event->x,
4315                                         event->y))
4316             {
4317               icon_info->in_drag = TRUE;
4318               icon_info->pressed = FALSE;
4319               gtk_drag_begin (widget,
4320                               icon_info->target_list,
4321                               icon_info->actions,
4322                               1,
4323                               (GdkEvent*)event);
4324             }
4325
4326           return TRUE;
4327         }
4328     }
4329
4330   if (priv->mouse_cursor_obscured)
4331     {
4332       GdkCursor *cursor;
4333
4334       cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_XTERM);
4335       gdk_window_set_cursor (priv->text_area, cursor);
4336       g_object_unref (cursor);
4337       priv->mouse_cursor_obscured = FALSE;
4338     }
4339
4340   if (event->window != priv->text_area || priv->button != GDK_BUTTON_PRIMARY)
4341     return FALSE;
4342
4343   if (priv->select_lines)
4344     return TRUE;
4345
4346   gdk_event_request_motions (event);
4347
4348   if (priv->in_drag)
4349     {
4350       if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL &&
4351           gtk_drag_check_threshold (widget,
4352                                     priv->drag_start_x, priv->drag_start_y,
4353                                     event->x + priv->scroll_offset, event->y))
4354         {
4355           GdkDragContext *context;
4356           GtkTargetList  *target_list = gtk_target_list_new (NULL, 0);
4357           guint actions = priv->editable ? GDK_ACTION_COPY | GDK_ACTION_MOVE : GDK_ACTION_COPY;
4358           gchar *text = NULL;
4359           cairo_surface_t *surface;
4360
4361           gtk_target_list_add_text_targets (target_list, 0);
4362
4363           text = _gtk_entry_get_selected_text (entry);
4364           surface = _gtk_text_util_create_drag_icon (widget, text, -1);
4365
4366           context = gtk_drag_begin (widget, target_list, actions,
4367                                     priv->button, (GdkEvent *)event);
4368           
4369           if (surface)
4370             gtk_drag_set_icon_surface (context, surface);
4371           else
4372             gtk_drag_set_icon_default (context);
4373           
4374           if (surface)
4375             cairo_surface_destroy (surface);
4376           g_free (text);
4377
4378           priv->in_drag = FALSE;
4379           priv->button = 0;
4380           priv->device = NULL;
4381
4382           gtk_target_list_unref (target_list);
4383         }
4384     }
4385   else
4386     {
4387       GdkInputSource input_source;
4388       GdkDevice *source;
4389       guint length;
4390
4391       length = gtk_entry_buffer_get_length (get_buffer (entry));
4392
4393       if (event->y < 0)
4394         tmp_pos = 0;
4395       else if (event->y >= gdk_window_get_height (priv->text_area))
4396         tmp_pos = length;
4397       else
4398         tmp_pos = gtk_entry_find_position (entry, event->x + priv->scroll_offset);
4399
4400       source = gdk_event_get_source_device ((GdkEvent *) event);
4401       input_source = gdk_device_get_source (source);
4402
4403       if (priv->select_words)
4404         {
4405           gint min, max;
4406           gint old_min, old_max;
4407           gint pos, bound;
4408           
4409           min = gtk_entry_move_backward_word (entry, tmp_pos, TRUE);
4410           max = gtk_entry_move_forward_word (entry, tmp_pos, TRUE);
4411
4412           pos = priv->current_pos;
4413           bound = priv->selection_bound;
4414
4415           old_min = MIN(priv->current_pos, priv->selection_bound);
4416           old_max = MAX(priv->current_pos, priv->selection_bound);
4417           
4418           if (min < old_min)
4419             {
4420               pos = min;
4421               bound = old_max;
4422             }
4423           else if (old_max < max) 
4424             {
4425               pos = max;
4426               bound = old_min;
4427             }
4428           else if (pos == old_min) 
4429             {
4430               if (priv->current_pos != min)
4431                 pos = max;
4432             }
4433           else 
4434             {
4435               if (priv->current_pos != max)
4436                 pos = min;
4437             }
4438
4439           gtk_entry_set_positions (entry, pos, bound);
4440         }
4441       else
4442         gtk_entry_set_positions (entry, tmp_pos, -1);
4443
4444       /* Update touch handles' position */
4445       if (test_touchscreen || input_source == GDK_SOURCE_TOUCHSCREEN)
4446         gtk_entry_update_handles (entry,
4447                                   (priv->current_pos == priv->selection_bound) ?
4448                                   GTK_TEXT_HANDLE_MODE_CURSOR :
4449                                   GTK_TEXT_HANDLE_MODE_SELECTION);
4450     }
4451
4452   return TRUE;
4453 }
4454
4455 static void
4456 set_invisible_cursor (GdkWindow *window)
4457 {
4458   GdkDisplay *display;
4459   GdkCursor *cursor;
4460
4461   display = gdk_window_get_display (window);
4462   cursor = gdk_cursor_new_for_display (display, GDK_BLANK_CURSOR);
4463
4464   gdk_window_set_cursor (window, cursor);
4465
4466   g_object_unref (cursor);
4467 }
4468
4469 static void
4470 gtk_entry_obscure_mouse_cursor (GtkEntry *entry)
4471 {
4472   GtkEntryPrivate *priv = entry->priv;
4473
4474   if (priv->mouse_cursor_obscured)
4475     return;
4476
4477   set_invisible_cursor (priv->text_area);
4478
4479   priv->mouse_cursor_obscured = TRUE;
4480 }
4481
4482 static gint
4483 gtk_entry_key_press (GtkWidget   *widget,
4484                      GdkEventKey *event)
4485 {
4486   GtkEntry *entry = GTK_ENTRY (widget);
4487   GtkEntryPrivate *priv = entry->priv;
4488
4489   gtk_entry_reset_blink_time (entry);
4490   gtk_entry_pend_cursor_blink (entry);
4491   _gtk_text_handle_set_mode (priv->text_handle,
4492                              GTK_TEXT_HANDLE_MODE_NONE);
4493
4494   if (priv->editable)
4495     {
4496       if (gtk_im_context_filter_keypress (priv->im_context, event))
4497         {
4498           gtk_entry_obscure_mouse_cursor (entry);
4499           priv->need_im_reset = TRUE;
4500           return TRUE;
4501         }
4502     }
4503
4504   if (event->keyval == GDK_KEY_Return ||
4505       event->keyval == GDK_KEY_KP_Enter ||
4506       event->keyval == GDK_KEY_ISO_Enter ||
4507       event->keyval == GDK_KEY_Escape)
4508     gtk_entry_reset_im_context (entry);
4509
4510   if (GTK_WIDGET_CLASS (gtk_entry_parent_class)->key_press_event (widget, event))
4511     /* Activate key bindings
4512      */
4513     return TRUE;
4514
4515   if (!priv->editable && event->length)
4516     gtk_widget_error_bell (widget);
4517
4518   return FALSE;
4519 }
4520
4521 static gint
4522 gtk_entry_key_release (GtkWidget   *widget,
4523                        GdkEventKey *event)
4524 {
4525   GtkEntry *entry = GTK_ENTRY (widget);
4526   GtkEntryPrivate *priv = entry->priv;
4527
4528   if (priv->editable)
4529     {
4530       if (gtk_im_context_filter_keypress (priv->im_context, event))
4531         {
4532           priv->need_im_reset = TRUE;
4533           return TRUE;
4534         }
4535     }
4536
4537   return GTK_WIDGET_CLASS (gtk_entry_parent_class)->key_release_event (widget, event);
4538 }
4539
4540 static gint
4541 gtk_entry_focus_in (GtkWidget     *widget,
4542                     GdkEventFocus *event)
4543 {
4544   GtkEntry *entry = GTK_ENTRY (widget);
4545   GtkEntryPrivate *priv = entry->priv;
4546   GdkKeymap *keymap;
4547
4548   gtk_widget_queue_draw (widget);
4549
4550   keymap = gdk_keymap_get_for_display (gtk_widget_get_display (widget));
4551
4552   if (priv->editable)
4553     {
4554       priv->need_im_reset = TRUE;
4555       gtk_im_context_focus_in (priv->im_context);
4556       keymap_state_changed (keymap, entry);
4557       g_signal_connect (keymap, "state-changed", 
4558                         G_CALLBACK (keymap_state_changed), entry);
4559     }
4560
4561   g_signal_connect (keymap, "direction-changed",
4562                     G_CALLBACK (keymap_direction_changed), entry);
4563
4564   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
4565       priv->placeholder_text != NULL)
4566     {
4567       gtk_entry_recompute (entry);
4568     }
4569   else
4570     {
4571       gtk_entry_reset_blink_time (entry);
4572       gtk_entry_check_cursor_blink (entry);
4573     }
4574
4575   return FALSE;
4576 }
4577
4578 static gint
4579 gtk_entry_focus_out (GtkWidget     *widget,
4580                      GdkEventFocus *event)
4581 {
4582   GtkEntry *entry = GTK_ENTRY (widget);
4583   GtkEntryPrivate *priv = entry->priv;
4584   GtkEntryCompletion *completion;
4585   GdkKeymap *keymap;
4586
4587   _gtk_text_handle_set_mode (priv->text_handle,
4588                              GTK_TEXT_HANDLE_MODE_NONE);
4589
4590   gtk_widget_queue_draw (widget);
4591
4592   keymap = gdk_keymap_get_for_display (gtk_widget_get_display (widget));
4593
4594   if (priv->editable)
4595     {
4596       priv->need_im_reset = TRUE;
4597       gtk_im_context_focus_out (priv->im_context);
4598       remove_capslock_feedback (entry);
4599     }
4600
4601   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
4602       priv->placeholder_text != NULL)
4603     {
4604       gtk_entry_recompute (entry);
4605     }
4606   else
4607     {
4608       gtk_entry_check_cursor_blink (entry);
4609     }
4610
4611   g_signal_handlers_disconnect_by_func (keymap, keymap_state_changed, entry);
4612   g_signal_handlers_disconnect_by_func (keymap, keymap_direction_changed, entry);
4613
4614   completion = gtk_entry_get_completion (entry);
4615   if (completion)
4616     _gtk_entry_completion_popdown (completion);
4617
4618   return FALSE;
4619 }
4620
4621 static void
4622 gtk_entry_grab_focus (GtkWidget *widget)
4623 {
4624   GtkEntry *entry = GTK_ENTRY (widget);
4625   GtkEntryPrivate *priv = entry->priv;
4626   gboolean select_on_focus;
4627
4628   GTK_WIDGET_CLASS (gtk_entry_parent_class)->grab_focus (widget);
4629
4630   if (priv->editable && !priv->in_click)
4631     {
4632       g_object_get (gtk_widget_get_settings (widget),
4633                     "gtk-entry-select-on-focus",
4634                     &select_on_focus,
4635                     NULL);
4636
4637       if (select_on_focus)
4638         gtk_editable_select_region (GTK_EDITABLE (widget), 0, -1);
4639     }
4640 }
4641
4642 static void
4643 gtk_entry_direction_changed (GtkWidget        *widget,
4644                              GtkTextDirection  previous_dir)
4645 {
4646   GtkEntry *entry = GTK_ENTRY (widget);
4647
4648   gtk_entry_recompute (entry);
4649
4650   GTK_WIDGET_CLASS (gtk_entry_parent_class)->direction_changed (widget, previous_dir);
4651 }
4652
4653 static void
4654 gtk_entry_state_flags_changed (GtkWidget     *widget,
4655                                GtkStateFlags  previous_state)
4656 {
4657   GtkEntry *entry = GTK_ENTRY (widget);
4658   GtkEntryPrivate *priv = entry->priv;
4659   GdkCursor *cursor;
4660
4661   if (gtk_widget_get_realized (widget))
4662     {
4663       if (gtk_widget_is_sensitive (widget))
4664         cursor = gdk_cursor_new_for_display (gtk_widget_get_display (widget), GDK_XTERM);
4665       else
4666         cursor = NULL;
4667
4668       gdk_window_set_cursor (priv->text_area, cursor);
4669
4670       if (cursor)
4671         g_object_unref (cursor);
4672
4673       priv->mouse_cursor_obscured = FALSE;
4674
4675       update_cursors (widget);
4676     }
4677
4678   if (!gtk_widget_is_sensitive (widget))
4679     {
4680       /* Clear any selection */
4681       gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
4682     }
4683
4684   gtk_entry_update_cached_style_values (entry);
4685 }
4686
4687 static void
4688 gtk_entry_screen_changed (GtkWidget *widget,
4689                           GdkScreen *old_screen)
4690 {
4691   gtk_entry_recompute (GTK_ENTRY (widget));
4692 }
4693
4694 /* GtkEditable method implementations
4695  */
4696 static void
4697 gtk_entry_insert_text (GtkEditable *editable,
4698                        const gchar *new_text,
4699                        gint         new_text_length,
4700                        gint        *position)
4701 {
4702   g_object_ref (editable);
4703
4704   /*
4705    * The incoming text may a password or other secret. We make sure
4706    * not to copy it into temporary buffers.
4707    */
4708
4709   g_signal_emit_by_name (editable, "insert-text", new_text, new_text_length, position);
4710
4711   g_object_unref (editable);
4712 }
4713
4714 static void
4715 gtk_entry_delete_text (GtkEditable *editable,
4716                        gint         start_pos,
4717                        gint         end_pos)
4718 {
4719   g_object_ref (editable);
4720
4721   g_signal_emit_by_name (editable, "delete-text", start_pos, end_pos);
4722
4723   g_object_unref (editable);
4724 }
4725
4726 static gchar *    
4727 gtk_entry_get_chars      (GtkEditable   *editable,
4728                           gint           start_pos,
4729                           gint           end_pos)
4730 {
4731   GtkEntry *entry = GTK_ENTRY (editable);
4732   const gchar *text;
4733   gint text_length;
4734   gint start_index, end_index;
4735
4736   text = gtk_entry_buffer_get_text (get_buffer (entry));
4737   text_length = gtk_entry_buffer_get_length (get_buffer (entry));
4738
4739   if (end_pos < 0)
4740     end_pos = text_length;
4741
4742   start_pos = MIN (text_length, start_pos);
4743   end_pos = MIN (text_length, end_pos);
4744
4745   start_index = g_utf8_offset_to_pointer (text, start_pos) - text;
4746   end_index = g_utf8_offset_to_pointer (text, end_pos) - text;
4747
4748   return g_strndup (text + start_index, end_index - start_index);
4749 }
4750
4751 static void
4752 gtk_entry_real_set_position (GtkEditable *editable,
4753                              gint         position)
4754 {
4755   GtkEntry *entry = GTK_ENTRY (editable);
4756   GtkEntryPrivate *priv = entry->priv;
4757
4758   guint length;
4759
4760   length = gtk_entry_buffer_get_length (get_buffer (entry));
4761   if (position < 0 || position > length)
4762     position = length;
4763
4764   if (position != priv->current_pos ||
4765       position != priv->selection_bound)
4766     {
4767       gtk_entry_reset_im_context (entry);
4768       gtk_entry_set_positions (entry, position, position);
4769     }
4770 }
4771
4772 static gint
4773 gtk_entry_get_position (GtkEditable *editable)
4774 {
4775   GtkEntry *entry = GTK_ENTRY (editable);
4776   GtkEntryPrivate *priv = entry->priv;
4777
4778   return priv->current_pos;
4779 }
4780
4781 static void
4782 gtk_entry_set_selection_bounds (GtkEditable *editable,
4783                                 gint         start,
4784                                 gint         end)
4785 {
4786   GtkEntry *entry = GTK_ENTRY (editable);
4787   guint length;
4788
4789   length = gtk_entry_buffer_get_length (get_buffer (entry));
4790   if (start < 0)
4791     start = length;
4792   if (end < 0)
4793     end = length;
4794
4795   gtk_entry_reset_im_context (entry);
4796
4797   gtk_entry_set_positions (entry,
4798                            MIN (end, length),
4799                            MIN (start, length));
4800
4801   gtk_entry_update_primary_selection (entry);
4802 }
4803
4804 static gboolean
4805 gtk_entry_get_selection_bounds (GtkEditable *editable,
4806                                 gint        *start,
4807                                 gint        *end)
4808 {
4809   GtkEntry *entry = GTK_ENTRY (editable);
4810   GtkEntryPrivate *priv = entry->priv;
4811
4812   *start = priv->selection_bound;
4813   *end = priv->current_pos;
4814
4815   return (priv->selection_bound != priv->current_pos);
4816 }
4817
4818 static void
4819 icon_theme_changed (GtkEntry *entry)
4820 {
4821   GtkEntryPrivate *priv = entry->priv;
4822   gint i;
4823
4824   for (i = 0; i < MAX_ICONS; i++)
4825     {
4826       EntryIconInfo *icon_info = priv->icons[i];
4827       if (icon_info != NULL) 
4828         _gtk_icon_helper_invalidate (icon_info->icon_helper);
4829     }
4830
4831   gtk_widget_queue_draw (GTK_WIDGET (entry));
4832 }
4833
4834 static void
4835 gtk_entry_update_cached_style_values (GtkEntry *entry)
4836 {
4837   GtkEntryPrivate *priv = entry->priv;
4838   gint focus_width;
4839   gboolean interior_focus;
4840
4841   gtk_widget_style_get (GTK_WIDGET (entry),
4842                         "focus-line-width", &focus_width,
4843                         "interior-focus", &interior_focus,
4844                         NULL);
4845   priv->focus_width = focus_width;
4846   priv->interior_focus = interior_focus;
4847
4848   if (!priv->invisible_char_set)
4849     {
4850       gunichar ch = find_invisible_char (GTK_WIDGET (entry));
4851
4852       if (priv->invisible_char != ch)
4853         {
4854           priv->invisible_char = ch;
4855           g_object_notify (G_OBJECT (entry), "invisible-char");
4856         }
4857     }
4858 }
4859
4860 static void 
4861 gtk_entry_style_updated (GtkWidget *widget)
4862 {
4863   GtkEntry *entry = GTK_ENTRY (widget);
4864
4865   GTK_WIDGET_CLASS (gtk_entry_parent_class)->style_updated (widget);
4866
4867   gtk_entry_update_cached_style_values (entry);
4868
4869   icon_theme_changed (entry);
4870 }
4871
4872 /* GtkCellEditable method implementations
4873  */
4874 static void
4875 gtk_cell_editable_entry_activated (GtkEntry *entry, gpointer data)
4876 {
4877   gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4878   gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4879 }
4880
4881 static gboolean
4882 gtk_cell_editable_key_press_event (GtkEntry    *entry,
4883                                    GdkEventKey *key_event,
4884                                    gpointer     data)
4885 {
4886   GtkEntryPrivate *priv = entry->priv;
4887
4888   if (key_event->keyval == GDK_KEY_Escape)
4889     {
4890       priv->editing_canceled = TRUE;
4891       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4892       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4893
4894       return TRUE;
4895     }
4896
4897   /* override focus */
4898   if (key_event->keyval == GDK_KEY_Up || key_event->keyval == GDK_KEY_Down)
4899     {
4900       gtk_cell_editable_editing_done (GTK_CELL_EDITABLE (entry));
4901       gtk_cell_editable_remove_widget (GTK_CELL_EDITABLE (entry));
4902
4903       return TRUE;
4904     }
4905
4906   return FALSE;
4907 }
4908
4909 static void
4910 gtk_entry_start_editing (GtkCellEditable *cell_editable,
4911                          GdkEvent        *event)
4912 {
4913   GtkEntry *entry = GTK_ENTRY (cell_editable);
4914   GtkEntryPrivate *priv = entry->priv;
4915
4916   priv->is_cell_renderer = TRUE;
4917
4918   g_signal_connect (cell_editable, "activate",
4919                     G_CALLBACK (gtk_cell_editable_entry_activated), NULL);
4920   g_signal_connect (cell_editable, "key-press-event",
4921                     G_CALLBACK (gtk_cell_editable_key_press_event), NULL);
4922 }
4923
4924 static void
4925 gtk_entry_password_hint_free (GtkEntryPasswordHint *password_hint)
4926 {
4927   if (password_hint->source_id)
4928     g_source_remove (password_hint->source_id);
4929
4930   g_slice_free (GtkEntryPasswordHint, password_hint);
4931 }
4932
4933
4934 static gboolean
4935 gtk_entry_remove_password_hint (gpointer data)
4936 {
4937   GtkEntryPasswordHint *password_hint = g_object_get_qdata (data, quark_password_hint);
4938   password_hint->position = -1;
4939
4940   /* Force the string to be redrawn, but now without a visible character */
4941   gtk_entry_recompute (GTK_ENTRY (data));
4942   return FALSE;
4943 }
4944
4945 /* Default signal handlers
4946  */
4947 static void
4948 gtk_entry_real_insert_text (GtkEditable *editable,
4949                             const gchar *new_text,
4950                             gint         new_text_length,
4951                             gint        *position)
4952 {
4953   guint n_inserted;
4954   gint n_chars;
4955
4956   n_chars = g_utf8_strlen (new_text, new_text_length);
4957
4958   /*
4959    * The actual insertion into the buffer. This will end up firing the
4960    * following signal handlers: buffer_inserted_text(), buffer_notify_display_text(),
4961    * buffer_notify_text(), buffer_notify_length()
4962    */
4963   begin_change (GTK_ENTRY (editable));
4964
4965   n_inserted = gtk_entry_buffer_insert_text (get_buffer (GTK_ENTRY (editable)), *position, new_text, n_chars);
4966
4967   end_change (GTK_ENTRY (editable));
4968
4969   if (n_inserted != n_chars)
4970       gtk_widget_error_bell (GTK_WIDGET (editable));
4971
4972   *position += n_inserted;
4973 }
4974
4975 static void
4976 gtk_entry_real_delete_text (GtkEditable *editable,
4977                             gint         start_pos,
4978                             gint         end_pos)
4979 {
4980   /*
4981    * The actual deletion from the buffer. This will end up firing the
4982    * following signal handlers: buffer_deleted_text(), buffer_notify_display_text(),
4983    * buffer_notify_text(), buffer_notify_length()
4984    */
4985
4986   begin_change (GTK_ENTRY (editable));
4987
4988   gtk_entry_buffer_delete_text (get_buffer (GTK_ENTRY (editable)), start_pos, end_pos - start_pos);
4989
4990   end_change (GTK_ENTRY (editable));
4991 }
4992
4993 /* GtkEntryBuffer signal handlers
4994  */
4995 static void
4996 buffer_inserted_text (GtkEntryBuffer *buffer,
4997                       guint           position,
4998                       const gchar    *chars,
4999                       guint           n_chars,
5000                       GtkEntry       *entry)
5001 {
5002   GtkEntryPrivate *priv = entry->priv;
5003   guint password_hint_timeout;
5004   guint current_pos;
5005   gint selection_bound;
5006
5007   current_pos = priv->current_pos;
5008   if (current_pos > position)
5009     current_pos += n_chars;
5010
5011   selection_bound = priv->selection_bound;
5012   if (selection_bound > position)
5013     selection_bound += n_chars;
5014
5015   gtk_entry_set_positions (entry, current_pos, selection_bound);
5016
5017   /* Calculate the password hint if it needs to be displayed. */
5018   if (n_chars == 1 && !priv->visible)
5019     {
5020       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
5021                     "gtk-entry-password-hint-timeout", &password_hint_timeout,
5022                     NULL);
5023
5024       if (password_hint_timeout > 0)
5025         {
5026           GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
5027                                                                     quark_password_hint);
5028           if (!password_hint)
5029             {
5030               password_hint = g_slice_new0 (GtkEntryPasswordHint);
5031               g_object_set_qdata_full (G_OBJECT (entry), quark_password_hint, password_hint,
5032                                        (GDestroyNotify)gtk_entry_password_hint_free);
5033             }
5034
5035           password_hint->position = position;
5036           if (password_hint->source_id)
5037             g_source_remove (password_hint->source_id);
5038           password_hint->source_id = gdk_threads_add_timeout (password_hint_timeout,
5039                                                               (GSourceFunc)gtk_entry_remove_password_hint, entry);
5040         }
5041     }
5042 }
5043
5044 static void
5045 buffer_deleted_text (GtkEntryBuffer *buffer,
5046                      guint           position,
5047                      guint           n_chars,
5048                      GtkEntry       *entry)
5049 {
5050   GtkEntryPrivate *priv = entry->priv;
5051   guint end_pos = position + n_chars;
5052   gint selection_bound;
5053   guint current_pos;
5054
5055   current_pos = priv->current_pos;
5056   if (current_pos > position)
5057     current_pos -= MIN (current_pos, end_pos) - position;
5058
5059   selection_bound = priv->selection_bound;
5060   if (selection_bound > position)
5061     selection_bound -= MIN (selection_bound, end_pos) - position;
5062
5063   gtk_entry_set_positions (entry, current_pos, selection_bound);
5064
5065   /* We might have deleted the selection */
5066   gtk_entry_update_primary_selection (entry);
5067
5068   /* Disable the password hint if one exists. */
5069   if (!priv->visible)
5070     {
5071       GtkEntryPasswordHint *password_hint = g_object_get_qdata (G_OBJECT (entry),
5072                                                                 quark_password_hint);
5073       if (password_hint)
5074         {
5075           if (password_hint->source_id)
5076             g_source_remove (password_hint->source_id);
5077           password_hint->source_id = 0;
5078           password_hint->position = -1;
5079         }
5080     }
5081 }
5082
5083 static void
5084 buffer_notify_text (GtkEntryBuffer *buffer,
5085                     GParamSpec     *spec,
5086                     GtkEntry       *entry)
5087 {
5088   gtk_entry_recompute (entry);
5089   emit_changed (entry);
5090   g_object_notify (G_OBJECT (entry), "text");
5091 }
5092
5093 static void
5094 buffer_notify_length (GtkEntryBuffer *buffer,
5095                       GParamSpec     *spec,
5096                       GtkEntry       *entry)
5097 {
5098   g_object_notify (G_OBJECT (entry), "text-length");
5099 }
5100
5101 static void
5102 buffer_notify_max_length (GtkEntryBuffer *buffer,
5103                           GParamSpec     *spec,
5104                           GtkEntry       *entry)
5105 {
5106   g_object_notify (G_OBJECT (entry), "max-length");
5107 }
5108
5109 static void
5110 buffer_connect_signals (GtkEntry *entry)
5111 {
5112   g_signal_connect (get_buffer (entry), "inserted-text", G_CALLBACK (buffer_inserted_text), entry);
5113   g_signal_connect (get_buffer (entry), "deleted-text", G_CALLBACK (buffer_deleted_text), entry);
5114   g_signal_connect (get_buffer (entry), "notify::text", G_CALLBACK (buffer_notify_text), entry);
5115   g_signal_connect (get_buffer (entry), "notify::length", G_CALLBACK (buffer_notify_length), entry);
5116   g_signal_connect (get_buffer (entry), "notify::max-length", G_CALLBACK (buffer_notify_max_length), entry);
5117 }
5118
5119 static void
5120 buffer_disconnect_signals (GtkEntry *entry)
5121 {
5122   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_inserted_text, entry);
5123   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_deleted_text, entry);
5124   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_text, entry);
5125   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_length, entry);
5126   g_signal_handlers_disconnect_by_func (get_buffer (entry), buffer_notify_max_length, entry);
5127 }
5128
5129 /* Compute the X position for an offset that corresponds to the "more important
5130  * cursor position for that offset. We use this when trying to guess to which
5131  * end of the selection we should go to when the user hits the left or
5132  * right arrow key.
5133  */
5134 static gint
5135 get_better_cursor_x (GtkEntry *entry,
5136                      gint      offset)
5137 {
5138   GtkEntryPrivate *priv = entry->priv;
5139   GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
5140   PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
5141   gboolean split_cursor;
5142   
5143   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
5144   const gchar *text = pango_layout_get_text (layout);
5145   gint index = g_utf8_offset_to_pointer (text, offset) - text;
5146   
5147   PangoRectangle strong_pos, weak_pos;
5148   
5149   g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
5150                 "gtk-split-cursor", &split_cursor,
5151                 NULL);
5152
5153   pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
5154
5155   if (split_cursor)
5156     return strong_pos.x / PANGO_SCALE;
5157   else
5158     return (keymap_direction == priv->resolved_dir) ? strong_pos.x / PANGO_SCALE : weak_pos.x / PANGO_SCALE;
5159 }
5160
5161 static void
5162 gtk_entry_move_cursor (GtkEntry       *entry,
5163                        GtkMovementStep step,
5164                        gint            count,
5165                        gboolean        extend_selection)
5166 {
5167   GtkEntryPrivate *priv = entry->priv;
5168   gint new_pos = priv->current_pos;
5169
5170   gtk_entry_reset_im_context (entry);
5171
5172   if (priv->current_pos != priv->selection_bound && !extend_selection)
5173     {
5174       /* If we have a current selection and aren't extending it, move to the
5175        * start/or end of the selection as appropriate
5176        */
5177       switch (step)
5178         {
5179         case GTK_MOVEMENT_VISUAL_POSITIONS:
5180           {
5181             gint current_x = get_better_cursor_x (entry, priv->current_pos);
5182             gint bound_x = get_better_cursor_x (entry, priv->selection_bound);
5183
5184             if (count <= 0)
5185               new_pos = current_x < bound_x ? priv->current_pos : priv->selection_bound;
5186             else 
5187               new_pos = current_x > bound_x ? priv->current_pos : priv->selection_bound;
5188             break;
5189           }
5190         case GTK_MOVEMENT_LOGICAL_POSITIONS:
5191         case GTK_MOVEMENT_WORDS:
5192           if (count < 0)
5193             new_pos = MIN (priv->current_pos, priv->selection_bound);
5194           else
5195             new_pos = MAX (priv->current_pos, priv->selection_bound);
5196           break;
5197         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
5198         case GTK_MOVEMENT_PARAGRAPH_ENDS:
5199         case GTK_MOVEMENT_BUFFER_ENDS:
5200           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
5201           break;
5202         case GTK_MOVEMENT_DISPLAY_LINES:
5203         case GTK_MOVEMENT_PARAGRAPHS:
5204         case GTK_MOVEMENT_PAGES:
5205         case GTK_MOVEMENT_HORIZONTAL_PAGES:
5206           break;
5207         }
5208     }
5209   else
5210     {
5211       switch (step)
5212         {
5213         case GTK_MOVEMENT_LOGICAL_POSITIONS:
5214           new_pos = gtk_entry_move_logically (entry, new_pos, count);
5215           break;
5216         case GTK_MOVEMENT_VISUAL_POSITIONS:
5217           new_pos = gtk_entry_move_visually (entry, new_pos, count);
5218           if (priv->current_pos == new_pos)
5219             {
5220               if (!extend_selection)
5221                 {
5222                   if (!gtk_widget_keynav_failed (GTK_WIDGET (entry),
5223                                                  count > 0 ?
5224                                                  GTK_DIR_RIGHT : GTK_DIR_LEFT))
5225                     {
5226                       GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (entry));
5227
5228                       if (toplevel)
5229                         gtk_widget_child_focus (toplevel,
5230                                                 count > 0 ?
5231                                                 GTK_DIR_RIGHT : GTK_DIR_LEFT);
5232                     }
5233                 }
5234               else
5235                 {
5236                   gtk_widget_error_bell (GTK_WIDGET (entry));
5237                 }
5238             }
5239           break;
5240         case GTK_MOVEMENT_WORDS:
5241           while (count > 0)
5242             {
5243               new_pos = gtk_entry_move_forward_word (entry, new_pos, FALSE);
5244               count--;
5245             }
5246           while (count < 0)
5247             {
5248               new_pos = gtk_entry_move_backward_word (entry, new_pos, FALSE);
5249               count++;
5250             }
5251           if (priv->current_pos == new_pos)
5252             gtk_widget_error_bell (GTK_WIDGET (entry));
5253           break;
5254         case GTK_MOVEMENT_DISPLAY_LINE_ENDS:
5255         case GTK_MOVEMENT_PARAGRAPH_ENDS:
5256         case GTK_MOVEMENT_BUFFER_ENDS:
5257           new_pos = count < 0 ? 0 : gtk_entry_buffer_get_length (get_buffer (entry));
5258           if (priv->current_pos == new_pos)
5259             gtk_widget_error_bell (GTK_WIDGET (entry));
5260           break;
5261         case GTK_MOVEMENT_DISPLAY_LINES:
5262         case GTK_MOVEMENT_PARAGRAPHS:
5263         case GTK_MOVEMENT_PAGES:
5264         case GTK_MOVEMENT_HORIZONTAL_PAGES:
5265           break;
5266         }
5267     }
5268
5269   if (extend_selection)
5270     gtk_editable_select_region (GTK_EDITABLE (entry), priv->selection_bound, new_pos);
5271   else
5272     gtk_editable_set_position (GTK_EDITABLE (entry), new_pos);
5273   
5274   gtk_entry_pend_cursor_blink (entry);
5275 }
5276
5277 static void
5278 gtk_entry_insert_at_cursor (GtkEntry    *entry,
5279                             const gchar *str)
5280 {
5281   GtkEntryPrivate *priv = entry->priv;
5282   GtkEditable *editable = GTK_EDITABLE (entry);
5283   gint pos = priv->current_pos;
5284
5285   if (priv->editable)
5286     {
5287       gtk_entry_reset_im_context (entry);
5288       gtk_editable_insert_text (editable, str, -1, &pos);
5289       gtk_editable_set_position (editable, pos);
5290     }
5291 }
5292
5293 static void
5294 gtk_entry_delete_from_cursor (GtkEntry       *entry,
5295                               GtkDeleteType   type,
5296                               gint            count)
5297 {
5298   GtkEntryPrivate *priv = entry->priv;
5299   GtkEditable *editable = GTK_EDITABLE (entry);
5300   gint start_pos = priv->current_pos;
5301   gint end_pos = priv->current_pos;
5302   gint old_n_bytes = gtk_entry_buffer_get_bytes (get_buffer (entry));
5303
5304   gtk_entry_reset_im_context (entry);
5305
5306   if (!priv->editable)
5307     {
5308       gtk_widget_error_bell (GTK_WIDGET (entry));
5309       return;
5310     }
5311
5312   if (priv->selection_bound != priv->current_pos)
5313     {
5314       gtk_editable_delete_selection (editable);
5315       return;
5316     }
5317   
5318   switch (type)
5319     {
5320     case GTK_DELETE_CHARS:
5321       end_pos = gtk_entry_move_logically (entry, priv->current_pos, count);
5322       gtk_editable_delete_text (editable, MIN (start_pos, end_pos), MAX (start_pos, end_pos));
5323       break;
5324     case GTK_DELETE_WORDS:
5325       if (count < 0)
5326         {
5327           /* Move to end of current word, or if not on a word, end of previous word */
5328           end_pos = gtk_entry_move_backward_word (entry, end_pos, FALSE);
5329           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5330         }
5331       else if (count > 0)
5332         {
5333           /* Move to beginning of current word, or if not on a word, begining of next word */
5334           start_pos = gtk_entry_move_forward_word (entry, start_pos, FALSE);
5335           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5336         }
5337         
5338       /* Fall through */
5339     case GTK_DELETE_WORD_ENDS:
5340       while (count < 0)
5341         {
5342           start_pos = gtk_entry_move_backward_word (entry, start_pos, FALSE);
5343           count++;
5344         }
5345       while (count > 0)
5346         {
5347           end_pos = gtk_entry_move_forward_word (entry, end_pos, FALSE);
5348           count--;
5349         }
5350       gtk_editable_delete_text (editable, start_pos, end_pos);
5351       break;
5352     case GTK_DELETE_DISPLAY_LINE_ENDS:
5353     case GTK_DELETE_PARAGRAPH_ENDS:
5354       if (count < 0)
5355         gtk_editable_delete_text (editable, 0, priv->current_pos);
5356       else
5357         gtk_editable_delete_text (editable, priv->current_pos, -1);
5358       break;
5359     case GTK_DELETE_DISPLAY_LINES:
5360     case GTK_DELETE_PARAGRAPHS:
5361       gtk_editable_delete_text (editable, 0, -1);  
5362       break;
5363     case GTK_DELETE_WHITESPACE:
5364       gtk_entry_delete_whitespace (entry);
5365       break;
5366     }
5367
5368   if (gtk_entry_buffer_get_bytes (get_buffer (entry)) == old_n_bytes)
5369     gtk_widget_error_bell (GTK_WIDGET (entry));
5370
5371   gtk_entry_pend_cursor_blink (entry);
5372 }
5373
5374 static void
5375 gtk_entry_backspace (GtkEntry *entry)
5376 {
5377   GtkEntryPrivate *priv = entry->priv;
5378   GtkEditable *editable = GTK_EDITABLE (entry);
5379   gint prev_pos;
5380
5381   gtk_entry_reset_im_context (entry);
5382
5383   if (!priv->editable)
5384     {
5385       gtk_widget_error_bell (GTK_WIDGET (entry));
5386       return;
5387     }
5388
5389   if (priv->selection_bound != priv->current_pos)
5390     {
5391       gtk_editable_delete_selection (editable);
5392       return;
5393     }
5394
5395   prev_pos = gtk_entry_move_logically (entry, priv->current_pos, -1);
5396
5397   if (prev_pos < priv->current_pos)
5398     {
5399       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
5400       PangoLogAttr *log_attrs;
5401       gint n_attrs;
5402
5403       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
5404
5405       /* Deleting parts of characters */
5406       if (log_attrs[priv->current_pos].backspace_deletes_character)
5407         {
5408           gchar *cluster_text;
5409           gchar *normalized_text;
5410           glong  len;
5411
5412           cluster_text = _gtk_entry_get_display_text (entry, prev_pos,
5413                                                       priv->current_pos);
5414           normalized_text = g_utf8_normalize (cluster_text,
5415                                               strlen (cluster_text),
5416                                               G_NORMALIZE_NFD);
5417           len = g_utf8_strlen (normalized_text, -1);
5418
5419           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5420           if (len > 1)
5421             {
5422               gint pos = priv->current_pos;
5423
5424               gtk_editable_insert_text (editable, normalized_text,
5425                                         g_utf8_offset_to_pointer (normalized_text, len - 1) - normalized_text,
5426                                         &pos);
5427               gtk_editable_set_position (editable, pos);
5428             }
5429
5430           g_free (normalized_text);
5431           g_free (cluster_text);
5432         }
5433       else
5434         {
5435           gtk_editable_delete_text (editable, prev_pos, priv->current_pos);
5436         }
5437       
5438       g_free (log_attrs);
5439     }
5440   else
5441     {
5442       gtk_widget_error_bell (GTK_WIDGET (entry));
5443     }
5444
5445   gtk_entry_pend_cursor_blink (entry);
5446 }
5447
5448 static void
5449 gtk_entry_copy_clipboard (GtkEntry *entry)
5450 {
5451   GtkEntryPrivate *priv = entry->priv;
5452   GtkEditable *editable = GTK_EDITABLE (entry);
5453   gint start, end;
5454   gchar *str;
5455
5456   if (gtk_editable_get_selection_bounds (editable, &start, &end))
5457     {
5458       if (!priv->visible)
5459         {
5460           gtk_widget_error_bell (GTK_WIDGET (entry));
5461           return;
5462         }
5463
5464       str = _gtk_entry_get_display_text (entry, start, end);
5465       gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
5466                                                         GDK_SELECTION_CLIPBOARD),
5467                               str, -1);
5468       g_free (str);
5469     }
5470 }
5471
5472 static void
5473 gtk_entry_cut_clipboard (GtkEntry *entry)
5474 {
5475   GtkEntryPrivate *priv = entry->priv;
5476   GtkEditable *editable = GTK_EDITABLE (entry);
5477   gint start, end;
5478
5479   if (!priv->visible)
5480     {
5481       gtk_widget_error_bell (GTK_WIDGET (entry));
5482       return;
5483     }
5484
5485   gtk_entry_copy_clipboard (entry);
5486
5487   if (priv->editable)
5488     {
5489       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5490         gtk_editable_delete_text (editable, start, end);
5491     }
5492   else
5493     {
5494       gtk_widget_error_bell (GTK_WIDGET (entry));
5495     }
5496 }
5497
5498 static void
5499 gtk_entry_paste_clipboard (GtkEntry *entry)
5500 {
5501   GtkEntryPrivate *priv = entry->priv;
5502
5503   if (priv->editable)
5504     gtk_entry_paste (entry, GDK_SELECTION_CLIPBOARD);
5505   else
5506     gtk_widget_error_bell (GTK_WIDGET (entry));
5507 }
5508
5509 static void
5510 gtk_entry_delete_cb (GtkEntry *entry)
5511 {
5512   GtkEntryPrivate *priv = entry->priv;
5513   GtkEditable *editable = GTK_EDITABLE (entry);
5514   gint start, end;
5515
5516   if (priv->editable)
5517     {
5518       if (gtk_editable_get_selection_bounds (editable, &start, &end))
5519         gtk_editable_delete_text (editable, start, end);
5520     }
5521 }
5522
5523 static void
5524 gtk_entry_toggle_overwrite (GtkEntry *entry)
5525 {
5526   GtkEntryPrivate *priv = entry->priv;
5527
5528   priv->overwrite_mode = !priv->overwrite_mode;
5529   gtk_entry_pend_cursor_blink (entry);
5530   gtk_widget_queue_draw (GTK_WIDGET (entry));
5531 }
5532
5533 static void
5534 gtk_entry_select_all (GtkEntry *entry)
5535 {
5536   gtk_entry_select_line (entry);
5537 }
5538
5539 static void
5540 gtk_entry_real_activate (GtkEntry *entry)
5541 {
5542   GtkEntryPrivate *priv = entry->priv;
5543   GtkWindow *window;
5544   GtkWidget *default_widget, *focus_widget;
5545   GtkWidget *toplevel;
5546   GtkWidget *widget;
5547
5548   widget = GTK_WIDGET (entry);
5549
5550   if (priv->activates_default)
5551     {
5552       toplevel = gtk_widget_get_toplevel (widget);
5553       if (GTK_IS_WINDOW (toplevel))
5554         {
5555           window = GTK_WINDOW (toplevel);
5556
5557           if (window)
5558             {
5559               default_widget = gtk_window_get_default_widget (window);
5560               focus_widget = gtk_window_get_focus (window);
5561               if (widget != default_widget &&
5562                   !(widget == focus_widget && (!default_widget || !gtk_widget_get_sensitive (default_widget))))
5563                 gtk_window_activate_default (window);
5564             }
5565         }
5566     }
5567 }
5568
5569 static void
5570 keymap_direction_changed (GdkKeymap *keymap,
5571                           GtkEntry  *entry)
5572 {
5573   gtk_entry_recompute (entry);
5574 }
5575
5576 /* IM Context Callbacks
5577  */
5578
5579 static void
5580 gtk_entry_commit_cb (GtkIMContext *context,
5581                      const gchar  *str,
5582                      GtkEntry     *entry)
5583 {
5584   GtkEntryPrivate *priv = entry->priv;
5585
5586   if (priv->editable)
5587     gtk_entry_enter_text (entry, str);
5588 }
5589
5590 static void 
5591 gtk_entry_preedit_changed_cb (GtkIMContext *context,
5592                               GtkEntry     *entry)
5593 {
5594   GtkEntryPrivate *priv = entry->priv;
5595
5596   if (priv->editable)
5597     {
5598       gchar *preedit_string;
5599       gint cursor_pos;
5600
5601       gtk_im_context_get_preedit_string (priv->im_context,
5602                                          &preedit_string, NULL,
5603                                          &cursor_pos);
5604       g_signal_emit (entry, signals[PREEDIT_CHANGED], 0, preedit_string);
5605       priv->preedit_length = strlen (preedit_string);
5606       cursor_pos = CLAMP (cursor_pos, 0, g_utf8_strlen (preedit_string, -1));
5607       priv->preedit_cursor = cursor_pos;
5608       g_free (preedit_string);
5609     
5610       gtk_entry_recompute (entry);
5611     }
5612 }
5613
5614 static gboolean
5615 gtk_entry_retrieve_surrounding_cb (GtkIMContext *context,
5616                                    GtkEntry     *entry)
5617 {
5618   GtkEntryPrivate *priv = entry->priv;
5619   gchar *text;
5620
5621   /* XXXX ??? does this even make sense when text is not visible? Should we return FALSE? */
5622   text = _gtk_entry_get_display_text (entry, 0, -1);
5623   gtk_im_context_set_surrounding (context, text, strlen (text), /* Length in bytes */
5624                                   g_utf8_offset_to_pointer (text, priv->current_pos) - text);
5625   g_free (text);
5626
5627   return TRUE;
5628 }
5629
5630 static gboolean
5631 gtk_entry_delete_surrounding_cb (GtkIMContext *slave,
5632                                  gint          offset,
5633                                  gint          n_chars,
5634                                  GtkEntry     *entry)
5635 {
5636   GtkEntryPrivate *priv = entry->priv;
5637
5638   if (priv->editable)
5639     gtk_editable_delete_text (GTK_EDITABLE (entry),
5640                               priv->current_pos + offset,
5641                               priv->current_pos + offset + n_chars);
5642
5643   return TRUE;
5644 }
5645
5646 /* Internal functions
5647  */
5648
5649 /* Used for im_commit_cb and inserting Unicode chars */
5650 static void
5651 gtk_entry_enter_text (GtkEntry       *entry,
5652                       const gchar    *str)
5653 {
5654   GtkEntryPrivate *priv = entry->priv;
5655   GtkEditable *editable = GTK_EDITABLE (entry);
5656   gint tmp_pos;
5657   gboolean old_need_im_reset;
5658
5659   old_need_im_reset = priv->need_im_reset;
5660   priv->need_im_reset = FALSE;
5661
5662   if (gtk_editable_get_selection_bounds (editable, NULL, NULL))
5663     gtk_editable_delete_selection (editable);
5664   else
5665     {
5666       if (priv->overwrite_mode)
5667         gtk_entry_delete_from_cursor (entry, GTK_DELETE_CHARS, 1);
5668     }
5669
5670   tmp_pos = priv->current_pos;
5671   gtk_editable_insert_text (editable, str, strlen (str), &tmp_pos);
5672   gtk_editable_set_position (editable, tmp_pos);
5673
5674   priv->need_im_reset = old_need_im_reset;
5675 }
5676
5677 /* All changes to priv->current_pos and priv->selection_bound
5678  * should go through this function.
5679  */
5680 static void
5681 gtk_entry_set_positions (GtkEntry *entry,
5682                          gint      current_pos,
5683                          gint      selection_bound)
5684 {
5685   GtkEntryPrivate *priv = entry->priv;
5686   gboolean changed = FALSE;
5687
5688   g_object_freeze_notify (G_OBJECT (entry));
5689   
5690   if (current_pos != -1 &&
5691       priv->current_pos != current_pos)
5692     {
5693       priv->current_pos = current_pos;
5694       changed = TRUE;
5695
5696       g_object_notify (G_OBJECT (entry), "cursor-position");
5697     }
5698
5699   if (selection_bound != -1 &&
5700       priv->selection_bound != selection_bound)
5701     {
5702       priv->selection_bound = selection_bound;
5703       changed = TRUE;
5704       
5705       g_object_notify (G_OBJECT (entry), "selection-bound");
5706     }
5707
5708   g_object_thaw_notify (G_OBJECT (entry));
5709
5710   if (changed) 
5711     {
5712       gtk_entry_move_adjustments (entry);
5713       gtk_entry_recompute (entry);
5714     }
5715 }
5716
5717 static void
5718 gtk_entry_reset_layout (GtkEntry *entry)
5719 {
5720   GtkEntryPrivate *priv = entry->priv;
5721
5722   if (priv->cached_layout)
5723     {
5724       g_object_unref (priv->cached_layout);
5725       priv->cached_layout = NULL;
5726     }
5727 }
5728
5729 static void
5730 update_im_cursor_location (GtkEntry *entry)
5731 {
5732   GtkEntryPrivate *priv = entry->priv;
5733   GdkRectangle area;
5734   gint strong_x;
5735   gint strong_xoffset;
5736   gint area_width, area_height;
5737
5738   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
5739   gtk_entry_get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5740
5741   strong_xoffset = strong_x - priv->scroll_offset;
5742   if (strong_xoffset < 0)
5743     {
5744       strong_xoffset = 0;
5745     }
5746   else if (strong_xoffset > area_width)
5747     {
5748       strong_xoffset = area_width;
5749     }
5750   area.x = strong_xoffset;
5751   area.y = 0;
5752   area.width = 0;
5753   area.height = area_height;
5754
5755   gtk_im_context_set_cursor_location (priv->im_context, &area);
5756 }
5757
5758 static gboolean
5759 recompute_idle_func (gpointer data)
5760 {
5761   GtkEntry *entry = GTK_ENTRY (data);
5762   GtkEntryPrivate *priv = entry->priv;
5763
5764   priv->recompute_idle = 0;
5765
5766   if (gtk_widget_has_screen (GTK_WIDGET (entry)))
5767     {
5768       GtkTextHandleMode handle_mode;
5769
5770       gtk_entry_adjust_scroll (entry);
5771       gtk_widget_queue_draw (GTK_WIDGET (entry));
5772
5773       update_im_cursor_location (entry);
5774
5775       handle_mode = _gtk_text_handle_get_mode (priv->text_handle);
5776
5777       if (handle_mode != GTK_TEXT_HANDLE_MODE_NONE)
5778         gtk_entry_update_handles (entry, handle_mode);
5779     }
5780
5781   return FALSE;
5782 }
5783
5784 static void
5785 gtk_entry_recompute (GtkEntry *entry)
5786 {
5787   GtkEntryPrivate *priv = entry->priv;
5788
5789   gtk_entry_reset_layout (entry);
5790   gtk_entry_check_cursor_blink (entry);
5791
5792   if (!priv->recompute_idle)
5793     {
5794       priv->recompute_idle = gdk_threads_add_idle_full (G_PRIORITY_HIGH_IDLE + 15, /* between resize and redraw */
5795                                                recompute_idle_func, entry, NULL); 
5796     }
5797 }
5798
5799 static void
5800 gtk_entry_get_placeholder_text_color (GtkEntry   *entry,
5801                                       PangoColor *color)
5802 {
5803   GtkWidget *widget = GTK_WIDGET (entry);
5804   GtkStyleContext *context;
5805   GdkRGBA fg = { 0.5, 0.5, 0.5 };
5806
5807   context = gtk_widget_get_style_context (widget);
5808   gtk_style_context_lookup_color (context, "placeholder_text_color", &fg);
5809
5810   color->red = CLAMP (fg.red * 65535. + 0.5, 0, 65535);
5811   color->green = CLAMP (fg.green * 65535. + 0.5, 0, 65535);
5812   color->blue = CLAMP (fg.blue * 65535. + 0.5, 0, 65535);
5813 }
5814
5815 static inline gboolean
5816 show_placeholder_text (GtkEntry *entry)
5817 {
5818   GtkEntryPrivate *priv = entry->priv;
5819
5820   if (!gtk_widget_has_focus (GTK_WIDGET (entry)) &&
5821       gtk_entry_buffer_get_bytes (get_buffer (entry)) == 0 &&
5822       priv->placeholder_text != NULL)
5823     return TRUE;
5824
5825   return FALSE;
5826 }
5827
5828 static PangoLayout *
5829 gtk_entry_create_layout (GtkEntry *entry,
5830                          gboolean  include_preedit)
5831 {
5832   GtkEntryPrivate *priv = entry->priv;
5833   GtkWidget *widget = GTK_WIDGET (entry);
5834   PangoLayout *layout;
5835   PangoAttrList *tmp_attrs;
5836   gboolean placeholder_layout;
5837
5838   gchar *preedit_string = NULL;
5839   gint preedit_length = 0;
5840   PangoAttrList *preedit_attrs = NULL;
5841
5842   gchar *display;
5843   guint n_bytes;
5844
5845   layout = gtk_widget_create_pango_layout (widget, NULL);
5846   pango_layout_set_single_paragraph_mode (layout, TRUE);
5847
5848   tmp_attrs = priv->attrs ? pango_attr_list_ref (priv->attrs)
5849                           : pango_attr_list_new ();
5850
5851   placeholder_layout = show_placeholder_text (entry);
5852   display = placeholder_layout ? g_strdup (priv->placeholder_text) : _gtk_entry_get_display_text (entry, 0, -1);
5853   n_bytes = strlen (display);
5854
5855   if (!placeholder_layout && include_preedit)
5856     {
5857       gtk_im_context_get_preedit_string (priv->im_context,
5858                                          &preedit_string, &preedit_attrs, NULL);
5859       preedit_length = priv->preedit_length;
5860     }
5861   else if (placeholder_layout)
5862     {
5863       PangoColor color;
5864       PangoAttribute *attr;
5865
5866       gtk_entry_get_placeholder_text_color (entry, &color);
5867       attr = pango_attr_foreground_new (color.red, color.green, color.blue);
5868       attr->start_index = 0;
5869       attr->end_index = G_MAXINT;
5870       pango_attr_list_insert (tmp_attrs, attr);
5871     }
5872
5873   if (preedit_length)
5874     {
5875       GString *tmp_string = g_string_new (display);
5876       gint cursor_index = g_utf8_offset_to_pointer (display, priv->current_pos) - display;
5877
5878       g_string_insert (tmp_string, cursor_index, preedit_string);
5879       pango_layout_set_text (layout, tmp_string->str, tmp_string->len);
5880       pango_attr_list_splice (tmp_attrs, preedit_attrs,
5881                               cursor_index, preedit_length);
5882       g_string_free (tmp_string, TRUE);
5883     }
5884   else
5885     {
5886       PangoDirection pango_dir;
5887       
5888       if (gtk_entry_get_display_mode (entry) == DISPLAY_NORMAL)
5889         pango_dir = pango_find_base_dir (display, n_bytes);
5890       else
5891         pango_dir = PANGO_DIRECTION_NEUTRAL;
5892
5893       if (pango_dir == PANGO_DIRECTION_NEUTRAL)
5894         {
5895           if (gtk_widget_has_focus (widget))
5896             {
5897               GdkDisplay *display = gtk_widget_get_display (widget);
5898               GdkKeymap *keymap = gdk_keymap_get_for_display (display);
5899               if (gdk_keymap_get_direction (keymap) == PANGO_DIRECTION_RTL)
5900                 pango_dir = PANGO_DIRECTION_RTL;
5901               else
5902                 pango_dir = PANGO_DIRECTION_LTR;
5903             }
5904           else
5905             {
5906               if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
5907                 pango_dir = PANGO_DIRECTION_RTL;
5908               else
5909                 pango_dir = PANGO_DIRECTION_LTR;
5910             }
5911         }
5912
5913       pango_context_set_base_dir (gtk_widget_get_pango_context (widget),
5914                                   pango_dir);
5915
5916       priv->resolved_dir = pango_dir;
5917
5918       pango_layout_set_text (layout, display, n_bytes);
5919     }
5920       
5921   pango_layout_set_attributes (layout, tmp_attrs);
5922
5923   g_free (preedit_string);
5924   g_free (display);
5925
5926   if (preedit_attrs)
5927     pango_attr_list_unref (preedit_attrs);
5928       
5929   pango_attr_list_unref (tmp_attrs);
5930
5931   return layout;
5932 }
5933
5934 static PangoLayout *
5935 gtk_entry_ensure_layout (GtkEntry *entry,
5936                          gboolean  include_preedit)
5937 {
5938   GtkEntryPrivate *priv = entry->priv;
5939
5940   if (priv->preedit_length > 0 &&
5941       !include_preedit != !priv->cache_includes_preedit)
5942     gtk_entry_reset_layout (entry);
5943
5944   if (!priv->cached_layout)
5945     {
5946       priv->cached_layout = gtk_entry_create_layout (entry, include_preedit);
5947       priv->cache_includes_preedit = include_preedit;
5948     }
5949
5950   return priv->cached_layout;
5951 }
5952
5953 static void
5954 get_layout_position (GtkEntry *entry,
5955                      gint     *x,
5956                      gint     *y)
5957 {
5958   GtkEntryPrivate *priv = entry->priv;
5959   PangoLayout *layout;
5960   PangoRectangle logical_rect;
5961   gint area_width, area_height;
5962   gint y_pos;
5963   PangoLayoutLine *line;
5964   
5965   layout = gtk_entry_ensure_layout (entry, TRUE);
5966
5967   get_text_area_size (entry, NULL, NULL, &area_width, &area_height);
5968   area_height = PANGO_SCALE * area_height;
5969
5970   line = pango_layout_get_lines_readonly (layout)->data;
5971   pango_layout_line_get_extents (line, NULL, &logical_rect);
5972   
5973   /* Align primarily for locale's ascent/descent */
5974   y_pos = ((area_height - priv->ascent - priv->descent) / 2 +
5975            priv->ascent + logical_rect.y);
5976
5977   /* Now see if we need to adjust to fit in actual drawn string */
5978   if (logical_rect.height > area_height)
5979     y_pos = (area_height - logical_rect.height) / 2;
5980   else if (y_pos < 0)
5981     y_pos = 0;
5982   else if (y_pos + logical_rect.height > area_height)
5983     y_pos = area_height - logical_rect.height;
5984   
5985   y_pos = y_pos / PANGO_SCALE;
5986
5987   if (x)
5988     *x = - priv->scroll_offset;
5989
5990   if (y)
5991     *y = y_pos;
5992 }
5993
5994 static void
5995 draw_text_with_color (GtkEntry *entry,
5996                       cairo_t  *cr,
5997                       GdkRGBA  *default_color)
5998 {
5999   GtkEntryPrivate *priv = entry->priv;
6000   PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
6001   GtkWidget *widget;
6002   gint x, y;
6003   gint start_pos, end_pos;
6004
6005   widget = GTK_WIDGET (entry);
6006
6007   cairo_save (cr);
6008
6009   get_layout_position (entry, &x, &y);
6010
6011   cairo_move_to (cr, x, y);
6012   gdk_cairo_set_source_rgba (cr, default_color);
6013   pango_cairo_show_layout (cr, layout);
6014
6015   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start_pos, &end_pos))
6016     {
6017       gint *ranges;
6018       gint n_ranges, i;
6019       PangoRectangle logical_rect;
6020       GdkRGBA selection_color, text_color;
6021       GtkStyleContext *context;
6022       GtkStateFlags state;
6023
6024       context = gtk_widget_get_style_context (widget);
6025       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
6026       gtk_entry_get_pixel_ranges (entry, &ranges, &n_ranges);
6027
6028       state = gtk_widget_get_state_flags (widget);
6029       state |= GTK_STATE_FLAG_SELECTED;
6030
6031       gtk_style_context_get_background_color (context, state, &selection_color);
6032       gtk_style_context_get_color (context, state, &text_color);
6033
6034       for (i = 0; i < n_ranges; ++i)
6035         cairo_rectangle (cr,
6036                          - priv->scroll_offset + ranges[2 * i],
6037                          y,
6038                          ranges[2 * i + 1],
6039                          logical_rect.height);
6040
6041       cairo_clip (cr);
6042           
6043       gdk_cairo_set_source_rgba (cr, &selection_color);
6044       cairo_paint (cr);
6045
6046       cairo_move_to (cr, x, y);
6047       gdk_cairo_set_source_rgba (cr, &text_color);
6048       pango_cairo_show_layout (cr, layout);
6049   
6050       g_free (ranges);
6051     }
6052   cairo_restore (cr);
6053 }
6054
6055 static void
6056 gtk_entry_draw_text (GtkEntry *entry,
6057                      cairo_t  *cr)
6058 {
6059   GtkEntryPrivate *priv = entry->priv;
6060   GtkWidget *widget = GTK_WIDGET (entry);
6061   GtkStateFlags state = 0;
6062   GdkRGBA text_color, bar_text_color;
6063   GtkStyleContext *context;
6064   gint width, height;
6065   gint progress_x, progress_y, progress_width, progress_height;
6066   gint clip_width, clip_height;
6067
6068   /* Nothing to display at all */
6069   if (gtk_entry_get_display_mode (entry) == DISPLAY_BLANK)
6070     return;
6071
6072   state = gtk_widget_get_state_flags (widget);
6073   context = gtk_widget_get_style_context (widget);
6074
6075   gtk_style_context_get_color (context, state, &text_color);
6076
6077   /* Get foreground color for progressbars */
6078   gtk_entry_prepare_context_for_progress (entry, context);
6079   gtk_style_context_get_color (context, state, &bar_text_color);
6080   gtk_style_context_restore (context);
6081
6082   get_progress_area (widget,
6083                      &progress_x, &progress_y,
6084                      &progress_width, &progress_height);
6085
6086   cairo_save (cr);
6087
6088   clip_width = gdk_window_get_width (priv->text_area);
6089   clip_height = gdk_window_get_height (priv->text_area);
6090   cairo_rectangle (cr, 0, 0, clip_width, clip_height);
6091   cairo_clip (cr);
6092
6093   /* If the color is the same, or the progress area has a zero
6094    * size, then we only need to draw once. */
6095   if (gdk_rgba_equal (&text_color, &bar_text_color) ||
6096       ((progress_width == 0) || (progress_height == 0)))
6097     {
6098       draw_text_with_color (entry, cr, &text_color);
6099     }
6100   else
6101     {
6102       int frame_x, frame_y, area_x, area_y;
6103
6104       width = gdk_window_get_width (priv->text_area);
6105       height = gdk_window_get_height (priv->text_area);
6106
6107       cairo_save (cr);
6108
6109       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_EVEN_ODD);
6110       cairo_rectangle (cr, 0, 0, width, height);
6111
6112       /* progres area is frame-relative, we need it text-area window
6113        * relative */
6114       get_frame_size (entry, TRUE, &frame_x, &frame_y, NULL, NULL);
6115       gdk_window_get_position (priv->text_area, &area_x, &area_y);
6116       progress_x += frame_x - area_x;
6117       progress_y += frame_y - area_y;
6118
6119       cairo_rectangle (cr, progress_x, progress_y,
6120                        progress_width, progress_height);
6121       cairo_clip (cr);
6122       cairo_set_fill_rule (cr, CAIRO_FILL_RULE_WINDING);
6123   
6124       draw_text_with_color (entry, cr, &text_color);
6125       cairo_restore (cr);
6126
6127       cairo_save (cr);
6128
6129       cairo_rectangle (cr, progress_x, progress_y,
6130                        progress_width, progress_height);
6131       cairo_clip (cr);
6132
6133       draw_text_with_color (entry, cr, &bar_text_color);
6134
6135       cairo_restore (cr);
6136     }
6137
6138   cairo_restore (cr);
6139 }
6140
6141 static void
6142 gtk_entry_draw_cursor (GtkEntry  *entry,
6143                        cairo_t   *cr,
6144                        CursorType type)
6145 {
6146   GtkEntryPrivate *priv = entry->priv;
6147   GtkWidget *widget = GTK_WIDGET (entry);
6148   GtkStyleContext *context;
6149   PangoRectangle cursor_rect;
6150   gint cursor_index;
6151   gboolean block;
6152   gboolean block_at_line_end;
6153   PangoLayout *layout;
6154   const char *text;
6155   gint x, y;
6156
6157   context = gtk_widget_get_style_context (widget);
6158
6159   layout = gtk_entry_ensure_layout (entry, TRUE);
6160   text = pango_layout_get_text (layout);
6161   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
6162   get_layout_position (entry, &x, &y);
6163
6164   if (!priv->overwrite_mode)
6165     block = FALSE;
6166   else
6167     block = _gtk_text_util_get_block_cursor_location (layout,
6168                                                       cursor_index, &cursor_rect, &block_at_line_end);
6169
6170   if (!block)
6171     {
6172       gtk_render_insertion_cursor (context, cr,
6173                                    x, y,
6174                                    layout, cursor_index, priv->resolved_dir);
6175     }
6176   else /* overwrite_mode */
6177     {
6178       GdkRGBA cursor_color;
6179       GdkRectangle rect;
6180
6181       cairo_save (cr);
6182
6183       rect.x = PANGO_PIXELS (cursor_rect.x) + x;
6184       rect.y = PANGO_PIXELS (cursor_rect.y) + y;
6185       rect.width = PANGO_PIXELS (cursor_rect.width);
6186       rect.height = PANGO_PIXELS (cursor_rect.height);
6187
6188       _gtk_style_context_get_cursor_color (context, &cursor_color, NULL);
6189       gdk_cairo_set_source_rgba (cr, &cursor_color);
6190       gdk_cairo_rectangle (cr, &rect);
6191       cairo_fill (cr);
6192
6193       if (!block_at_line_end)
6194         {
6195           GtkStateFlags state;
6196           GdkRGBA color;
6197
6198           state = gtk_widget_get_state_flags (widget);
6199           gtk_style_context_get_background_color (context, state, &color);
6200
6201           gdk_cairo_rectangle (cr, &rect);
6202           cairo_clip (cr);
6203           cairo_move_to (cr, x, y);
6204           gdk_cairo_set_source_rgba (cr, &color);
6205           pango_cairo_show_layout (cr, layout);
6206         }
6207
6208       cairo_restore (cr);
6209     }
6210 }
6211
6212 static void
6213 gtk_entry_handle_dragged (GtkTextHandle         *handle,
6214                           GtkTextHandlePosition  pos,
6215                           gint                   x,
6216                           gint                   y,
6217                           GtkEntry              *entry)
6218 {
6219   gint cursor_pos, selection_bound_pos, tmp_pos;
6220   GtkEntryPrivate *priv = entry->priv;
6221   GtkTextHandleMode mode;
6222   gint *min, *max;
6223
6224   cursor_pos = priv->current_pos;
6225   selection_bound_pos = priv->selection_bound;
6226   mode = _gtk_text_handle_get_mode (handle);
6227   tmp_pos = gtk_entry_find_position (entry, x + priv->scroll_offset);
6228
6229   if (mode == GTK_TEXT_HANDLE_MODE_CURSOR ||
6230       cursor_pos >= selection_bound_pos)
6231     {
6232       max = &cursor_pos;
6233       min = &selection_bound_pos;
6234     }
6235   else
6236     {
6237       max = &selection_bound_pos;
6238       min = &cursor_pos;
6239     }
6240
6241   if (pos == GTK_TEXT_HANDLE_POSITION_SELECTION_END)
6242     {
6243       if (mode == GTK_TEXT_HANDLE_MODE_SELECTION)
6244         {
6245           gint min_pos;
6246
6247           min_pos = MAX (*min + 1, 0);
6248           tmp_pos = MAX (tmp_pos, min_pos);
6249         }
6250
6251       *max = tmp_pos;
6252     }
6253   else
6254     {
6255       if (mode == GTK_TEXT_HANDLE_MODE_SELECTION)
6256         {
6257           gint max_pos;
6258
6259           max_pos = *max - 1;
6260           *min = MIN (tmp_pos, max_pos);
6261         }
6262     }
6263
6264   if (cursor_pos != priv->current_pos ||
6265       selection_bound_pos != priv->selection_bound)
6266     {
6267       if (mode == GTK_TEXT_HANDLE_MODE_CURSOR)
6268         gtk_entry_set_positions (entry, cursor_pos, cursor_pos);
6269       else
6270         gtk_entry_set_positions (entry, cursor_pos, selection_bound_pos);
6271
6272       gtk_entry_update_handles (entry, mode);
6273     }
6274 }
6275
6276 /**
6277  * gtk_entry_reset_im_context:
6278  * @entry: a #GtkEntry
6279  *
6280  * Reset the input method context of the entry if needed.
6281  *
6282  * This can be necessary in the case where modifying the buffer
6283  * would confuse on-going input method behavior.
6284  *
6285  * Since: 2.22
6286  */
6287 void
6288 gtk_entry_reset_im_context (GtkEntry *entry)
6289 {
6290   GtkEntryPrivate *priv = entry->priv;
6291
6292   g_return_if_fail (GTK_IS_ENTRY (entry));
6293
6294   if (priv->need_im_reset)
6295     {
6296       priv->need_im_reset = FALSE;
6297       gtk_im_context_reset (priv->im_context);
6298     }
6299 }
6300
6301 /**
6302  * gtk_entry_im_context_filter_keypress:
6303  * @entry: a #GtkEntry
6304  * @event: (type Gdk.EventKey): the key event
6305  *
6306  * Allow the #GtkEntry input method to internally handle key press
6307  * and release events. If this function returns %TRUE, then no further
6308  * processing should be done for this key event. See
6309  * gtk_im_context_filter_keypress().
6310  *
6311  * Note that you are expected to call this function from your handler
6312  * when overriding key event handling. This is needed in the case when
6313  * you need to insert your own key handling between the input method
6314  * and the default key event handling of the #GtkEntry.
6315  * See gtk_text_view_reset_im_context() for an example of use.
6316  *
6317  * Return value: %TRUE if the input method handled the key event.
6318  *
6319  * Since: 2.22
6320  */
6321 gboolean
6322 gtk_entry_im_context_filter_keypress (GtkEntry    *entry,
6323                                       GdkEventKey *event)
6324 {
6325   GtkEntryPrivate *priv;
6326
6327   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
6328
6329   priv = entry->priv;
6330
6331   return gtk_im_context_filter_keypress (priv->im_context, event);
6332 }
6333
6334 GtkIMContext*
6335 _gtk_entry_get_im_context (GtkEntry *entry)
6336 {
6337   return entry->priv->im_context;
6338 }
6339
6340 static gint
6341 gtk_entry_find_position (GtkEntry *entry,
6342                          gint      x)
6343 {
6344   GtkEntryPrivate *priv = entry->priv;
6345   PangoLayout *layout;
6346   PangoLayoutLine *line;
6347   gint index;
6348   gint pos;
6349   gint trailing;
6350   const gchar *text;
6351   gint cursor_index;
6352   
6353   layout = gtk_entry_ensure_layout (entry, TRUE);
6354   text = pango_layout_get_text (layout);
6355   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
6356
6357   line = pango_layout_get_lines_readonly (layout)->data;
6358   pango_layout_line_x_to_index (line, x * PANGO_SCALE, &index, &trailing);
6359
6360   if (index >= cursor_index && priv->preedit_length)
6361     {
6362       if (index >= cursor_index + priv->preedit_length)
6363         index -= priv->preedit_length;
6364       else
6365         {
6366           index = cursor_index;
6367           trailing = 0;
6368         }
6369     }
6370
6371   pos = g_utf8_pointer_to_offset (text, text + index);
6372   pos += trailing;
6373
6374   return pos;
6375 }
6376
6377 static void
6378 gtk_entry_get_cursor_locations (GtkEntry   *entry,
6379                                 CursorType  type,
6380                                 gint       *strong_x,
6381                                 gint       *weak_x)
6382 {
6383   GtkEntryPrivate *priv = entry->priv;
6384   DisplayMode mode = gtk_entry_get_display_mode (entry);
6385
6386   /* Nothing to display at all, so no cursor is relevant */
6387   if (mode == DISPLAY_BLANK)
6388     {
6389       if (strong_x)
6390         *strong_x = 0;
6391       
6392       if (weak_x)
6393         *weak_x = 0;
6394     }
6395   else
6396     {
6397       PangoLayout *layout = gtk_entry_ensure_layout (entry, TRUE);
6398       const gchar *text = pango_layout_get_text (layout);
6399       PangoRectangle strong_pos, weak_pos;
6400       gint index;
6401   
6402       if (type == CURSOR_STANDARD)
6403         {
6404           index = g_utf8_offset_to_pointer (text, priv->current_pos + priv->preedit_cursor) - text;
6405         }
6406       else /* type == CURSOR_DND */
6407         {
6408           index = g_utf8_offset_to_pointer (text, priv->dnd_position) - text;
6409
6410           if (priv->dnd_position > priv->current_pos)
6411             {
6412               if (mode == DISPLAY_NORMAL)
6413                 index += priv->preedit_length;
6414               else
6415                 {
6416                   gint preedit_len_chars = g_utf8_strlen (text, -1) - gtk_entry_buffer_get_length (get_buffer (entry));
6417                   index += preedit_len_chars * g_unichar_to_utf8 (priv->invisible_char, NULL);
6418                 }
6419             }
6420         }
6421       
6422       pango_layout_get_cursor_pos (layout, index, &strong_pos, &weak_pos);
6423       
6424       if (strong_x)
6425         *strong_x = strong_pos.x / PANGO_SCALE;
6426       
6427       if (weak_x)
6428         *weak_x = weak_pos.x / PANGO_SCALE;
6429     }
6430 }
6431
6432 static gboolean
6433 gtk_entry_get_is_selection_handle_dragged (GtkEntry *entry)
6434 {
6435   GtkEntryPrivate *priv = entry->priv;
6436   GtkTextHandlePosition pos;
6437
6438   if (_gtk_text_handle_get_mode (priv->text_handle) != GTK_TEXT_HANDLE_MODE_SELECTION)
6439     return FALSE;
6440
6441   if (priv->current_pos >= priv->selection_bound)
6442     pos = GTK_TEXT_HANDLE_POSITION_SELECTION_START;
6443   else
6444     pos = GTK_TEXT_HANDLE_POSITION_SELECTION_END;
6445
6446   return _gtk_text_handle_get_is_dragged (priv->text_handle, pos);
6447 }
6448
6449 static void
6450 gtk_entry_adjust_scroll (GtkEntry *entry)
6451 {
6452   GtkEntryPrivate *priv = entry->priv;
6453   gint min_offset, max_offset;
6454   gint text_area_width, text_width;
6455   gint strong_x, weak_x;
6456   gint strong_xoffset, weak_xoffset;
6457   gfloat xalign;
6458   PangoLayout *layout;
6459   PangoLayoutLine *line;
6460   PangoRectangle logical_rect;
6461   GtkTextHandleMode handle_mode;
6462
6463   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6464     return;
6465
6466   text_area_width = gdk_window_get_width (priv->text_area);
6467
6468   if (text_area_width < 0)
6469     text_area_width = 0;
6470
6471   layout = gtk_entry_ensure_layout (entry, TRUE);
6472   line = pango_layout_get_lines_readonly (layout)->data;
6473
6474   pango_layout_line_get_extents (line, NULL, &logical_rect);
6475
6476   /* Display as much text as we can */
6477
6478   if (priv->resolved_dir == PANGO_DIRECTION_LTR)
6479       xalign = priv->xalign;
6480   else
6481       xalign = 1.0 - priv->xalign;
6482
6483   text_width = PANGO_PIXELS(logical_rect.width);
6484
6485   if (text_width > text_area_width)
6486     {
6487       min_offset = 0;
6488       max_offset = text_width - text_area_width;
6489     }
6490   else
6491     {
6492       min_offset = (text_width - text_area_width) * xalign;
6493       max_offset = min_offset;
6494     }
6495
6496   priv->scroll_offset = CLAMP (priv->scroll_offset, min_offset, max_offset);
6497
6498   if (gtk_entry_get_is_selection_handle_dragged (entry))
6499     {
6500       /* The text handle corresponding to the selection bound is
6501        * being dragged, ensure it stays onscreen even if we scroll
6502        * cursors away, this is so both handles can cause content
6503        * to scroll.
6504        */
6505       strong_x = weak_x = gtk_entry_get_selection_bound_location (entry);
6506     }
6507   else
6508     {
6509       /* And make sure cursors are on screen. Note that the cursor is
6510        * actually drawn one pixel into the INNER_BORDER space on
6511        * the right, when the scroll is at the utmost right. This
6512        * looks better to to me than confining the cursor inside the
6513        * border entirely, though it means that the cursor gets one
6514        * pixel closer to the edge of the widget on the right than
6515        * on the left. This might need changing if one changed
6516        * INNER_BORDER from 2 to 1, as one would do on a
6517        * small-screen-real-estate display.
6518        *
6519        * We always make sure that the strong cursor is on screen, and
6520        * put the weak cursor on screen if possible.
6521        */
6522       gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, &weak_x);
6523     }
6524
6525   strong_xoffset = strong_x - priv->scroll_offset;
6526
6527   if (strong_xoffset < 0)
6528     {
6529       priv->scroll_offset += strong_xoffset;
6530       strong_xoffset = 0;
6531     }
6532   else if (strong_xoffset > text_area_width)
6533     {
6534       priv->scroll_offset += strong_xoffset - text_area_width;
6535       strong_xoffset = text_area_width;
6536     }
6537
6538   weak_xoffset = weak_x - priv->scroll_offset;
6539
6540   if (weak_xoffset < 0 && strong_xoffset - weak_xoffset <= text_area_width)
6541     {
6542       priv->scroll_offset += weak_xoffset;
6543     }
6544   else if (weak_xoffset > text_area_width &&
6545            strong_xoffset - (weak_xoffset - text_area_width) >= 0)
6546     {
6547       priv->scroll_offset += weak_xoffset - text_area_width;
6548     }
6549
6550   g_object_notify (G_OBJECT (entry), "scroll-offset");
6551
6552   handle_mode = _gtk_text_handle_get_mode (priv->text_handle);
6553
6554   if (handle_mode != GTK_TEXT_HANDLE_MODE_NONE)
6555     gtk_entry_update_handles (entry, handle_mode);
6556 }
6557
6558 static void
6559 gtk_entry_move_adjustments (GtkEntry *entry)
6560 {
6561   GtkWidget *widget = GTK_WIDGET (entry);
6562   GtkAllocation allocation;
6563   GtkAdjustment *adjustment;
6564   PangoContext *context;
6565   PangoFontMetrics *metrics;
6566   GtkBorder borders;
6567   gint x, layout_x;
6568   gint char_width;
6569
6570   adjustment = g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
6571   if (!adjustment)
6572     return;
6573
6574   gtk_widget_get_allocation (widget, &allocation);
6575
6576   /* Cursor/char position, layout offset, border width, and widget allocation */
6577   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &x, NULL);
6578   get_layout_position (entry, &layout_x, NULL);
6579   _gtk_entry_get_borders (entry, &borders);
6580   x += allocation.x + layout_x + borders.left;
6581
6582   /* Approximate width of a char, so user can see what is ahead/behind */
6583   context = gtk_widget_get_pango_context (widget);
6584
6585   metrics = pango_context_get_metrics (context,
6586                                        pango_context_get_font_description (context),
6587                                        pango_context_get_language (context));
6588   char_width = pango_font_metrics_get_approximate_char_width (metrics) / PANGO_SCALE;
6589
6590   /* Scroll it */
6591   gtk_adjustment_clamp_page (adjustment, 
6592                              x - (char_width + 1),   /* one char + one pixel before */
6593                              x + (char_width + 2));  /* one char + cursor + one pixel after */
6594 }
6595
6596 static gint
6597 gtk_entry_move_visually (GtkEntry *entry,
6598                          gint      start,
6599                          gint      count)
6600 {
6601   GtkEntryPrivate *priv = entry->priv;
6602   gint index;
6603   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6604   const gchar *text;
6605
6606   text = pango_layout_get_text (layout);
6607   
6608   index = g_utf8_offset_to_pointer (text, start) - text;
6609
6610   while (count != 0)
6611     {
6612       int new_index, new_trailing;
6613       gboolean split_cursor;
6614       gboolean strong;
6615
6616       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
6617                     "gtk-split-cursor", &split_cursor,
6618                     NULL);
6619
6620       if (split_cursor)
6621         strong = TRUE;
6622       else
6623         {
6624           GdkKeymap *keymap = gdk_keymap_get_for_display (gtk_widget_get_display (GTK_WIDGET (entry)));
6625           PangoDirection keymap_direction = gdk_keymap_get_direction (keymap);
6626
6627           strong = keymap_direction == priv->resolved_dir;
6628         }
6629       
6630       if (count > 0)
6631         {
6632           pango_layout_move_cursor_visually (layout, strong, index, 0, 1, &new_index, &new_trailing);
6633           count--;
6634         }
6635       else
6636         {
6637           pango_layout_move_cursor_visually (layout, strong, index, 0, -1, &new_index, &new_trailing);
6638           count++;
6639         }
6640
6641       if (new_index < 0)
6642         index = 0;
6643       else if (new_index != G_MAXINT)
6644         index = new_index;
6645       
6646       while (new_trailing--)
6647         index = g_utf8_next_char (text + index) - text;
6648     }
6649   
6650   return g_utf8_pointer_to_offset (text, text + index);
6651 }
6652
6653 static gint
6654 gtk_entry_move_logically (GtkEntry *entry,
6655                           gint      start,
6656                           gint      count)
6657 {
6658   gint new_pos = start;
6659   guint length;
6660
6661   length = gtk_entry_buffer_get_length (get_buffer (entry));
6662
6663   /* Prevent any leak of information */
6664   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6665     {
6666       new_pos = CLAMP (start + count, 0, length);
6667     }
6668   else
6669     {
6670       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6671       PangoLogAttr *log_attrs;
6672       gint n_attrs;
6673
6674       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6675
6676       while (count > 0 && new_pos < length)
6677         {
6678           do
6679             new_pos++;
6680           while (new_pos < length && !log_attrs[new_pos].is_cursor_position);
6681           
6682           count--;
6683         }
6684       while (count < 0 && new_pos > 0)
6685         {
6686           do
6687             new_pos--;
6688           while (new_pos > 0 && !log_attrs[new_pos].is_cursor_position);
6689           
6690           count++;
6691         }
6692       
6693       g_free (log_attrs);
6694     }
6695
6696   return new_pos;
6697 }
6698
6699 static gint
6700 gtk_entry_move_forward_word (GtkEntry *entry,
6701                              gint      start,
6702                              gboolean  allow_whitespace)
6703 {
6704   gint new_pos = start;
6705   guint length;
6706
6707   length = gtk_entry_buffer_get_length (get_buffer (entry));
6708
6709   /* Prevent any leak of information */
6710   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6711     {
6712       new_pos = length;
6713     }
6714   else if (new_pos < length)
6715     {
6716       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6717       PangoLogAttr *log_attrs;
6718       gint n_attrs;
6719
6720       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6721       
6722       /* Find the next word boundary */
6723       new_pos++;
6724       while (new_pos < n_attrs - 1 && !(log_attrs[new_pos].is_word_end ||
6725                                         (log_attrs[new_pos].is_word_start && allow_whitespace)))
6726         new_pos++;
6727
6728       g_free (log_attrs);
6729     }
6730
6731   return new_pos;
6732 }
6733
6734
6735 static gint
6736 gtk_entry_move_backward_word (GtkEntry *entry,
6737                               gint      start,
6738                               gboolean  allow_whitespace)
6739 {
6740   gint new_pos = start;
6741
6742   /* Prevent any leak of information */
6743   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL)
6744     {
6745       new_pos = 0;
6746     }
6747   else if (start > 0)
6748     {
6749       PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6750       PangoLogAttr *log_attrs;
6751       gint n_attrs;
6752
6753       pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6754
6755       new_pos = start - 1;
6756
6757       /* Find the previous word boundary */
6758       while (new_pos > 0 && !(log_attrs[new_pos].is_word_start || 
6759                               (log_attrs[new_pos].is_word_end && allow_whitespace)))
6760         new_pos--;
6761
6762       g_free (log_attrs);
6763     }
6764
6765   return new_pos;
6766 }
6767
6768 static void
6769 gtk_entry_delete_whitespace (GtkEntry *entry)
6770 {
6771   GtkEntryPrivate *priv = entry->priv;
6772   PangoLayout *layout = gtk_entry_ensure_layout (entry, FALSE);
6773   PangoLogAttr *log_attrs;
6774   gint n_attrs;
6775   gint start, end;
6776
6777   pango_layout_get_log_attrs (layout, &log_attrs, &n_attrs);
6778
6779   start = end = priv->current_pos;
6780   
6781   while (start > 0 && log_attrs[start-1].is_white)
6782     start--;
6783
6784   while (end < n_attrs && log_attrs[end].is_white)
6785     end++;
6786
6787   g_free (log_attrs);
6788
6789   if (start != end)
6790     gtk_editable_delete_text (GTK_EDITABLE (entry), start, end);
6791 }
6792
6793
6794 static void
6795 gtk_entry_select_word (GtkEntry *entry)
6796 {
6797   GtkEntryPrivate *priv = entry->priv;
6798   gint start_pos = gtk_entry_move_backward_word (entry, priv->current_pos, TRUE);
6799   gint end_pos = gtk_entry_move_forward_word (entry, priv->current_pos, TRUE);
6800
6801   gtk_editable_select_region (GTK_EDITABLE (entry), start_pos, end_pos);
6802 }
6803
6804 static void
6805 gtk_entry_select_line (GtkEntry *entry)
6806 {
6807   gtk_editable_select_region (GTK_EDITABLE (entry), 0, -1);
6808 }
6809
6810 static gint
6811 truncate_multiline (const gchar *text)
6812 {
6813   gint length;
6814
6815   for (length = 0;
6816        text[length] && text[length] != '\n' && text[length] != '\r';
6817        length++);
6818
6819   return length;
6820 }
6821
6822 static void
6823 paste_received (GtkClipboard *clipboard,
6824                 const gchar  *text,
6825                 gpointer      data)
6826 {
6827   GtkEntry *entry = GTK_ENTRY (data);
6828   GtkEditable *editable = GTK_EDITABLE (entry);
6829   GtkEntryPrivate *priv = entry->priv;
6830
6831   if (priv->button == GDK_BUTTON_MIDDLE)
6832     {
6833       gint pos, start, end;
6834       pos = priv->insert_pos;
6835       gtk_editable_get_selection_bounds (editable, &start, &end);
6836       if (!((start <= pos && pos <= end) || (end <= pos && pos <= start)))
6837         gtk_editable_select_region (editable, pos, pos);
6838     }
6839       
6840   if (text)
6841     {
6842       gint pos, start, end;
6843       gint length = -1;
6844       gboolean popup_completion;
6845       GtkEntryCompletion *completion;
6846
6847       completion = gtk_entry_get_completion (entry);
6848
6849       if (priv->truncate_multiline)
6850         length = truncate_multiline (text);
6851
6852       /* only complete if the selection is at the end */
6853       popup_completion = (gtk_entry_buffer_get_length (get_buffer (entry)) ==
6854                           MAX (priv->current_pos, priv->selection_bound));
6855
6856       if (completion)
6857         {
6858           if (gtk_widget_get_mapped (completion->priv->popup_window))
6859             _gtk_entry_completion_popdown (completion);
6860
6861           if (!popup_completion && completion->priv->changed_id > 0)
6862             g_signal_handler_block (entry, completion->priv->changed_id);
6863         }
6864
6865       begin_change (entry);
6866       if (gtk_editable_get_selection_bounds (editable, &start, &end))
6867         gtk_editable_delete_text (editable, start, end);
6868
6869       pos = priv->current_pos;
6870       gtk_editable_insert_text (editable, text, length, &pos);
6871       gtk_editable_set_position (editable, pos);
6872       end_change (entry);
6873
6874       if (completion &&
6875           !popup_completion && completion->priv->changed_id > 0)
6876         g_signal_handler_unblock (entry, completion->priv->changed_id);
6877     }
6878
6879   g_object_unref (entry);
6880 }
6881
6882 static void
6883 gtk_entry_paste (GtkEntry *entry,
6884                  GdkAtom   selection)
6885 {
6886   g_object_ref (entry);
6887   gtk_clipboard_request_text (gtk_widget_get_clipboard (GTK_WIDGET (entry), selection),
6888                               paste_received, entry);
6889 }
6890
6891 static void
6892 primary_get_cb (GtkClipboard     *clipboard,
6893                 GtkSelectionData *selection_data,
6894                 guint             info,
6895                 gpointer          data)
6896 {
6897   GtkEntry *entry = GTK_ENTRY (data);
6898   gint start, end;
6899   
6900   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6901     {
6902       gchar *str = _gtk_entry_get_display_text (entry, start, end);
6903       gtk_selection_data_set_text (selection_data, str, -1);
6904       g_free (str);
6905     }
6906 }
6907
6908 static void
6909 primary_clear_cb (GtkClipboard *clipboard,
6910                   gpointer      data)
6911 {
6912   GtkEntry *entry = GTK_ENTRY (data);
6913   GtkEntryPrivate *priv = entry->priv;
6914
6915   gtk_editable_select_region (GTK_EDITABLE (entry), priv->current_pos, priv->current_pos);
6916 }
6917
6918 static void
6919 gtk_entry_update_primary_selection (GtkEntry *entry)
6920 {
6921   GtkTargetList *list;
6922   GtkTargetEntry *targets;
6923   GtkClipboard *clipboard;
6924   gint start, end;
6925   gint n_targets;
6926
6927   if (!gtk_widget_get_realized (GTK_WIDGET (entry)))
6928     return;
6929
6930   list = gtk_target_list_new (NULL, 0);
6931   gtk_target_list_add_text_targets (list, 0);
6932
6933   targets = gtk_target_table_new_from_list (list, &n_targets);
6934
6935   clipboard = gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_PRIMARY);
6936   
6937   if (gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &start, &end))
6938     {
6939       if (!gtk_clipboard_set_with_owner (clipboard, targets, n_targets,
6940                                          primary_get_cb, primary_clear_cb, G_OBJECT (entry)))
6941         primary_clear_cb (clipboard, entry);
6942     }
6943   else
6944     {
6945       if (gtk_clipboard_get_owner (clipboard) == G_OBJECT (entry))
6946         gtk_clipboard_clear (clipboard);
6947     }
6948
6949   gtk_target_table_free (targets, n_targets);
6950   gtk_target_list_unref (list);
6951 }
6952
6953 static void
6954 gtk_entry_clear (GtkEntry             *entry,
6955                  GtkEntryIconPosition  icon_pos)
6956 {
6957   GtkEntryPrivate *priv = entry->priv;
6958   EntryIconInfo *icon_info = priv->icons[icon_pos];
6959   GtkImageType storage_type;
6960
6961   if (icon_info && _gtk_icon_helper_get_is_empty (icon_info->icon_helper))
6962     return;
6963
6964   g_object_freeze_notify (G_OBJECT (entry));
6965
6966   /* Explicitly check, as the pointer may become invalidated
6967    * during destruction.
6968    */
6969   if (GDK_IS_WINDOW (icon_info->window))
6970     gdk_window_hide (icon_info->window);
6971
6972   storage_type = _gtk_icon_helper_get_storage_type (icon_info->icon_helper);
6973
6974   switch (storage_type)
6975     {
6976     case GTK_IMAGE_PIXBUF:
6977       g_object_notify (G_OBJECT (entry),
6978                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-pixbuf" : "secondary-icon-pixbuf");
6979       break;
6980
6981     case GTK_IMAGE_STOCK:
6982       g_object_notify (G_OBJECT (entry),
6983                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-stock" : "secondary-icon-stock");
6984       break;
6985
6986     case GTK_IMAGE_ICON_NAME:
6987       g_object_notify (G_OBJECT (entry),
6988                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-name" : "secondary-icon-name");
6989       break;
6990
6991     case GTK_IMAGE_GICON:
6992       g_object_notify (G_OBJECT (entry),
6993                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-gicon" : "secondary-icon-gicon");
6994       break;
6995
6996     default:
6997       g_assert_not_reached ();
6998       break;
6999     }
7000
7001   _gtk_icon_helper_clear (icon_info->icon_helper);
7002
7003   g_object_notify (G_OBJECT (entry),
7004                    icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-storage-type" : "secondary-icon-storage-type");
7005
7006   g_object_thaw_notify (G_OBJECT (entry));
7007 }
7008
7009 static GdkPixbuf *
7010 gtk_entry_ensure_pixbuf (GtkEntry             *entry,
7011                          GtkEntryIconPosition  icon_pos)
7012 {
7013   GtkEntryPrivate *priv = entry->priv;
7014   EntryIconInfo *icon_info = priv->icons[icon_pos];
7015   GtkStyleContext *context;
7016   GdkPixbuf *pix;
7017
7018   context = gtk_widget_get_style_context (GTK_WIDGET (entry));
7019   gtk_entry_prepare_context_for_icon (entry, context, icon_pos);
7020
7021   pix = _gtk_icon_helper_ensure_pixbuf (icon_info->icon_helper,
7022                                         context);
7023
7024   gtk_style_context_restore (context);
7025
7026   return pix;
7027 }
7028
7029 /* Public API
7030  */
7031
7032 /**
7033  * gtk_entry_new:
7034  *
7035  * Creates a new entry.
7036  *
7037  * Return value: a new #GtkEntry.
7038  */
7039 GtkWidget*
7040 gtk_entry_new (void)
7041 {
7042   return g_object_new (GTK_TYPE_ENTRY, NULL);
7043 }
7044
7045 /**
7046  * gtk_entry_new_with_buffer:
7047  * @buffer: The buffer to use for the new #GtkEntry.
7048  *
7049  * Creates a new entry with the specified text buffer.
7050  *
7051  * Return value: a new #GtkEntry
7052  *
7053  * Since: 2.18
7054  */
7055 GtkWidget*
7056 gtk_entry_new_with_buffer (GtkEntryBuffer *buffer)
7057 {
7058   g_return_val_if_fail (GTK_IS_ENTRY_BUFFER (buffer), NULL);
7059   return g_object_new (GTK_TYPE_ENTRY, "buffer", buffer, NULL);
7060 }
7061
7062 static GtkEntryBuffer*
7063 get_buffer (GtkEntry *entry)
7064 {
7065   GtkEntryPrivate *priv = entry->priv;
7066
7067   if (priv->buffer == NULL)
7068     {
7069       GtkEntryBuffer *buffer;
7070       buffer = gtk_entry_buffer_new (NULL, 0);
7071       gtk_entry_set_buffer (entry, buffer);
7072       g_object_unref (buffer);
7073     }
7074
7075   return priv->buffer;
7076 }
7077
7078 /**
7079  * gtk_entry_get_buffer:
7080  * @entry: a #GtkEntry
7081  *
7082  * Get the #GtkEntryBuffer object which holds the text for
7083  * this widget.
7084  *
7085  * Since: 2.18
7086  *
7087  * Returns: (transfer none): A #GtkEntryBuffer object.
7088  */
7089 GtkEntryBuffer*
7090 gtk_entry_get_buffer (GtkEntry *entry)
7091 {
7092   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7093
7094   return get_buffer (entry);
7095 }
7096
7097 /**
7098  * gtk_entry_set_buffer:
7099  * @entry: a #GtkEntry
7100  * @buffer: a #GtkEntryBuffer
7101  *
7102  * Set the #GtkEntryBuffer object which holds the text for
7103  * this widget.
7104  *
7105  * Since: 2.18
7106  */
7107 void
7108 gtk_entry_set_buffer (GtkEntry       *entry,
7109                       GtkEntryBuffer *buffer)
7110 {
7111   GtkEntryPrivate *priv;
7112   GObject *obj;
7113
7114   g_return_if_fail (GTK_IS_ENTRY (entry));
7115
7116   priv = entry->priv;
7117
7118   if (buffer)
7119     {
7120       g_return_if_fail (GTK_IS_ENTRY_BUFFER (buffer));
7121       g_object_ref (buffer);
7122     }
7123
7124   if (priv->buffer)
7125     {
7126       buffer_disconnect_signals (entry);
7127       g_object_unref (priv->buffer);
7128     }
7129
7130   priv->buffer = buffer;
7131
7132   if (priv->buffer)
7133      buffer_connect_signals (entry);
7134
7135   obj = G_OBJECT (entry);
7136   g_object_freeze_notify (obj);
7137   g_object_notify (obj, "buffer");
7138   g_object_notify (obj, "text");
7139   g_object_notify (obj, "text-length");
7140   g_object_notify (obj, "max-length");
7141   g_object_notify (obj, "visibility");
7142   g_object_notify (obj, "invisible-char");
7143   g_object_notify (obj, "invisible-char-set");
7144   g_object_thaw_notify (obj);
7145
7146   gtk_editable_set_position (GTK_EDITABLE (entry), 0);
7147   gtk_entry_recompute (entry);
7148 }
7149
7150 /**
7151  * gtk_entry_get_text_area:
7152  * @entry: a #GtkEntry
7153  * @text_area: (out): Return location for the text area.
7154  *
7155  * Gets the area where the entry's text is drawn. This function is
7156  * useful when drawing something to the entry in a draw callback.
7157  *
7158  * If the entry is not realized, @text_area is filled with zeros.
7159  *
7160  * See also gtk_entry_get_icon_area().
7161  *
7162  * Since: 3.0
7163  **/
7164 void
7165 gtk_entry_get_text_area (GtkEntry     *entry,
7166                          GdkRectangle *text_area)
7167 {
7168   GtkEntryPrivate *priv;
7169
7170   g_return_if_fail (GTK_IS_ENTRY (entry));
7171   g_return_if_fail (text_area != NULL);
7172
7173   priv = entry->priv;
7174
7175   if (priv->text_area)
7176     {
7177       GtkAllocation allocation;
7178       gint x, y;
7179
7180       gtk_widget_get_allocation (GTK_WIDGET (entry), &allocation);
7181       gdk_window_get_position (priv->text_area, &x, &y);
7182
7183       text_area->x = x - allocation.x;
7184       text_area->y = y - allocation.y;
7185       text_area->width = gdk_window_get_width (priv->text_area);
7186       text_area->height = gdk_window_get_height (priv->text_area);
7187     }
7188   else
7189     {
7190       text_area->x = 0;
7191       text_area->y = 0;
7192       text_area->width = 0;
7193       text_area->height = 0;
7194     }
7195 }
7196
7197 /**
7198  * gtk_entry_set_text:
7199  * @entry: a #GtkEntry
7200  * @text: the new text
7201  *
7202  * Sets the text in the widget to the given
7203  * value, replacing the current contents.
7204  *
7205  * See gtk_entry_buffer_set_text().
7206  */
7207 void
7208 gtk_entry_set_text (GtkEntry    *entry,
7209                     const gchar *text)
7210 {
7211   gint tmp_pos;
7212   GtkEntryCompletion *completion;
7213
7214   g_return_if_fail (GTK_IS_ENTRY (entry));
7215   g_return_if_fail (text != NULL);
7216
7217   /* Actually setting the text will affect the cursor and selection;
7218    * if the contents don't actually change, this will look odd to the user.
7219    */
7220   if (strcmp (gtk_entry_buffer_get_text (get_buffer (entry)), text) == 0)
7221     return;
7222
7223   completion = gtk_entry_get_completion (entry);
7224   if (completion && completion->priv->changed_id > 0)
7225     g_signal_handler_block (entry, completion->priv->changed_id);
7226
7227   begin_change (entry);
7228   gtk_editable_delete_text (GTK_EDITABLE (entry), 0, -1);
7229   tmp_pos = 0;
7230   gtk_editable_insert_text (GTK_EDITABLE (entry), text, strlen (text), &tmp_pos);
7231   end_change (entry);
7232
7233   if (completion && completion->priv->changed_id > 0)
7234     g_signal_handler_unblock (entry, completion->priv->changed_id);
7235 }
7236
7237 /**
7238  * gtk_entry_set_visibility:
7239  * @entry: a #GtkEntry
7240  * @visible: %TRUE if the contents of the entry are displayed
7241  *           as plaintext
7242  *
7243  * Sets whether the contents of the entry are visible or not.
7244  * When visibility is set to %FALSE, characters are displayed
7245  * as the invisible char, and will also appear that way when
7246  * the text in the entry widget is copied elsewhere.
7247  *
7248  * By default, GTK+ picks the best invisible character available
7249  * in the current font, but it can be changed with
7250  * gtk_entry_set_invisible_char().
7251  *
7252  * Note that you probably want to set #GtkEntry:input-purpose
7253  * to %GTK_INPUT_PURPOSE_PASSWORD or %GTK_INPUT_PURPOSE_PIN to
7254  * inform input methods about the purpose of this entry,
7255  * in addition to setting visibility to %FALSE.
7256  */
7257 void
7258 gtk_entry_set_visibility (GtkEntry *entry,
7259                           gboolean visible)
7260 {
7261   GtkEntryPrivate *priv;
7262
7263   g_return_if_fail (GTK_IS_ENTRY (entry));
7264
7265   priv = entry->priv;
7266
7267   visible = visible != FALSE;
7268
7269   if (priv->visible != visible)
7270     {
7271       priv->visible = visible;
7272
7273       g_object_notify (G_OBJECT (entry), "visibility");
7274       gtk_entry_recompute (entry);
7275     }
7276 }
7277
7278 /**
7279  * gtk_entry_get_visibility:
7280  * @entry: a #GtkEntry
7281  *
7282  * Retrieves whether the text in @entry is visible. See
7283  * gtk_entry_set_visibility().
7284  *
7285  * Return value: %TRUE if the text is currently visible
7286  **/
7287 gboolean
7288 gtk_entry_get_visibility (GtkEntry *entry)
7289 {
7290   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7291
7292   return entry->priv->visible;
7293 }
7294
7295 /**
7296  * gtk_entry_set_invisible_char:
7297  * @entry: a #GtkEntry
7298  * @ch: a Unicode character
7299  * 
7300  * Sets the character to use in place of the actual text when
7301  * gtk_entry_set_visibility() has been called to set text visibility
7302  * to %FALSE. i.e. this is the character used in "password mode" to
7303  * show the user how many characters have been typed. By default, GTK+
7304  * picks the best invisible char available in the current font. If you
7305  * set the invisible char to 0, then the user will get no feedback
7306  * at all; there will be no text on the screen as they type.
7307  **/
7308 void
7309 gtk_entry_set_invisible_char (GtkEntry *entry,
7310                               gunichar  ch)
7311 {
7312   GtkEntryPrivate *priv;
7313
7314   g_return_if_fail (GTK_IS_ENTRY (entry));
7315
7316   priv = entry->priv;
7317
7318   if (!priv->invisible_char_set)
7319     {
7320       priv->invisible_char_set = TRUE;
7321       g_object_notify (G_OBJECT (entry), "invisible-char-set");
7322     }
7323
7324   if (ch == priv->invisible_char)
7325     return;
7326
7327   priv->invisible_char = ch;
7328   g_object_notify (G_OBJECT (entry), "invisible-char");
7329   gtk_entry_recompute (entry);  
7330 }
7331
7332 /**
7333  * gtk_entry_get_invisible_char:
7334  * @entry: a #GtkEntry
7335  *
7336  * Retrieves the character displayed in place of the real characters
7337  * for entries with visibility set to false. See gtk_entry_set_invisible_char().
7338  *
7339  * Return value: the current invisible char, or 0, if the entry does not
7340  *               show invisible text at all. 
7341  **/
7342 gunichar
7343 gtk_entry_get_invisible_char (GtkEntry *entry)
7344 {
7345   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7346
7347   return entry->priv->invisible_char;
7348 }
7349
7350 /**
7351  * gtk_entry_unset_invisible_char:
7352  * @entry: a #GtkEntry
7353  *
7354  * Unsets the invisible char previously set with
7355  * gtk_entry_set_invisible_char(). So that the
7356  * default invisible char is used again.
7357  *
7358  * Since: 2.16
7359  **/
7360 void
7361 gtk_entry_unset_invisible_char (GtkEntry *entry)
7362 {
7363   GtkEntryPrivate *priv;
7364   gunichar ch;
7365
7366   g_return_if_fail (GTK_IS_ENTRY (entry));
7367
7368   priv = entry->priv;
7369
7370   if (!priv->invisible_char_set)
7371     return;
7372
7373   priv->invisible_char_set = FALSE;
7374   ch = find_invisible_char (GTK_WIDGET (entry));
7375
7376   if (priv->invisible_char != ch)
7377     {
7378       priv->invisible_char = ch;
7379       g_object_notify (G_OBJECT (entry), "invisible-char");
7380     }
7381
7382   g_object_notify (G_OBJECT (entry), "invisible-char-set");
7383   gtk_entry_recompute (entry);
7384 }
7385
7386 /**
7387  * gtk_entry_set_overwrite_mode:
7388  * @entry: a #GtkEntry
7389  * @overwrite: new value
7390  * 
7391  * Sets whether the text is overwritten when typing in the #GtkEntry.
7392  *
7393  * Since: 2.14
7394  **/
7395 void
7396 gtk_entry_set_overwrite_mode (GtkEntry *entry,
7397                               gboolean  overwrite)
7398 {
7399   GtkEntryPrivate *priv = entry->priv;
7400
7401   g_return_if_fail (GTK_IS_ENTRY (entry));
7402
7403   if (priv->overwrite_mode == overwrite)
7404     return;
7405   
7406   gtk_entry_toggle_overwrite (entry);
7407
7408   g_object_notify (G_OBJECT (entry), "overwrite-mode");
7409 }
7410
7411 /**
7412  * gtk_entry_get_overwrite_mode:
7413  * @entry: a #GtkEntry
7414  * 
7415  * Gets the value set by gtk_entry_set_overwrite_mode().
7416  * 
7417  * Return value: whether the text is overwritten when typing.
7418  *
7419  * Since: 2.14
7420  **/
7421 gboolean
7422 gtk_entry_get_overwrite_mode (GtkEntry *entry)
7423 {
7424   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7425
7426   return entry->priv->overwrite_mode;
7427 }
7428
7429 /**
7430  * gtk_entry_get_text:
7431  * @entry: a #GtkEntry
7432  *
7433  * Retrieves the contents of the entry widget.
7434  * See also gtk_editable_get_chars().
7435  *
7436  * This is equivalent to:
7437  *
7438  * <informalexample><programlisting>
7439  * gtk_entry_buffer_get_text (gtk_entry_get_buffer (entry));
7440  * </programlisting></informalexample>
7441  *
7442  * Return value: a pointer to the contents of the widget as a
7443  *      string. This string points to internally allocated
7444  *      storage in the widget and must not be freed, modified or
7445  *      stored.
7446  **/
7447 const gchar*
7448 gtk_entry_get_text (GtkEntry *entry)
7449 {
7450   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7451
7452   return gtk_entry_buffer_get_text (get_buffer (entry));
7453 }
7454
7455 /**
7456  * gtk_entry_set_max_length:
7457  * @entry: a #GtkEntry
7458  * @max: the maximum length of the entry, or 0 for no maximum.
7459  *   (other than the maximum length of entries.) The value passed in will
7460  *   be clamped to the range 0-65536.
7461  * 
7462  * Sets the maximum allowed length of the contents of the widget. If
7463  * the current contents are longer than the given length, then they
7464  * will be truncated to fit.
7465  *
7466  * This is equivalent to:
7467  *
7468  * <informalexample><programlisting>
7469  * gtk_entry_buffer_set_max_length (gtk_entry_get_buffer (entry), max);
7470  * </programlisting></informalexample>
7471  **/
7472 void
7473 gtk_entry_set_max_length (GtkEntry     *entry,
7474                           gint          max)
7475 {
7476   g_return_if_fail (GTK_IS_ENTRY (entry));
7477   gtk_entry_buffer_set_max_length (get_buffer (entry), max);
7478 }
7479
7480 /**
7481  * gtk_entry_get_max_length:
7482  * @entry: a #GtkEntry
7483  *
7484  * Retrieves the maximum allowed length of the text in
7485  * @entry. See gtk_entry_set_max_length().
7486  *
7487  * This is equivalent to:
7488  *
7489  * <informalexample><programlisting>
7490  * gtk_entry_buffer_get_max_length (gtk_entry_get_buffer (entry));
7491  * </programlisting></informalexample>
7492  *
7493  * Return value: the maximum allowed number of characters
7494  *               in #GtkEntry, or 0 if there is no maximum.
7495  **/
7496 gint
7497 gtk_entry_get_max_length (GtkEntry *entry)
7498 {
7499   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7500
7501   return gtk_entry_buffer_get_max_length (get_buffer (entry));
7502 }
7503
7504 /**
7505  * gtk_entry_get_text_length:
7506  * @entry: a #GtkEntry
7507  *
7508  * Retrieves the current length of the text in
7509  * @entry. 
7510  *
7511  * This is equivalent to:
7512  *
7513  * <informalexample><programlisting>
7514  * gtk_entry_buffer_get_length (gtk_entry_get_buffer (entry));
7515  * </programlisting></informalexample>
7516  *
7517  * Return value: the current number of characters
7518  *               in #GtkEntry, or 0 if there are none.
7519  *
7520  * Since: 2.14
7521  **/
7522 guint16
7523 gtk_entry_get_text_length (GtkEntry *entry)
7524 {
7525   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7526
7527   return gtk_entry_buffer_get_length (get_buffer (entry));
7528 }
7529
7530 /**
7531  * gtk_entry_set_activates_default:
7532  * @entry: a #GtkEntry
7533  * @setting: %TRUE to activate window's default widget on Enter keypress
7534  *
7535  * If @setting is %TRUE, pressing Enter in the @entry will activate the default
7536  * widget for the window containing the entry. This usually means that
7537  * the dialog box containing the entry will be closed, since the default
7538  * widget is usually one of the dialog buttons.
7539  *
7540  * (For experts: if @setting is %TRUE, the entry calls
7541  * gtk_window_activate_default() on the window containing the entry, in
7542  * the default handler for the #GtkEntry::activate signal.)
7543  **/
7544 void
7545 gtk_entry_set_activates_default (GtkEntry *entry,
7546                                  gboolean  setting)
7547 {
7548   GtkEntryPrivate *priv;
7549
7550   g_return_if_fail (GTK_IS_ENTRY (entry));
7551
7552   priv = entry->priv;
7553
7554   setting = setting != FALSE;
7555
7556   if (setting != priv->activates_default)
7557     {
7558       priv->activates_default = setting;
7559       g_object_notify (G_OBJECT (entry), "activates-default");
7560     }
7561 }
7562
7563 /**
7564  * gtk_entry_get_activates_default:
7565  * @entry: a #GtkEntry
7566  * 
7567  * Retrieves the value set by gtk_entry_set_activates_default().
7568  * 
7569  * Return value: %TRUE if the entry will activate the default widget
7570  **/
7571 gboolean
7572 gtk_entry_get_activates_default (GtkEntry *entry)
7573 {
7574   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7575
7576   return entry->priv->activates_default;
7577 }
7578
7579 /**
7580  * gtk_entry_set_width_chars:
7581  * @entry: a #GtkEntry
7582  * @n_chars: width in chars
7583  *
7584  * Changes the size request of the entry to be about the right size
7585  * for @n_chars characters. Note that it changes the size
7586  * <emphasis>request</emphasis>, the size can still be affected by
7587  * how you pack the widget into containers. If @n_chars is -1, the
7588  * size reverts to the default entry size.
7589  **/
7590 void
7591 gtk_entry_set_width_chars (GtkEntry *entry,
7592                            gint      n_chars)
7593 {
7594   GtkEntryPrivate *priv;
7595
7596   g_return_if_fail (GTK_IS_ENTRY (entry));
7597
7598   priv = entry->priv;
7599
7600   if (priv->width_chars != n_chars)
7601     {
7602       priv->width_chars = n_chars;
7603       g_object_notify (G_OBJECT (entry), "width-chars");
7604       gtk_widget_queue_resize (GTK_WIDGET (entry));
7605     }
7606 }
7607
7608 /**
7609  * gtk_entry_get_width_chars:
7610  * @entry: a #GtkEntry
7611  * 
7612  * Gets the value set by gtk_entry_set_width_chars().
7613  * 
7614  * Return value: number of chars to request space for, or negative if unset
7615  **/
7616 gint
7617 gtk_entry_get_width_chars (GtkEntry *entry)
7618 {
7619   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7620
7621   return entry->priv->width_chars;
7622 }
7623
7624 /**
7625  * gtk_entry_set_has_frame:
7626  * @entry: a #GtkEntry
7627  * @setting: new value
7628  * 
7629  * Sets whether the entry has a beveled frame around it.
7630  **/
7631 void
7632 gtk_entry_set_has_frame (GtkEntry *entry,
7633                          gboolean  setting)
7634 {
7635   GtkEntryPrivate *priv;
7636
7637   g_return_if_fail (GTK_IS_ENTRY (entry));
7638
7639   priv = entry->priv;
7640
7641   setting = (setting != FALSE);
7642
7643   if (priv->has_frame == setting)
7644     return;
7645
7646   gtk_widget_queue_resize (GTK_WIDGET (entry));
7647   priv->has_frame = setting;
7648   g_object_notify (G_OBJECT (entry), "has-frame");
7649 }
7650
7651 /**
7652  * gtk_entry_get_has_frame:
7653  * @entry: a #GtkEntry
7654  * 
7655  * Gets the value set by gtk_entry_set_has_frame().
7656  * 
7657  * Return value: whether the entry has a beveled frame
7658  **/
7659 gboolean
7660 gtk_entry_get_has_frame (GtkEntry *entry)
7661 {
7662   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
7663
7664   return entry->priv->has_frame;
7665 }
7666
7667 /**
7668  * gtk_entry_set_inner_border:
7669  * @entry: a #GtkEntry
7670  * @border: (allow-none): a #GtkBorder, or %NULL
7671  *
7672  * Sets %entry's inner-border property to %border, or clears it if %NULL
7673  * is passed. The inner-border is the area around the entry's text, but
7674  * inside its frame.
7675  *
7676  * If set, this property overrides the inner-border style property.
7677  * Overriding the style-provided border is useful when you want to do
7678  * in-place editing of some text in a canvas or list widget, where
7679  * pixel-exact positioning of the entry is important.
7680  *
7681  * Since: 2.10
7682  *
7683  * Deprecated: 3.4: Use the standard border and padding CSS properties (through
7684  *   objects like #GtkStyleContext and #GtkCssProvider); the value set with
7685  *   this function is ignored by #GtkEntry.
7686  **/
7687 void
7688 gtk_entry_set_inner_border (GtkEntry        *entry,
7689                             const GtkBorder *border)
7690 {
7691   g_return_if_fail (GTK_IS_ENTRY (entry));
7692
7693   gtk_entry_do_set_inner_border (entry, border);
7694 }
7695
7696 /**
7697  * gtk_entry_get_inner_border:
7698  * @entry: a #GtkEntry
7699  *
7700  * This function returns the entry's #GtkEntry:inner-border property. See
7701  * gtk_entry_set_inner_border() for more information.
7702  *
7703  * Return value: (transfer none): the entry's #GtkBorder, or %NULL if none was set.
7704  *
7705  * Since: 2.10
7706  *
7707  * Deprecated: 3.4: Use the standard border and padding CSS properties (through
7708  *   objects like #GtkStyleContext and #GtkCssProvider); the value returned by
7709  *   this function is ignored by #GtkEntry.
7710  **/
7711 const GtkBorder *
7712 gtk_entry_get_inner_border (GtkEntry *entry)
7713 {
7714   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7715
7716   return gtk_entry_do_get_inner_border (entry);
7717 }
7718
7719 /**
7720  * gtk_entry_get_layout:
7721  * @entry: a #GtkEntry
7722  * 
7723  * Gets the #PangoLayout used to display the entry.
7724  * The layout is useful to e.g. convert text positions to
7725  * pixel positions, in combination with gtk_entry_get_layout_offsets().
7726  * The returned layout is owned by the entry and must not be 
7727  * modified or freed by the caller.
7728  *
7729  * Keep in mind that the layout text may contain a preedit string, so
7730  * gtk_entry_layout_index_to_text_index() and
7731  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7732  * indices in the layout to byte indices in the entry contents.
7733  *
7734  * Return value: (transfer none): the #PangoLayout for this entry
7735  **/
7736 PangoLayout*
7737 gtk_entry_get_layout (GtkEntry *entry)
7738 {
7739   PangoLayout *layout;
7740   
7741   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
7742
7743   layout = gtk_entry_ensure_layout (entry, TRUE);
7744
7745   return layout;
7746 }
7747
7748
7749 /**
7750  * gtk_entry_layout_index_to_text_index:
7751  * @entry: a #GtkEntry
7752  * @layout_index: byte index into the entry layout text
7753  * 
7754  * Converts from a position in the entry contents (returned
7755  * by gtk_entry_get_text()) to a position in the
7756  * entry's #PangoLayout (returned by gtk_entry_get_layout(),
7757  * with text retrieved via pango_layout_get_text()).
7758  * 
7759  * Return value: byte index into the entry contents
7760  **/
7761 gint
7762 gtk_entry_layout_index_to_text_index (GtkEntry *entry,
7763                                       gint      layout_index)
7764 {
7765   GtkEntryPrivate *priv;
7766   PangoLayout *layout;
7767   const gchar *text;
7768   gint cursor_index;
7769   
7770   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7771
7772   priv = entry->priv;
7773
7774   layout = gtk_entry_ensure_layout (entry, TRUE);
7775   text = pango_layout_get_text (layout);
7776   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7777
7778   if (layout_index >= cursor_index && priv->preedit_length)
7779     {
7780       if (layout_index >= cursor_index + priv->preedit_length)
7781         layout_index -= priv->preedit_length;
7782       else
7783         layout_index = cursor_index;
7784     }
7785
7786   return layout_index;
7787 }
7788
7789 /**
7790  * gtk_entry_text_index_to_layout_index:
7791  * @entry: a #GtkEntry
7792  * @text_index: byte index into the entry contents
7793  * 
7794  * Converts from a position in the entry's #PangoLayout (returned by
7795  * gtk_entry_get_layout()) to a position in the entry contents
7796  * (returned by gtk_entry_get_text()).
7797  * 
7798  * Return value: byte index into the entry layout text
7799  **/
7800 gint
7801 gtk_entry_text_index_to_layout_index (GtkEntry *entry,
7802                                       gint      text_index)
7803 {
7804   GtkEntryPrivate *priv;
7805   PangoLayout *layout;
7806   const gchar *text;
7807   gint cursor_index;
7808
7809   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0);
7810
7811   priv = entry->priv;
7812
7813   layout = gtk_entry_ensure_layout (entry, TRUE);
7814   text = pango_layout_get_text (layout);
7815   cursor_index = g_utf8_offset_to_pointer (text, priv->current_pos) - text;
7816
7817   if (text_index > cursor_index)
7818     text_index += priv->preedit_length;
7819
7820   return text_index;
7821 }
7822
7823 /**
7824  * gtk_entry_get_layout_offsets:
7825  * @entry: a #GtkEntry
7826  * @x: (out) (allow-none): location to store X offset of layout, or %NULL
7827  * @y: (out) (allow-none): location to store Y offset of layout, or %NULL
7828  *
7829  *
7830  * Obtains the position of the #PangoLayout used to render text
7831  * in the entry, in widget coordinates. Useful if you want to line
7832  * up the text in an entry with some other text, e.g. when using the
7833  * entry to implement editable cells in a sheet widget.
7834  *
7835  * Also useful to convert mouse events into coordinates inside the
7836  * #PangoLayout, e.g. to take some action if some part of the entry text
7837  * is clicked.
7838  * 
7839  * Note that as the user scrolls around in the entry the offsets will
7840  * change; you'll need to connect to the "notify::scroll-offset"
7841  * signal to track this. Remember when using the #PangoLayout
7842  * functions you need to convert to and from pixels using
7843  * PANGO_PIXELS() or #PANGO_SCALE.
7844  *
7845  * Keep in mind that the layout text may contain a preedit string, so
7846  * gtk_entry_layout_index_to_text_index() and
7847  * gtk_entry_text_index_to_layout_index() are needed to convert byte
7848  * indices in the layout to byte indices in the entry contents.
7849  **/
7850 void
7851 gtk_entry_get_layout_offsets (GtkEntry *entry,
7852                               gint     *x,
7853                               gint     *y)
7854 {
7855   gint text_area_x, text_area_y;
7856   
7857   g_return_if_fail (GTK_IS_ENTRY (entry));
7858
7859   /* this gets coords relative to text area */
7860   get_layout_position (entry, x, y);
7861
7862   /* convert to widget coords */
7863   gtk_entry_get_text_area_size (entry, &text_area_x, &text_area_y, NULL, NULL);
7864   
7865   if (x)
7866     *x += text_area_x;
7867
7868   if (y)
7869     *y += text_area_y;
7870 }
7871
7872
7873 /**
7874  * gtk_entry_set_alignment:
7875  * @entry: a #GtkEntry
7876  * @xalign: The horizontal alignment, from 0 (left) to 1 (right).
7877  *          Reversed for RTL layouts
7878  * 
7879  * Sets the alignment for the contents of the entry. This controls
7880  * the horizontal positioning of the contents when the displayed
7881  * text is shorter than the width of the entry.
7882  *
7883  * Since: 2.4
7884  **/
7885 void
7886 gtk_entry_set_alignment (GtkEntry *entry, gfloat xalign)
7887 {
7888   GtkEntryPrivate *priv;
7889
7890   g_return_if_fail (GTK_IS_ENTRY (entry));
7891
7892   priv = entry->priv;
7893
7894   if (xalign < 0.0)
7895     xalign = 0.0;
7896   else if (xalign > 1.0)
7897     xalign = 1.0;
7898
7899   if (xalign != priv->xalign)
7900     {
7901       priv->xalign = xalign;
7902
7903       gtk_entry_recompute (entry);
7904
7905       g_object_notify (G_OBJECT (entry), "xalign");
7906     }
7907 }
7908
7909 /**
7910  * gtk_entry_get_alignment:
7911  * @entry: a #GtkEntry
7912  * 
7913  * Gets the value set by gtk_entry_set_alignment().
7914  * 
7915  * Return value: the alignment
7916  *
7917  * Since: 2.4
7918  **/
7919 gfloat
7920 gtk_entry_get_alignment (GtkEntry *entry)
7921 {
7922   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
7923
7924   return entry->priv->xalign;
7925 }
7926
7927 /**
7928  * gtk_entry_set_icon_from_pixbuf:
7929  * @entry: a #GtkEntry
7930  * @icon_pos: Icon position
7931  * @pixbuf: (allow-none): A #GdkPixbuf, or %NULL
7932  *
7933  * Sets the icon shown in the specified position using a pixbuf.
7934  *
7935  * If @pixbuf is %NULL, no icon will be shown in the specified position.
7936  *
7937  * Since: 2.16
7938  */
7939 void
7940 gtk_entry_set_icon_from_pixbuf (GtkEntry             *entry,
7941                                 GtkEntryIconPosition  icon_pos,
7942                                 GdkPixbuf            *pixbuf)
7943 {
7944   GtkEntryPrivate *priv;
7945   EntryIconInfo *icon_info;
7946
7947   g_return_if_fail (GTK_IS_ENTRY (entry));
7948   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
7949
7950   priv = entry->priv;
7951
7952   if ((icon_info = priv->icons[icon_pos]) == NULL)
7953     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
7954
7955   g_object_freeze_notify (G_OBJECT (entry));
7956
7957   if (pixbuf)
7958     g_object_ref (pixbuf);
7959
7960   gtk_entry_clear (entry, icon_pos);
7961
7962   if (pixbuf)
7963     {
7964       _gtk_icon_helper_set_pixbuf (icon_info->icon_helper, pixbuf);
7965       _gtk_icon_helper_set_icon_size (icon_info->icon_helper,
7966                                       GTK_ICON_SIZE_MENU);
7967
7968       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
7969         {
7970           g_object_notify (G_OBJECT (entry), "primary-icon-pixbuf");
7971           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
7972         }
7973       else
7974         {
7975           g_object_notify (G_OBJECT (entry), "secondary-icon-pixbuf");
7976           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
7977         }
7978
7979       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
7980           gdk_window_show_unraised (icon_info->window);
7981
7982       g_object_unref (pixbuf);
7983     }
7984   
7985   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
7986     gtk_widget_queue_resize (GTK_WIDGET (entry));
7987
7988   g_object_thaw_notify (G_OBJECT (entry));
7989 }
7990
7991 /**
7992  * gtk_entry_set_icon_from_stock:
7993  * @entry: A #GtkEntry
7994  * @icon_pos: Icon position
7995  * @stock_id: (allow-none): The name of the stock item, or %NULL
7996  *
7997  * Sets the icon shown in the entry at the specified position from
7998  * a stock image.
7999  *
8000  * If @stock_id is %NULL, no icon will be shown in the specified position.
8001  *
8002  * Since: 2.16
8003  */
8004 void
8005 gtk_entry_set_icon_from_stock (GtkEntry             *entry,
8006                                GtkEntryIconPosition  icon_pos,
8007                                const gchar          *stock_id)
8008 {
8009   GtkEntryPrivate *priv;
8010   EntryIconInfo *icon_info;
8011   gchar *new_id;
8012
8013   g_return_if_fail (GTK_IS_ENTRY (entry));
8014   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8015
8016   priv = entry->priv;
8017
8018   if ((icon_info = priv->icons[icon_pos]) == NULL)
8019     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8020
8021   g_object_freeze_notify (G_OBJECT (entry));
8022
8023   /* need to dup before clearing */
8024   new_id = g_strdup (stock_id);
8025
8026   gtk_entry_clear (entry, icon_pos);
8027
8028   if (new_id != NULL)
8029     {
8030       _gtk_icon_helper_set_stock_id (icon_info->icon_helper, new_id, GTK_ICON_SIZE_MENU);
8031
8032       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8033         {
8034           g_object_notify (G_OBJECT (entry), "primary-icon-stock");
8035           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
8036         }
8037       else
8038         {
8039           g_object_notify (G_OBJECT (entry), "secondary-icon-stock");
8040           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
8041         }
8042
8043       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
8044           gdk_window_show_unraised (icon_info->window);
8045
8046       g_free (new_id);
8047     }
8048
8049   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
8050     gtk_widget_queue_resize (GTK_WIDGET (entry));
8051
8052   g_object_thaw_notify (G_OBJECT (entry));
8053 }
8054
8055 /**
8056  * gtk_entry_set_icon_from_icon_name:
8057  * @entry: A #GtkEntry
8058  * @icon_pos: The position at which to set the icon
8059  * @icon_name: (allow-none): An icon name, or %NULL
8060  *
8061  * Sets the icon shown in the entry at the specified position
8062  * from the current icon theme.
8063  *
8064  * If the icon name isn't known, a "broken image" icon will be displayed
8065  * instead.
8066  *
8067  * If @icon_name is %NULL, no icon will be shown in the specified position.
8068  *
8069  * Since: 2.16
8070  */
8071 void
8072 gtk_entry_set_icon_from_icon_name (GtkEntry             *entry,
8073                                    GtkEntryIconPosition  icon_pos,
8074                                    const gchar          *icon_name)
8075 {
8076   GtkEntryPrivate *priv;
8077   EntryIconInfo *icon_info;
8078   gchar *new_name;
8079
8080   g_return_if_fail (GTK_IS_ENTRY (entry));
8081   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8082
8083   priv = entry->priv;
8084
8085   if ((icon_info = priv->icons[icon_pos]) == NULL)
8086     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8087
8088   g_object_freeze_notify (G_OBJECT (entry));
8089
8090   /* need to dup before clearing */
8091   new_name = g_strdup (icon_name);
8092
8093   gtk_entry_clear (entry, icon_pos);
8094
8095   if (new_name != NULL)
8096     {
8097       _gtk_icon_helper_set_icon_name (icon_info->icon_helper, new_name, GTK_ICON_SIZE_MENU);
8098
8099       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8100         {
8101           g_object_notify (G_OBJECT (entry), "primary-icon-name");
8102           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
8103         }
8104       else
8105         {
8106           g_object_notify (G_OBJECT (entry), "secondary-icon-name");
8107           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
8108         }
8109
8110       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
8111           gdk_window_show_unraised (icon_info->window);
8112
8113       g_free (new_name);
8114     }
8115
8116   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
8117     gtk_widget_queue_resize (GTK_WIDGET (entry));
8118
8119   g_object_thaw_notify (G_OBJECT (entry));
8120 }
8121
8122 /**
8123  * gtk_entry_set_icon_from_gicon:
8124  * @entry: A #GtkEntry
8125  * @icon_pos: The position at which to set the icon
8126  * @icon: (allow-none): The icon to set, or %NULL
8127  *
8128  * Sets the icon shown in the entry at the specified position
8129  * from the current icon theme.
8130  * If the icon isn't known, a "broken image" icon will be displayed
8131  * instead.
8132  *
8133  * If @icon is %NULL, no icon will be shown in the specified position.
8134  *
8135  * Since: 2.16
8136  */
8137 void
8138 gtk_entry_set_icon_from_gicon (GtkEntry             *entry,
8139                                GtkEntryIconPosition  icon_pos,
8140                                GIcon                *icon)
8141 {
8142   GtkEntryPrivate *priv;
8143   EntryIconInfo *icon_info;
8144
8145   g_return_if_fail (GTK_IS_ENTRY (entry));
8146   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8147
8148   priv = entry->priv;
8149
8150   if ((icon_info = priv->icons[icon_pos]) == NULL)
8151     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8152
8153   g_object_freeze_notify (G_OBJECT (entry));
8154
8155   /* need to ref before clearing */
8156   if (icon)
8157     g_object_ref (icon);
8158
8159   gtk_entry_clear (entry, icon_pos);
8160
8161   if (icon)
8162     {
8163       _gtk_icon_helper_set_gicon (icon_info->icon_helper, icon, GTK_ICON_SIZE_MENU);
8164
8165       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8166         {
8167           g_object_notify (G_OBJECT (entry), "primary-icon-gicon");
8168           g_object_notify (G_OBJECT (entry), "primary-icon-storage-type");
8169         }
8170       else
8171         {
8172           g_object_notify (G_OBJECT (entry), "secondary-icon-gicon");
8173           g_object_notify (G_OBJECT (entry), "secondary-icon-storage-type");
8174         }
8175
8176       if (gtk_widget_get_mapped (GTK_WIDGET (entry)))
8177           gdk_window_show_unraised (icon_info->window);
8178
8179       g_object_unref (icon);
8180     }
8181
8182   if (gtk_widget_get_visible (GTK_WIDGET (entry)))
8183     gtk_widget_queue_resize (GTK_WIDGET (entry));
8184
8185   g_object_thaw_notify (G_OBJECT (entry));
8186 }
8187
8188 /**
8189  * gtk_entry_set_icon_activatable:
8190  * @entry: A #GtkEntry
8191  * @icon_pos: Icon position
8192  * @activatable: %TRUE if the icon should be activatable
8193  *
8194  * Sets whether the icon is activatable.
8195  *
8196  * Since: 2.16
8197  */
8198 void
8199 gtk_entry_set_icon_activatable (GtkEntry             *entry,
8200                                 GtkEntryIconPosition  icon_pos,
8201                                 gboolean              activatable)
8202 {
8203   GtkEntryPrivate *priv;
8204   EntryIconInfo *icon_info;
8205
8206   g_return_if_fail (GTK_IS_ENTRY (entry));
8207   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8208
8209   priv = entry->priv;
8210
8211   if ((icon_info = priv->icons[icon_pos]) == NULL)
8212     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8213
8214   activatable = activatable != FALSE;
8215
8216   if (icon_info->nonactivatable != !activatable)
8217     {
8218       icon_info->nonactivatable = !activatable;
8219
8220       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8221         update_cursors (GTK_WIDGET (entry));
8222
8223       g_object_notify (G_OBJECT (entry),
8224                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-activatable" : "secondary-icon-activatable");
8225     }
8226 }
8227
8228 /**
8229  * gtk_entry_get_icon_activatable:
8230  * @entry: a #GtkEntry
8231  * @icon_pos: Icon position
8232  *
8233  * Returns whether the icon is activatable.
8234  *
8235  * Returns: %TRUE if the icon is activatable.
8236  *
8237  * Since: 2.16
8238  */
8239 gboolean
8240 gtk_entry_get_icon_activatable (GtkEntry             *entry,
8241                                 GtkEntryIconPosition  icon_pos)
8242 {
8243   GtkEntryPrivate *priv;
8244   EntryIconInfo *icon_info;
8245
8246   g_return_val_if_fail (GTK_IS_ENTRY (entry), FALSE);
8247   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), FALSE);
8248
8249   priv = entry->priv;
8250   icon_info = priv->icons[icon_pos];
8251
8252   return (!icon_info || !icon_info->nonactivatable);
8253 }
8254
8255 /**
8256  * gtk_entry_get_icon_pixbuf:
8257  * @entry: A #GtkEntry
8258  * @icon_pos: Icon position
8259  *
8260  * Retrieves the image used for the icon.
8261  *
8262  * Unlike the other methods of setting and getting icon data, this
8263  * method will work regardless of whether the icon was set using a
8264  * #GdkPixbuf, a #GIcon, a stock item, or an icon name.
8265  *
8266  * Returns: (transfer none): A #GdkPixbuf, or %NULL if no icon is
8267  *     set for this position.
8268  *
8269  * Since: 2.16
8270  */
8271 GdkPixbuf *
8272 gtk_entry_get_icon_pixbuf (GtkEntry             *entry,
8273                            GtkEntryIconPosition  icon_pos)
8274 {
8275   GtkEntryPrivate *priv;
8276   EntryIconInfo *icon_info;
8277   GdkPixbuf *pixbuf;
8278
8279   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8280   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8281
8282   priv = entry->priv;
8283
8284   icon_info = priv->icons[icon_pos];
8285
8286   if (!icon_info)
8287     return NULL;
8288
8289   /* HACK: unfortunately this is transfer none, so we need to return
8290    * the icon helper's cache ref directly.
8291    */
8292   pixbuf = gtk_entry_ensure_pixbuf (entry, icon_pos);
8293   if (pixbuf)
8294     g_object_unref (pixbuf);
8295
8296   return pixbuf;
8297 }
8298
8299 /**
8300  * gtk_entry_get_icon_gicon:
8301  * @entry: A #GtkEntry
8302  * @icon_pos: Icon position
8303  *
8304  * Retrieves the #GIcon used for the icon, or %NULL if there is
8305  * no icon or if the icon was set by some other method (e.g., by
8306  * stock, pixbuf, or icon name).
8307  *
8308  * Returns: (transfer none): A #GIcon, or %NULL if no icon is set
8309  *     or if the icon is not a #GIcon
8310  *
8311  * Since: 2.16
8312  */
8313 GIcon *
8314 gtk_entry_get_icon_gicon (GtkEntry             *entry,
8315                           GtkEntryIconPosition  icon_pos)
8316 {
8317   GtkEntryPrivate *priv;
8318   EntryIconInfo *icon_info;
8319
8320   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8321   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8322
8323   priv = entry->priv;
8324   icon_info = priv->icons[icon_pos];
8325
8326   if (!icon_info)
8327     return NULL;
8328
8329   return _gtk_icon_helper_peek_gicon (icon_info->icon_helper);
8330 }
8331
8332 /**
8333  * gtk_entry_get_icon_stock:
8334  * @entry: A #GtkEntry
8335  * @icon_pos: Icon position
8336  *
8337  * Retrieves the stock id used for the icon, or %NULL if there is
8338  * no icon or if the icon was set by some other method (e.g., by
8339  * pixbuf, icon name or gicon).
8340  *
8341  * Returns: A stock id, or %NULL if no icon is set or if the icon
8342  *          wasn't set from a stock id
8343  *
8344  * Since: 2.16
8345  */
8346 const gchar *
8347 gtk_entry_get_icon_stock (GtkEntry             *entry,
8348                           GtkEntryIconPosition  icon_pos)
8349 {
8350   GtkEntryPrivate *priv;
8351   EntryIconInfo *icon_info;
8352
8353   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8354   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8355
8356   priv = entry->priv;
8357   icon_info = priv->icons[icon_pos];
8358
8359   if (!icon_info)
8360     return NULL;
8361
8362   return _gtk_icon_helper_get_stock_id (icon_info->icon_helper);
8363 }
8364
8365 /**
8366  * gtk_entry_get_icon_name:
8367  * @entry: A #GtkEntry
8368  * @icon_pos: Icon position
8369  *
8370  * Retrieves the icon name used for the icon, or %NULL if there is
8371  * no icon or if the icon was set by some other method (e.g., by
8372  * pixbuf, stock or gicon).
8373  *
8374  * Returns: An icon name, or %NULL if no icon is set or if the icon
8375  *          wasn't set from an icon name
8376  *
8377  * Since: 2.16
8378  */
8379 const gchar *
8380 gtk_entry_get_icon_name (GtkEntry             *entry,
8381                          GtkEntryIconPosition  icon_pos)
8382 {
8383   GtkEntryPrivate *priv;
8384   EntryIconInfo *icon_info;
8385
8386   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8387   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8388
8389   priv = entry->priv;
8390   icon_info = priv->icons[icon_pos];
8391
8392   if (!icon_info)
8393     return NULL;
8394
8395   return _gtk_icon_helper_get_icon_name (icon_info->icon_helper);
8396 }
8397
8398 /**
8399  * gtk_entry_set_icon_sensitive:
8400  * @entry: A #GtkEntry
8401  * @icon_pos: Icon position
8402  * @sensitive: Specifies whether the icon should appear
8403  *             sensitive or insensitive
8404  *
8405  * Sets the sensitivity for the specified icon.
8406  *
8407  * Since: 2.16
8408  */
8409 void
8410 gtk_entry_set_icon_sensitive (GtkEntry             *entry,
8411                               GtkEntryIconPosition  icon_pos,
8412                               gboolean              sensitive)
8413 {
8414   GtkEntryPrivate *priv;
8415   EntryIconInfo *icon_info;
8416
8417   g_return_if_fail (GTK_IS_ENTRY (entry));
8418   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8419
8420   priv = entry->priv;
8421
8422   if ((icon_info = priv->icons[icon_pos]) == NULL)
8423     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8424
8425   if (icon_info->insensitive != !sensitive)
8426     {
8427       icon_info->insensitive = !sensitive;
8428
8429       icon_info->pressed = FALSE;
8430       icon_info->prelight = FALSE;
8431
8432       if (gtk_widget_get_realized (GTK_WIDGET (entry)))
8433         update_cursors (GTK_WIDGET (entry));
8434
8435       gtk_widget_queue_draw (GTK_WIDGET (entry));
8436
8437       g_object_notify (G_OBJECT (entry),
8438                        icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-sensitive" : "secondary-icon-sensitive");
8439     }
8440 }
8441
8442 /**
8443  * gtk_entry_get_icon_sensitive:
8444  * @entry: a #GtkEntry
8445  * @icon_pos: Icon position
8446  *
8447  * Returns whether the icon appears sensitive or insensitive.
8448  *
8449  * Returns: %TRUE if the icon is sensitive.
8450  *
8451  * Since: 2.16
8452  */
8453 gboolean
8454 gtk_entry_get_icon_sensitive (GtkEntry             *entry,
8455                               GtkEntryIconPosition  icon_pos)
8456 {
8457   GtkEntryPrivate *priv;
8458   EntryIconInfo *icon_info;
8459
8460   g_return_val_if_fail (GTK_IS_ENTRY (entry), TRUE);
8461   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), TRUE);
8462
8463   priv = entry->priv;
8464
8465   icon_info = priv->icons[icon_pos];
8466
8467   return (!icon_info || !icon_info->insensitive);
8468
8469 }
8470
8471 /**
8472  * gtk_entry_get_icon_storage_type:
8473  * @entry: a #GtkEntry
8474  * @icon_pos: Icon position
8475  *
8476  * Gets the type of representation being used by the icon
8477  * to store image data. If the icon has no image data,
8478  * the return value will be %GTK_IMAGE_EMPTY.
8479  *
8480  * Return value: image representation being used
8481  *
8482  * Since: 2.16
8483  **/
8484 GtkImageType
8485 gtk_entry_get_icon_storage_type (GtkEntry             *entry,
8486                                  GtkEntryIconPosition  icon_pos)
8487 {
8488   GtkEntryPrivate *priv;
8489   EntryIconInfo *icon_info;
8490
8491   g_return_val_if_fail (GTK_IS_ENTRY (entry), GTK_IMAGE_EMPTY);
8492   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), GTK_IMAGE_EMPTY);
8493
8494   priv = entry->priv;
8495
8496   icon_info = priv->icons[icon_pos];
8497
8498   if (!icon_info)
8499     return GTK_IMAGE_EMPTY;
8500
8501   return _gtk_icon_helper_get_storage_type (icon_info->icon_helper);
8502 }
8503
8504 /**
8505  * gtk_entry_get_icon_at_pos:
8506  * @entry: a #GtkEntry
8507  * @x: the x coordinate of the position to find
8508  * @y: the y coordinate of the position to find
8509  *
8510  * Finds the icon at the given position and return its index. The
8511  * position's coordinates are relative to the @entry's top left corner.
8512  * If @x, @y doesn't lie inside an icon, -1 is returned.
8513  * This function is intended for use in a #GtkWidget::query-tooltip
8514  * signal handler.
8515  *
8516  * Returns: the index of the icon at the given position, or -1
8517  *
8518  * Since: 2.16
8519  */
8520 gint
8521 gtk_entry_get_icon_at_pos (GtkEntry *entry,
8522                            gint      x,
8523                            gint      y)
8524 {
8525   GtkAllocation primary;
8526   GtkAllocation secondary;
8527   gint frame_x, frame_y;
8528
8529   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8530
8531   get_frame_size (entry, FALSE, &frame_x, &frame_y, NULL, NULL);
8532   x -= frame_x;
8533   y -= frame_y;
8534
8535   get_icon_allocations (entry, &primary, &secondary);
8536
8537   if (primary.x <= x && x < primary.x + primary.width &&
8538       primary.y <= y && y < primary.y + primary.height)
8539     return GTK_ENTRY_ICON_PRIMARY;
8540
8541   if (secondary.x <= x && x < secondary.x + secondary.width &&
8542       secondary.y <= y && y < secondary.y + secondary.height)
8543     return GTK_ENTRY_ICON_SECONDARY;
8544
8545   return -1;
8546 }
8547
8548 /**
8549  * gtk_entry_set_icon_drag_source:
8550  * @entry: a #GtkEntry
8551  * @icon_pos: icon position
8552  * @target_list: the targets (data formats) in which the data can be provided
8553  * @actions: a bitmask of the allowed drag actions
8554  *
8555  * Sets up the icon at the given position so that GTK+ will start a drag
8556  * operation when the user clicks and drags the icon.
8557  *
8558  * To handle the drag operation, you need to connect to the usual
8559  * #GtkWidget::drag-data-get (or possibly #GtkWidget::drag-data-delete)
8560  * signal, and use gtk_entry_get_current_icon_drag_source() in
8561  * your signal handler to find out if the drag was started from
8562  * an icon.
8563  *
8564  * By default, GTK+ uses the icon as the drag icon. You can use the 
8565  * #GtkWidget::drag-begin signal to set a different icon. Note that you 
8566  * have to use g_signal_connect_after() to ensure that your signal handler
8567  * gets executed after the default handler.
8568  *
8569  * Since: 2.16
8570  */
8571 void
8572 gtk_entry_set_icon_drag_source (GtkEntry             *entry,
8573                                 GtkEntryIconPosition  icon_pos,
8574                                 GtkTargetList        *target_list,
8575                                 GdkDragAction         actions)
8576 {
8577   GtkEntryPrivate *priv;
8578   EntryIconInfo *icon_info;
8579
8580   g_return_if_fail (GTK_IS_ENTRY (entry));
8581   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8582
8583   priv = entry->priv;
8584
8585   if ((icon_info = priv->icons[icon_pos]) == NULL)
8586     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8587
8588   if (icon_info->target_list)
8589     gtk_target_list_unref (icon_info->target_list);
8590   icon_info->target_list = target_list;
8591   if (icon_info->target_list)
8592     gtk_target_list_ref (icon_info->target_list);
8593
8594   icon_info->actions = actions;
8595 }
8596
8597 /**
8598  * gtk_entry_get_current_icon_drag_source:
8599  * @entry: a #GtkIconEntry
8600  *
8601  * Returns the index of the icon which is the source of the current
8602  * DND operation, or -1.
8603  *
8604  * This function is meant to be used in a #GtkWidget::drag-data-get
8605  * callback.
8606  *
8607  * Returns: index of the icon which is the source of the current
8608  *          DND operation, or -1.
8609  *
8610  * Since: 2.16
8611  */
8612 gint
8613 gtk_entry_get_current_icon_drag_source (GtkEntry *entry)
8614 {
8615   GtkEntryPrivate *priv;
8616   EntryIconInfo *icon_info = NULL;
8617   gint i;
8618
8619   g_return_val_if_fail (GTK_IS_ENTRY (entry), -1);
8620
8621   priv = entry->priv;
8622
8623   for (i = 0; i < MAX_ICONS; i++)
8624     {
8625       if ((icon_info = priv->icons[i]))
8626         {
8627           if (icon_info->in_drag)
8628             return i;
8629         }
8630     }
8631
8632   return -1;
8633 }
8634
8635 /**
8636  * gtk_entry_get_icon_area:
8637  * @entry: A #GtkEntry
8638  * @icon_pos: Icon position
8639  * @icon_area: (out): Return location for the icon's area
8640  *
8641  * Gets the area where entry's icon at @icon_pos is drawn.
8642  * This function is useful when drawing something to the
8643  * entry in a draw callback.
8644  *
8645  * If the entry is not realized or has no icon at the given position,
8646  * @icon_area is filled with zeros.
8647  *
8648  * See also gtk_entry_get_text_area()
8649  *
8650  * Since: 3.0
8651  */
8652 void
8653 gtk_entry_get_icon_area (GtkEntry             *entry,
8654                          GtkEntryIconPosition  icon_pos,
8655                          GdkRectangle         *icon_area)
8656 {
8657   GtkEntryPrivate *priv;
8658   EntryIconInfo *icon_info;
8659
8660   g_return_if_fail (GTK_IS_ENTRY (entry));
8661   g_return_if_fail (icon_area != NULL);
8662
8663   priv = entry->priv;
8664
8665   icon_info = priv->icons[icon_pos];
8666
8667   if (icon_info)
8668     {
8669       GtkAllocation primary;
8670       GtkAllocation secondary;
8671
8672       get_icon_allocations (entry, &primary, &secondary);
8673
8674       if (icon_pos == GTK_ENTRY_ICON_PRIMARY)
8675         *icon_area = primary;
8676       else
8677         *icon_area = secondary;
8678     }
8679   else
8680     {
8681       icon_area->x = 0;
8682       icon_area->y = 0;
8683       icon_area->width = 0;
8684       icon_area->height = 0;
8685     }
8686 }
8687
8688 static void
8689 ensure_has_tooltip (GtkEntry *entry)
8690 {
8691   GtkEntryPrivate *priv;
8692   EntryIconInfo *icon_info;
8693   int i;
8694   gboolean has_tooltip = FALSE;
8695
8696   priv = entry->priv;
8697
8698   for (i = 0; i < MAX_ICONS; i++)
8699     {
8700       if ((icon_info = priv->icons[i]) != NULL)
8701         {
8702           if (icon_info->tooltip != NULL)
8703             {
8704               has_tooltip = TRUE;
8705               break;
8706             }
8707         }
8708     }
8709
8710   gtk_widget_set_has_tooltip (GTK_WIDGET (entry), has_tooltip);
8711 }
8712
8713 /**
8714  * gtk_entry_get_icon_tooltip_text:
8715  * @entry: a #GtkEntry
8716  * @icon_pos: the icon position
8717  *
8718  * Gets the contents of the tooltip on the icon at the specified 
8719  * position in @entry.
8720  * 
8721  * Returns: the tooltip text, or %NULL. Free the returned string
8722  *     with g_free() when done.
8723  * 
8724  * Since: 2.16
8725  */
8726 gchar *
8727 gtk_entry_get_icon_tooltip_text (GtkEntry             *entry,
8728                                  GtkEntryIconPosition  icon_pos)
8729 {
8730   GtkEntryPrivate *priv;
8731   EntryIconInfo *icon_info;
8732   gchar *text = NULL;
8733
8734   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8735   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8736
8737   priv = entry->priv;
8738
8739   icon_info = priv->icons[icon_pos];
8740
8741   if (!icon_info)
8742     return NULL;
8743  
8744   if (icon_info->tooltip && 
8745       !pango_parse_markup (icon_info->tooltip, -1, 0, NULL, &text, NULL, NULL))
8746     g_assert (NULL == text); /* text should still be NULL in case of markup errors */
8747
8748   return text;
8749 }
8750
8751 /**
8752  * gtk_entry_set_icon_tooltip_text:
8753  * @entry: a #GtkEntry
8754  * @icon_pos: the icon position
8755  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8756  *
8757  * Sets @tooltip as the contents of the tooltip for the icon
8758  * at the specified position.
8759  *
8760  * Use %NULL for @tooltip to remove an existing tooltip.
8761  *
8762  * See also gtk_widget_set_tooltip_text() and 
8763  * gtk_entry_set_icon_tooltip_markup().
8764  *
8765  * Since: 2.16
8766  */
8767 void
8768 gtk_entry_set_icon_tooltip_text (GtkEntry             *entry,
8769                                  GtkEntryIconPosition  icon_pos,
8770                                  const gchar          *tooltip)
8771 {
8772   GtkEntryPrivate *priv;
8773   EntryIconInfo *icon_info;
8774
8775   g_return_if_fail (GTK_IS_ENTRY (entry));
8776   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8777
8778   priv = entry->priv;
8779
8780   if ((icon_info = priv->icons[icon_pos]) == NULL)
8781     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8782
8783   if (icon_info->tooltip)
8784     g_free (icon_info->tooltip);
8785
8786   /* Treat an empty string as a NULL string,
8787    * because an empty string would be useless for a tooltip:
8788    */
8789   if (tooltip && tooltip[0] == '\0')
8790     tooltip = NULL;
8791
8792   icon_info->tooltip = tooltip ? g_markup_escape_text (tooltip, -1) : NULL;
8793
8794   ensure_has_tooltip (entry);
8795
8796   g_object_notify (G_OBJECT (entry),
8797                    icon_pos == GTK_ENTRY_ICON_PRIMARY ? "primary-icon-tooltip-text" : "secondary-icon-tooltip-text");
8798 }
8799
8800 /**
8801  * gtk_entry_get_icon_tooltip_markup:
8802  * @entry: a #GtkEntry
8803  * @icon_pos: the icon position
8804  *
8805  * Gets the contents of the tooltip on the icon at the specified 
8806  * position in @entry.
8807  * 
8808  * Returns: the tooltip text, or %NULL. Free the returned string
8809  *     with g_free() when done.
8810  * 
8811  * Since: 2.16
8812  */
8813 gchar *
8814 gtk_entry_get_icon_tooltip_markup (GtkEntry             *entry,
8815                                    GtkEntryIconPosition  icon_pos)
8816 {
8817   GtkEntryPrivate *priv;
8818   EntryIconInfo *icon_info;
8819
8820   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
8821   g_return_val_if_fail (IS_VALID_ICON_POSITION (icon_pos), NULL);
8822
8823   priv = entry->priv;
8824
8825   icon_info = priv->icons[icon_pos];
8826
8827   if (!icon_info)
8828     return NULL;
8829  
8830   return g_strdup (icon_info->tooltip);
8831 }
8832
8833 /**
8834  * gtk_entry_set_icon_tooltip_markup:
8835  * @entry: a #GtkEntry
8836  * @icon_pos: the icon position
8837  * @tooltip: (allow-none): the contents of the tooltip for the icon, or %NULL
8838  *
8839  * Sets @tooltip as the contents of the tooltip for the icon at
8840  * the specified position. @tooltip is assumed to be marked up with
8841  * the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
8842  *
8843  * Use %NULL for @tooltip to remove an existing tooltip.
8844  *
8845  * See also gtk_widget_set_tooltip_markup() and 
8846  * gtk_entry_set_icon_tooltip_text().
8847  *
8848  * Since: 2.16
8849  */
8850 void
8851 gtk_entry_set_icon_tooltip_markup (GtkEntry             *entry,
8852                                    GtkEntryIconPosition  icon_pos,
8853                                    const gchar          *tooltip)
8854 {
8855   GtkEntryPrivate *priv;
8856   EntryIconInfo *icon_info;
8857
8858   g_return_if_fail (GTK_IS_ENTRY (entry));
8859   g_return_if_fail (IS_VALID_ICON_POSITION (icon_pos));
8860
8861   priv = entry->priv;
8862
8863   if ((icon_info = priv->icons[icon_pos]) == NULL)
8864     icon_info = construct_icon_info (GTK_WIDGET (entry), icon_pos);
8865
8866   if (icon_info->tooltip)
8867     g_free (icon_info->tooltip);
8868
8869   /* Treat an empty string as a NULL string,
8870    * because an empty string would be useless for a tooltip:
8871    */
8872   if (tooltip && tooltip[0] == '\0')
8873     tooltip = NULL;
8874
8875   icon_info->tooltip = g_strdup (tooltip);
8876
8877   ensure_has_tooltip (entry);
8878 }
8879
8880 static gboolean
8881 gtk_entry_query_tooltip (GtkWidget  *widget,
8882                          gint        x,
8883                          gint        y,
8884                          gboolean    keyboard_tip,
8885                          GtkTooltip *tooltip)
8886 {
8887   GtkEntry *entry;
8888   GtkEntryPrivate *priv;
8889   EntryIconInfo *icon_info;
8890   gint icon_pos;
8891
8892   entry = GTK_ENTRY (widget);
8893   priv = entry->priv;
8894
8895   if (!keyboard_tip)
8896     {
8897       icon_pos = gtk_entry_get_icon_at_pos (entry, x, y);
8898       if (icon_pos != -1)
8899         {
8900           if ((icon_info = priv->icons[icon_pos]) != NULL)
8901             {
8902               if (icon_info->tooltip)
8903                 {
8904                   gtk_tooltip_set_markup (tooltip, icon_info->tooltip);
8905                   return TRUE;
8906                 }
8907
8908               return FALSE;
8909             }
8910         }
8911     }
8912
8913   return GTK_WIDGET_CLASS (gtk_entry_parent_class)->query_tooltip (widget,
8914                                                                    x, y,
8915                                                                    keyboard_tip,
8916                                                                    tooltip);
8917 }
8918
8919
8920 /* Quick hack of a popup menu
8921  */
8922 static void
8923 activate_cb (GtkWidget *menuitem,
8924              GtkEntry  *entry)
8925 {
8926   const gchar *signal = g_object_get_data (G_OBJECT (menuitem), "gtk-signal");
8927   g_signal_emit_by_name (entry, signal);
8928 }
8929
8930
8931 static gboolean
8932 gtk_entry_mnemonic_activate (GtkWidget *widget,
8933                              gboolean   group_cycling)
8934 {
8935   gtk_widget_grab_focus (widget);
8936   return TRUE;
8937 }
8938
8939 static void
8940 gtk_entry_grab_notify (GtkWidget *widget,
8941                        gboolean   was_grabbed)
8942 {
8943   GtkEntryPrivate *priv;
8944
8945   priv = GTK_ENTRY (widget)->priv;
8946
8947   if (priv->device &&
8948       gtk_widget_device_is_shadowed (widget, priv->device))
8949     {
8950       /* Unset button so we don't expect
8951        * a button release anymore
8952        */
8953       priv->button = 0;
8954       priv->device = NULL;
8955       priv->in_drag = FALSE;
8956     }
8957 }
8958
8959 static void
8960 append_action_signal (GtkEntry     *entry,
8961                       GtkWidget    *menu,
8962                       const gchar  *stock_id,
8963                       const gchar  *signal,
8964                       gboolean      sensitive)
8965 {
8966   GtkWidget *menuitem = gtk_image_menu_item_new_from_stock (stock_id, NULL);
8967
8968   g_object_set_data (G_OBJECT (menuitem), I_("gtk-signal"), (char *)signal);
8969   g_signal_connect (menuitem, "activate",
8970                     G_CALLBACK (activate_cb), entry);
8971
8972   gtk_widget_set_sensitive (menuitem, sensitive);
8973   
8974   gtk_widget_show (menuitem);
8975   gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
8976 }
8977         
8978 static void
8979 popup_menu_detach (GtkWidget *attach_widget,
8980                    GtkMenu   *menu)
8981 {
8982   GtkEntry *entry_attach = GTK_ENTRY (attach_widget);
8983   GtkEntryPrivate *priv_attach = entry_attach->priv;
8984
8985   priv_attach->popup_menu = NULL;
8986 }
8987
8988 static void
8989 popup_position_func (GtkMenu   *menu,
8990                      gint      *x,
8991                      gint      *y,
8992                      gboolean  *push_in,
8993                      gpointer   user_data)
8994 {
8995   GtkEntry *entry = GTK_ENTRY (user_data);
8996   GtkEntryPrivate *priv = entry->priv;
8997   GtkWidget *widget = GTK_WIDGET (entry);
8998   GdkScreen *screen;
8999   GtkRequisition menu_req;
9000   GdkRectangle monitor;
9001   GtkBorder borders;
9002   gint monitor_num, strong_x, height;
9003  
9004   g_return_if_fail (gtk_widget_get_realized (widget));
9005
9006   gdk_window_get_origin (priv->text_area, x, y);
9007
9008   screen = gtk_widget_get_screen (widget);
9009   monitor_num = gdk_screen_get_monitor_at_window (screen, priv->text_area);
9010   if (monitor_num < 0)
9011     monitor_num = 0;
9012   gtk_menu_set_monitor (menu, monitor_num);
9013
9014   gdk_screen_get_monitor_workarea (screen, monitor_num, &monitor);
9015   gtk_widget_get_preferred_size (priv->popup_menu,
9016                                  &menu_req, NULL);
9017   height = gdk_window_get_height (priv->text_area);
9018   gtk_entry_get_cursor_locations (entry, CURSOR_STANDARD, &strong_x, NULL);
9019   _gtk_entry_get_borders (entry, &borders);
9020
9021   *x += borders.left + strong_x - priv->scroll_offset;
9022   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
9023     *x -= menu_req.width;
9024
9025   if ((*y + height + menu_req.height) <= monitor.y + monitor.height)
9026     *y += height;
9027   else if ((*y - menu_req.height) >= monitor.y)
9028     *y -= menu_req.height;
9029   else if (monitor.y + monitor.height - (*y + height) > *y)
9030     *y += height;
9031   else
9032     *y -= menu_req.height;
9033
9034   *push_in = FALSE;
9035 }
9036
9037 static void
9038 unichar_chosen_func (const char *text,
9039                      gpointer    data)
9040 {
9041   GtkEntry *entry = GTK_ENTRY (data);
9042   GtkEntryPrivate *priv = entry->priv;
9043
9044   if (priv->editable)
9045     gtk_entry_enter_text (entry, text);
9046 }
9047
9048 typedef struct
9049 {
9050   GtkEntry *entry;
9051   gint button;
9052   guint time;
9053   GdkDevice *device;
9054 } PopupInfo;
9055
9056 static void
9057 popup_targets_received (GtkClipboard     *clipboard,
9058                         GtkSelectionData *data,
9059                         gpointer          user_data)
9060 {
9061   PopupInfo *info = user_data;
9062   GtkEntry *entry = info->entry;
9063   GtkEntryPrivate *info_entry_priv = entry->priv;
9064
9065   if (gtk_widget_get_realized (GTK_WIDGET (entry)))
9066     {
9067       DisplayMode mode;
9068       gboolean clipboard_contains_text;
9069       GtkWidget *menuitem;
9070       GtkWidget *submenu;
9071       gboolean show_input_method_menu;
9072       gboolean show_unicode_menu;
9073       
9074       clipboard_contains_text = gtk_selection_data_targets_include_text (data);
9075       if (info_entry_priv->popup_menu)
9076         gtk_widget_destroy (info_entry_priv->popup_menu);
9077
9078       info_entry_priv->popup_menu = gtk_menu_new ();
9079
9080       gtk_menu_attach_to_widget (GTK_MENU (info_entry_priv->popup_menu),
9081                                  GTK_WIDGET (entry),
9082                                  popup_menu_detach);
9083       
9084       mode = gtk_entry_get_display_mode (entry);
9085       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_CUT, "cut-clipboard",
9086                             info_entry_priv->editable && mode == DISPLAY_NORMAL &&
9087                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
9088
9089       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_COPY, "copy-clipboard",
9090                             mode == DISPLAY_NORMAL &&
9091                             info_entry_priv->current_pos != info_entry_priv->selection_bound);
9092
9093       append_action_signal (entry, info_entry_priv->popup_menu, GTK_STOCK_PASTE, "paste-clipboard",
9094                             info_entry_priv->editable && clipboard_contains_text);
9095
9096       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_DELETE, NULL);
9097       gtk_widget_set_sensitive (menuitem, info_entry_priv->editable && info_entry_priv->current_pos != info_entry_priv->selection_bound);
9098       g_signal_connect_swapped (menuitem, "activate",
9099                                 G_CALLBACK (gtk_entry_delete_cb), entry);
9100       gtk_widget_show (menuitem);
9101       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9102
9103       menuitem = gtk_separator_menu_item_new ();
9104       gtk_widget_show (menuitem);
9105       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9106       
9107       menuitem = gtk_image_menu_item_new_from_stock (GTK_STOCK_SELECT_ALL, NULL);
9108       gtk_widget_set_sensitive (menuitem, gtk_entry_buffer_get_length (info_entry_priv->buffer) > 0);
9109       g_signal_connect_swapped (menuitem, "activate",
9110                                 G_CALLBACK (gtk_entry_select_all), entry);
9111       gtk_widget_show (menuitem);
9112       gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9113       
9114       g_object_get (gtk_widget_get_settings (GTK_WIDGET (entry)),
9115                     "gtk-show-input-method-menu", &show_input_method_menu,
9116                     "gtk-show-unicode-menu", &show_unicode_menu,
9117                     NULL);
9118
9119       if (show_input_method_menu || show_unicode_menu)
9120         {
9121           menuitem = gtk_separator_menu_item_new ();
9122           gtk_widget_show (menuitem);
9123           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9124         }
9125       
9126       if (show_input_method_menu)
9127         {
9128           menuitem = gtk_menu_item_new_with_mnemonic (_("Input _Methods"));
9129           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
9130           gtk_widget_show (menuitem);
9131           submenu = gtk_menu_new ();
9132           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
9133
9134           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9135
9136           gtk_im_multicontext_append_menuitems (GTK_IM_MULTICONTEXT (info_entry_priv->im_context),
9137                                                 GTK_MENU_SHELL (submenu));
9138         }
9139       
9140       if (show_unicode_menu)
9141         {
9142           menuitem = gtk_menu_item_new_with_mnemonic (_("_Insert Unicode Control Character"));
9143           gtk_widget_set_sensitive (menuitem, info_entry_priv->editable);
9144           gtk_widget_show (menuitem);
9145           
9146           submenu = gtk_menu_new ();
9147           gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu);
9148           gtk_menu_shell_append (GTK_MENU_SHELL (info_entry_priv->popup_menu), menuitem);
9149
9150           _gtk_text_util_append_special_char_menuitems (GTK_MENU_SHELL (submenu),
9151                                                         unichar_chosen_func,
9152                                                         entry);
9153         }
9154       
9155       g_signal_emit (entry,
9156                      signals[POPULATE_POPUP],
9157                      0,
9158                      info_entry_priv->popup_menu);
9159
9160
9161       if (info->device)
9162         gtk_menu_popup_for_device (GTK_MENU (info_entry_priv->popup_menu),
9163                         info->device, NULL, NULL, NULL, NULL, NULL,
9164                         info->button, info->time);
9165       else
9166         {
9167           gtk_menu_popup (GTK_MENU (info_entry_priv->popup_menu), NULL, NULL,
9168                           popup_position_func, entry,
9169                           0, gtk_get_current_event_time ());
9170           gtk_menu_shell_select_first (GTK_MENU_SHELL (info_entry_priv->popup_menu), FALSE);
9171         }
9172     }
9173
9174   g_object_unref (entry);
9175   g_slice_free (PopupInfo, info);
9176 }
9177                         
9178 static void
9179 gtk_entry_do_popup (GtkEntry       *entry,
9180                     GdkEventButton *event)
9181 {
9182   PopupInfo *info = g_slice_new (PopupInfo);
9183
9184   /* In order to know what entries we should make sensitive, we
9185    * ask for the current targets of the clipboard, and when
9186    * we get them, then we actually pop up the menu.
9187    */
9188   info->entry = g_object_ref (entry);
9189   
9190   if (event)
9191     {
9192       info->button = event->button;
9193       info->time = event->time;
9194       info->device = event->device;
9195     }
9196   else
9197     {
9198       info->button = 0;
9199       info->time = gtk_get_current_event_time ();
9200       info->device = NULL;
9201     }
9202
9203   gtk_clipboard_request_contents (gtk_widget_get_clipboard (GTK_WIDGET (entry), GDK_SELECTION_CLIPBOARD),
9204                                   gdk_atom_intern_static_string ("TARGETS"),
9205                                   popup_targets_received,
9206                                   info);
9207 }
9208
9209 static gboolean
9210 gtk_entry_popup_menu (GtkWidget *widget)
9211 {
9212   gtk_entry_do_popup (GTK_ENTRY (widget), NULL);
9213   return TRUE;
9214 }
9215
9216 static void
9217 gtk_entry_drag_begin (GtkWidget      *widget,
9218                       GdkDragContext *context)
9219 {
9220   GtkEntry *entry = GTK_ENTRY (widget);
9221   GtkEntryPrivate *priv = entry->priv;
9222   gint i;
9223
9224   for (i = 0; i < MAX_ICONS; i++)
9225     {
9226       EntryIconInfo *icon_info = priv->icons[i];
9227       
9228       if (icon_info != NULL)
9229         {
9230           if (icon_info->in_drag) 
9231             {
9232               GdkPixbuf *pix;
9233
9234               pix = _gtk_icon_helper_ensure_pixbuf
9235                 (icon_info->icon_helper,
9236                  gtk_widget_get_style_context (GTK_WIDGET (entry)));
9237               gtk_drag_set_icon_pixbuf (context, pix, -2, -2);
9238
9239               g_object_unref (pix);
9240             }
9241         }
9242     }
9243 }
9244
9245 static void
9246 gtk_entry_drag_end (GtkWidget      *widget,
9247                     GdkDragContext *context)
9248 {
9249   GtkEntry *entry = GTK_ENTRY (widget);
9250   GtkEntryPrivate *priv = entry->priv;
9251   gint i;
9252
9253   for (i = 0; i < MAX_ICONS; i++)
9254     {
9255       EntryIconInfo *icon_info = priv->icons[i];
9256
9257       if (icon_info != NULL)
9258         icon_info->in_drag = 0;
9259     }
9260 }
9261
9262 static void
9263 gtk_entry_drag_leave (GtkWidget        *widget,
9264                       GdkDragContext   *context,
9265                       guint             time)
9266 {
9267   GtkEntry *entry = GTK_ENTRY (widget);
9268   GtkEntryPrivate *priv = entry->priv;
9269
9270   priv->dnd_position = -1;
9271   gtk_widget_queue_draw (widget);
9272 }
9273
9274 static gboolean
9275 gtk_entry_drag_drop  (GtkWidget        *widget,
9276                       GdkDragContext   *context,
9277                       gint              x,
9278                       gint              y,
9279                       guint             time)
9280 {
9281   GtkEntry *entry = GTK_ENTRY (widget);
9282   GtkEntryPrivate *priv = entry->priv;
9283   GdkAtom target = GDK_NONE;
9284
9285   if (priv->editable)
9286     target = gtk_drag_dest_find_target (widget, context, NULL);
9287
9288   if (target != GDK_NONE)
9289     gtk_drag_get_data (widget, context, target, time);
9290   else
9291     gtk_drag_finish (context, FALSE, FALSE, time);
9292   
9293   return TRUE;
9294 }
9295
9296 static gboolean
9297 gtk_entry_drag_motion (GtkWidget        *widget,
9298                        GdkDragContext   *context,
9299                        gint              x,
9300                        gint              y,
9301                        guint             time)
9302 {
9303   GtkEntry *entry = GTK_ENTRY (widget);
9304   GtkEntryPrivate *priv = entry->priv;
9305   GtkStyleContext *style_context;
9306   GtkWidget *source_widget;
9307   GdkDragAction suggested_action;
9308   gint new_position, old_position;
9309   gint sel1, sel2;
9310   GtkBorder padding;
9311
9312   style_context = gtk_widget_get_style_context (widget);
9313   gtk_style_context_get_padding (style_context, 0, &padding);
9314   x -= padding.left;
9315   y -= padding.top;
9316
9317   old_position = priv->dnd_position;
9318   new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9319
9320   if (priv->editable &&
9321       gtk_drag_dest_find_target (widget, context, NULL) != GDK_NONE)
9322     {
9323       source_widget = gtk_drag_get_source_widget (context);
9324       suggested_action = gdk_drag_context_get_suggested_action (context);
9325
9326       if (!gtk_editable_get_selection_bounds (GTK_EDITABLE (entry), &sel1, &sel2) ||
9327           new_position < sel1 || new_position > sel2)
9328         {
9329           if (source_widget == widget)
9330             {
9331               /* Default to MOVE, unless the user has
9332                * pressed ctrl or alt to affect available actions
9333                */
9334               if ((gdk_drag_context_get_actions (context) & GDK_ACTION_MOVE) != 0)
9335                 suggested_action = GDK_ACTION_MOVE;
9336             }
9337
9338           priv->dnd_position = new_position;
9339         }
9340       else
9341         {
9342           if (source_widget == widget)
9343             suggested_action = 0;       /* Can't drop in selection where drag started */
9344
9345           priv->dnd_position = -1;
9346         }
9347     }
9348   else
9349     {
9350       /* Entry not editable, or no text */
9351       suggested_action = 0;
9352       priv->dnd_position = -1;
9353     }
9354   
9355   gdk_drag_status (context, suggested_action, time);
9356
9357   if (priv->dnd_position != old_position)
9358     gtk_widget_queue_draw (widget);
9359
9360   return TRUE;
9361 }
9362
9363 static void
9364 gtk_entry_drag_data_received (GtkWidget        *widget,
9365                               GdkDragContext   *context,
9366                               gint              x,
9367                               gint              y,
9368                               GtkSelectionData *selection_data,
9369                               guint             info,
9370                               guint             time)
9371 {
9372   GtkEntry *entry = GTK_ENTRY (widget);
9373   GtkEntryPrivate *priv = entry->priv;
9374   GtkEditable *editable = GTK_EDITABLE (widget);
9375   GtkStyleContext *style_context;
9376   GtkBorder padding;
9377   gchar *str;
9378
9379   str = (gchar *) gtk_selection_data_get_text (selection_data);
9380
9381   style_context = gtk_widget_get_style_context (widget);
9382   gtk_style_context_get_padding (style_context, 0, &padding);
9383   x -= padding.left;
9384   y -= padding.top;
9385
9386   if (str && priv->editable)
9387     {
9388       gint new_position;
9389       gint sel1, sel2;
9390       gint length = -1;
9391
9392       if (priv->truncate_multiline)
9393         length = truncate_multiline (str);
9394
9395       new_position = gtk_entry_find_position (entry, x + priv->scroll_offset);
9396
9397       if (!gtk_editable_get_selection_bounds (editable, &sel1, &sel2) ||
9398           new_position < sel1 || new_position > sel2)
9399         {
9400           gtk_editable_insert_text (editable, str, length, &new_position);
9401         }
9402       else
9403         {
9404           /* Replacing selection */
9405           begin_change (entry);
9406           gtk_editable_delete_text (editable, sel1, sel2);
9407           gtk_editable_insert_text (editable, str, length, &sel1);
9408           end_change (entry);
9409         }
9410       
9411       gtk_drag_finish (context, TRUE, gdk_drag_context_get_selected_action (context) == GDK_ACTION_MOVE, time);
9412     }
9413   else
9414     {
9415       /* Drag and drop didn't happen! */
9416       gtk_drag_finish (context, FALSE, FALSE, time);
9417     }
9418
9419   g_free (str);
9420 }
9421
9422 static void
9423 gtk_entry_drag_data_get (GtkWidget        *widget,
9424                          GdkDragContext   *context,
9425                          GtkSelectionData *selection_data,
9426                          guint             info,
9427                          guint             time)
9428 {
9429   GtkEntry *entry = GTK_ENTRY (widget);
9430   GtkEntryPrivate *priv = entry->priv;
9431   GtkEditable *editable = GTK_EDITABLE (widget);
9432   gint sel_start, sel_end;
9433   gint i;
9434
9435   /* If there is an icon drag going on, exit early. */
9436   for (i = 0; i < MAX_ICONS; i++)
9437     {
9438       EntryIconInfo *icon_info = priv->icons[i];
9439
9440       if (icon_info != NULL)
9441         {
9442           if (icon_info->in_drag)
9443             return;
9444         }
9445     }
9446
9447   if (gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9448     {
9449       gchar *str = _gtk_entry_get_display_text (GTK_ENTRY (widget), sel_start, sel_end);
9450
9451       gtk_selection_data_set_text (selection_data, str, -1);
9452       
9453       g_free (str);
9454     }
9455
9456 }
9457
9458 static void
9459 gtk_entry_drag_data_delete (GtkWidget      *widget,
9460                             GdkDragContext *context)
9461 {
9462   GtkEntry *entry = GTK_ENTRY (widget);
9463   GtkEntryPrivate *priv = entry->priv;
9464   GtkEditable *editable = GTK_EDITABLE (widget);
9465   gint sel_start, sel_end;
9466   gint i;
9467
9468   /* If there is an icon drag going on, exit early. */
9469   for (i = 0; i < MAX_ICONS; i++)
9470     {
9471       EntryIconInfo *icon_info = priv->icons[i];
9472
9473       if (icon_info != NULL)
9474         {
9475           if (icon_info->in_drag)
9476             return;
9477         }
9478     }
9479
9480   if (priv->editable &&
9481       gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
9482     gtk_editable_delete_text (editable, sel_start, sel_end);
9483 }
9484
9485 /* We display the cursor when
9486  *
9487  *  - the selection is empty, AND
9488  *  - the widget has focus
9489  */
9490
9491 #define CURSOR_ON_MULTIPLIER 2
9492 #define CURSOR_OFF_MULTIPLIER 1
9493 #define CURSOR_PEND_MULTIPLIER 3
9494 #define CURSOR_DIVIDER 3
9495
9496 static gboolean
9497 cursor_blinks (GtkEntry *entry)
9498 {
9499   GtkEntryPrivate *priv = entry->priv;
9500
9501   if (gtk_widget_has_focus (GTK_WIDGET (entry)) &&
9502       priv->editable &&
9503       priv->selection_bound == priv->current_pos)
9504     {
9505       GtkSettings *settings;
9506       gboolean blink;
9507
9508       settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9509       g_object_get (settings, "gtk-cursor-blink", &blink, NULL);
9510
9511       return blink;
9512     }
9513   else
9514     return FALSE;
9515 }
9516
9517 static gboolean
9518 get_middle_click_paste (GtkEntry *entry)
9519 {
9520   GtkSettings *settings;
9521   gboolean paste;
9522
9523   settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9524   g_object_get (settings, "gtk-enable-primary-paste", &paste, NULL);
9525
9526   return paste;
9527 }
9528
9529 static gint
9530 get_cursor_time (GtkEntry *entry)
9531 {
9532   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9533   gint time;
9534
9535   g_object_get (settings, "gtk-cursor-blink-time", &time, NULL);
9536
9537   return time;
9538 }
9539
9540 static gint
9541 get_cursor_blink_timeout (GtkEntry *entry)
9542 {
9543   GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (entry));
9544   gint timeout;
9545
9546   g_object_get (settings, "gtk-cursor-blink-timeout", &timeout, NULL);
9547
9548   return timeout;
9549 }
9550
9551 static void
9552 show_cursor (GtkEntry *entry)
9553 {
9554   GtkEntryPrivate *priv = entry->priv;
9555   GtkWidget *widget;
9556
9557   if (!priv->cursor_visible)
9558     {
9559       priv->cursor_visible = TRUE;
9560
9561       widget = GTK_WIDGET (entry);
9562       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9563         gtk_widget_queue_draw (widget);
9564     }
9565 }
9566
9567 static void
9568 hide_cursor (GtkEntry *entry)
9569 {
9570   GtkEntryPrivate *priv = entry->priv;
9571   GtkWidget *widget;
9572
9573   if (priv->cursor_visible)
9574     {
9575       priv->cursor_visible = FALSE;
9576
9577       widget = GTK_WIDGET (entry);
9578       if (gtk_widget_has_focus (widget) && priv->selection_bound == priv->current_pos)
9579         gtk_widget_queue_draw (widget);
9580     }
9581 }
9582
9583 /*
9584  * Blink!
9585  */
9586 static gint
9587 blink_cb (gpointer data)
9588 {
9589   GtkEntry *entry;
9590   GtkEntryPrivate *priv; 
9591   gint blink_timeout;
9592
9593   entry = GTK_ENTRY (data);
9594   priv = entry->priv;
9595  
9596   if (!gtk_widget_has_focus (GTK_WIDGET (entry)))
9597     {
9598       g_warning ("GtkEntry - did not receive focus-out-event. If you\n"
9599                  "connect a handler to this signal, it must return\n"
9600                  "FALSE so the entry gets the event as well");
9601
9602       gtk_entry_check_cursor_blink (entry);
9603
9604       return FALSE;
9605     }
9606   
9607   g_assert (priv->selection_bound == priv->current_pos);
9608   
9609   blink_timeout = get_cursor_blink_timeout (entry);
9610   if (priv->blink_time > 1000 * blink_timeout && 
9611       blink_timeout < G_MAXINT/1000) 
9612     {
9613       /* we've blinked enough without the user doing anything, stop blinking */
9614       show_cursor (entry);
9615       priv->blink_timeout = 0;
9616     } 
9617   else if (priv->cursor_visible)
9618     {
9619       hide_cursor (entry);
9620       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_OFF_MULTIPLIER / CURSOR_DIVIDER,
9621                                             blink_cb,
9622                                             entry);
9623     }
9624   else
9625     {
9626       show_cursor (entry);
9627       priv->blink_time += get_cursor_time (entry);
9628       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9629                                             blink_cb,
9630                                             entry);
9631     }
9632
9633   /* Remove ourselves */
9634   return FALSE;
9635 }
9636
9637 static void
9638 gtk_entry_check_cursor_blink (GtkEntry *entry)
9639 {
9640   GtkEntryPrivate *priv = entry->priv;
9641
9642   if (cursor_blinks (entry))
9643     {
9644       if (!priv->blink_timeout)
9645         {
9646           show_cursor (entry);
9647           priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_ON_MULTIPLIER / CURSOR_DIVIDER,
9648                                                 blink_cb,
9649                                                 entry);
9650         }
9651     }
9652   else
9653     {
9654       if (priv->blink_timeout)
9655         {
9656           g_source_remove (priv->blink_timeout);
9657           priv->blink_timeout = 0;
9658         }
9659
9660       priv->cursor_visible = TRUE;
9661     }
9662 }
9663
9664 static void
9665 gtk_entry_pend_cursor_blink (GtkEntry *entry)
9666 {
9667   GtkEntryPrivate *priv = entry->priv;
9668
9669   if (cursor_blinks (entry))
9670     {
9671       if (priv->blink_timeout != 0)
9672         g_source_remove (priv->blink_timeout);
9673
9674       priv->blink_timeout = gdk_threads_add_timeout (get_cursor_time (entry) * CURSOR_PEND_MULTIPLIER / CURSOR_DIVIDER,
9675                                                      blink_cb,
9676                                                      entry);
9677       show_cursor (entry);
9678     }
9679 }
9680
9681 static void
9682 gtk_entry_reset_blink_time (GtkEntry *entry)
9683 {
9684   GtkEntryPrivate *priv = entry->priv;
9685
9686   priv->blink_time = 0;
9687 }
9688
9689 /**
9690  * gtk_entry_set_completion:
9691  * @entry: A #GtkEntry
9692  * @completion: (allow-none): The #GtkEntryCompletion or %NULL
9693  *
9694  * Sets @completion to be the auxiliary completion object to use with @entry.
9695  * All further configuration of the completion mechanism is done on
9696  * @completion using the #GtkEntryCompletion API. Completion is disabled if
9697  * @completion is set to %NULL.
9698  *
9699  * Since: 2.4
9700  */
9701 void
9702 gtk_entry_set_completion (GtkEntry           *entry,
9703                           GtkEntryCompletion *completion)
9704 {
9705   GtkEntryCompletion *old;
9706
9707   g_return_if_fail (GTK_IS_ENTRY (entry));
9708   g_return_if_fail (!completion || GTK_IS_ENTRY_COMPLETION (completion));
9709
9710   old = gtk_entry_get_completion (entry);
9711
9712   if (old == completion)
9713     return;
9714   
9715   if (old)
9716     {
9717       _gtk_entry_completion_disconnect (old);
9718       g_object_unref (old);
9719     }
9720
9721   if (!completion)
9722     {
9723       g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), NULL);
9724       return;
9725     }
9726
9727   /* hook into the entry */
9728   g_object_ref (completion);
9729
9730   _gtk_entry_completion_connect (completion, entry);
9731
9732   g_object_set_data (G_OBJECT (entry), I_(GTK_ENTRY_COMPLETION_KEY), completion);
9733
9734   g_object_notify (G_OBJECT (entry), "completion");
9735 }
9736
9737 /**
9738  * gtk_entry_get_completion:
9739  * @entry: A #GtkEntry
9740  *
9741  * Returns the auxiliary completion object currently in use by @entry.
9742  *
9743  * Return value: (transfer none): The auxiliary completion object currently
9744  *     in use by @entry.
9745  *
9746  * Since: 2.4
9747  */
9748 GtkEntryCompletion *
9749 gtk_entry_get_completion (GtkEntry *entry)
9750 {
9751   GtkEntryCompletion *completion;
9752
9753   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
9754
9755   completion = GTK_ENTRY_COMPLETION (g_object_get_data (G_OBJECT (entry),
9756                                      GTK_ENTRY_COMPLETION_KEY));
9757
9758   return completion;
9759 }
9760
9761 /**
9762  * gtk_entry_set_cursor_hadjustment:
9763  * @entry: a #GtkEntry
9764  * @adjustment: an adjustment which should be adjusted when the cursor 
9765  *              is moved, or %NULL
9766  *
9767  * Hooks up an adjustment to the cursor position in an entry, so that when 
9768  * the cursor is moved, the adjustment is scrolled to show that position. 
9769  * See gtk_scrolled_window_get_hadjustment() for a typical way of obtaining 
9770  * the adjustment.
9771  *
9772  * The adjustment has to be in pixel units and in the same coordinate system 
9773  * as the entry. 
9774  * 
9775  * Since: 2.12
9776  */
9777 void
9778 gtk_entry_set_cursor_hadjustment (GtkEntry      *entry,
9779                                   GtkAdjustment *adjustment)
9780 {
9781   g_return_if_fail (GTK_IS_ENTRY (entry));
9782   if (adjustment)
9783     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
9784
9785   if (adjustment)
9786     g_object_ref (adjustment);
9787
9788   g_object_set_qdata_full (G_OBJECT (entry), 
9789                            quark_cursor_hadjustment,
9790                            adjustment, 
9791                            g_object_unref);
9792 }
9793
9794 /**
9795  * gtk_entry_get_cursor_hadjustment:
9796  * @entry: a #GtkEntry
9797  *
9798  * Retrieves the horizontal cursor adjustment for the entry. 
9799  * See gtk_entry_set_cursor_hadjustment().
9800  *
9801  * Return value: (transfer none): the horizontal cursor adjustment, or %NULL
9802  *   if none has been set.
9803  *
9804  * Since: 2.12
9805  */
9806 GtkAdjustment*
9807 gtk_entry_get_cursor_hadjustment (GtkEntry *entry)
9808 {
9809   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
9810
9811   return g_object_get_qdata (G_OBJECT (entry), quark_cursor_hadjustment);
9812 }
9813
9814 /**
9815  * gtk_entry_set_progress_fraction:
9816  * @entry: a #GtkEntry
9817  * @fraction: fraction of the task that's been completed
9818  *
9819  * Causes the entry's progress indicator to "fill in" the given
9820  * fraction of the bar. The fraction should be between 0.0 and 1.0,
9821  * inclusive.
9822  *
9823  * Since: 2.16
9824  */
9825 void
9826 gtk_entry_set_progress_fraction (GtkEntry *entry,
9827                                  gdouble   fraction)
9828 {
9829   GtkWidget       *widget;
9830   GtkEntryPrivate *private;
9831   gdouble          old_fraction;
9832   gint x, y, width, height;
9833   gint old_x, old_y, old_width, old_height;
9834
9835   g_return_if_fail (GTK_IS_ENTRY (entry));
9836
9837   widget = GTK_WIDGET (entry);
9838   private = entry->priv;
9839
9840   if (private->progress_pulse_mode)
9841     old_fraction = -1;
9842   else
9843     old_fraction = private->progress_fraction;
9844
9845   if (gtk_widget_is_drawable (widget))
9846     get_progress_area (widget, &old_x, &old_y, &old_width, &old_height);
9847
9848   fraction = CLAMP (fraction, 0.0, 1.0);
9849
9850   private->progress_fraction = fraction;
9851   private->progress_pulse_mode = FALSE;
9852   private->progress_pulse_current = 0.0;
9853
9854   if (gtk_widget_is_drawable (widget))
9855     {
9856       get_progress_area (widget, &x, &y, &width, &height);
9857
9858       if ((x != old_x) || (y != old_y) || (width != old_width) || (height != old_height))
9859         gtk_widget_queue_draw (widget);
9860     }
9861
9862   if (fraction != old_fraction)
9863     g_object_notify (G_OBJECT (entry), "progress-fraction");
9864 }
9865
9866 /**
9867  * gtk_entry_get_progress_fraction:
9868  * @entry: a #GtkEntry
9869  *
9870  * Returns the current fraction of the task that's been completed.
9871  * See gtk_entry_set_progress_fraction().
9872  *
9873  * Return value: a fraction from 0.0 to 1.0
9874  *
9875  * Since: 2.16
9876  */
9877 gdouble
9878 gtk_entry_get_progress_fraction (GtkEntry *entry)
9879 {
9880   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
9881
9882   return entry->priv->progress_fraction;
9883 }
9884
9885 /**
9886  * gtk_entry_set_progress_pulse_step:
9887  * @entry: a #GtkEntry
9888  * @fraction: fraction between 0.0 and 1.0
9889  *
9890  * Sets the fraction of total entry width to move the progress
9891  * bouncing block for each call to gtk_entry_progress_pulse().
9892  *
9893  * Since: 2.16
9894  */
9895 void
9896 gtk_entry_set_progress_pulse_step (GtkEntry *entry,
9897                                    gdouble   fraction)
9898 {
9899   GtkEntryPrivate *private;
9900
9901   g_return_if_fail (GTK_IS_ENTRY (entry));
9902
9903   private = entry->priv;
9904
9905   fraction = CLAMP (fraction, 0.0, 1.0);
9906
9907   if (fraction != private->progress_pulse_fraction)
9908     {
9909       private->progress_pulse_fraction = fraction;
9910
9911       gtk_widget_queue_draw (GTK_WIDGET (entry));
9912
9913       g_object_notify (G_OBJECT (entry), "progress-pulse-step");
9914     }
9915 }
9916
9917 /**
9918  * gtk_entry_get_progress_pulse_step:
9919  * @entry: a #GtkEntry
9920  *
9921  * Retrieves the pulse step set with gtk_entry_set_progress_pulse_step().
9922  *
9923  * Return value: a fraction from 0.0 to 1.0
9924  *
9925  * Since: 2.16
9926  */
9927 gdouble
9928 gtk_entry_get_progress_pulse_step (GtkEntry *entry)
9929 {
9930   g_return_val_if_fail (GTK_IS_ENTRY (entry), 0.0);
9931
9932   return entry->priv->progress_pulse_fraction;
9933 }
9934
9935 /**
9936  * gtk_entry_progress_pulse:
9937  * @entry: a #GtkEntry
9938  *
9939  * Indicates that some progress is made, but you don't know how much.
9940  * Causes the entry's progress indicator to enter "activity mode,"
9941  * where a block bounces back and forth. Each call to
9942  * gtk_entry_progress_pulse() causes the block to move by a little bit
9943  * (the amount of movement per pulse is determined by
9944  * gtk_entry_set_progress_pulse_step()).
9945  *
9946  * Since: 2.16
9947  */
9948 void
9949 gtk_entry_progress_pulse (GtkEntry *entry)
9950 {
9951   GtkEntryPrivate *private;
9952
9953   g_return_if_fail (GTK_IS_ENTRY (entry));
9954
9955   private = entry->priv;
9956
9957   if (private->progress_pulse_mode)
9958     {
9959       if (private->progress_pulse_way_back)
9960         {
9961           private->progress_pulse_current -= private->progress_pulse_fraction;
9962
9963           if (private->progress_pulse_current < 0.0)
9964             {
9965               private->progress_pulse_current = 0.0;
9966               private->progress_pulse_way_back = FALSE;
9967             }
9968         }
9969       else
9970         {
9971           private->progress_pulse_current += private->progress_pulse_fraction;
9972
9973           if (private->progress_pulse_current > 1.0 - private->progress_pulse_fraction)
9974             {
9975               private->progress_pulse_current = 1.0 - private->progress_pulse_fraction;
9976               private->progress_pulse_way_back = TRUE;
9977             }
9978         }
9979     }
9980   else
9981     {
9982       private->progress_fraction = 0.0;
9983       private->progress_pulse_mode = TRUE;
9984       private->progress_pulse_way_back = FALSE;
9985       private->progress_pulse_current = 0.0;
9986     }
9987
9988   gtk_widget_queue_draw (GTK_WIDGET (entry));
9989 }
9990
9991 /**
9992  * gtk_entry_set_placeholder_text:
9993  * @entry: a #GtkEntry
9994  * @text: a string to be displayed when @entry is empty an unfocused, or %NULL
9995  *
9996  * Sets text to be displayed in @entry when it is empty and unfocused.
9997  * This can be used to give a visual hint of the expected contents of
9998  * the #GtkEntry.
9999  *
10000  * Note that since the placeholder text gets removed when the entry
10001  * received focus, using this feature is a bit problematic if the entry
10002  * is given the initial focus in a window. Sometimes this can be
10003  * worked around by delaying the initial focus setting until the
10004  * first key event arrives.
10005  *
10006  * Since: 3.2
10007  **/
10008 void
10009 gtk_entry_set_placeholder_text (GtkEntry    *entry,
10010                                 const gchar *text)
10011 {
10012   GtkEntryPrivate *priv;
10013
10014   g_return_if_fail (GTK_IS_ENTRY (entry));
10015
10016   priv = entry->priv;
10017
10018   if (g_strcmp0 (priv->placeholder_text, text) == 0)
10019     return;
10020
10021   g_free (priv->placeholder_text);
10022   priv->placeholder_text = g_strdup (text);
10023
10024   gtk_entry_recompute (entry);
10025
10026   g_object_notify (G_OBJECT (entry), "placeholder-text");
10027 }
10028
10029 /**
10030  * gtk_entry_get_placeholder_text:
10031  * @entry: a #GtkEntry
10032  *
10033  * Retrieves the text that will be displayed when @entry is empty and unfocused
10034  *
10035  * Returns: a pointer to the placeholder text as a string. This string points to internally allocated
10036  * storage in the widget and must not be freed, modified or stored.
10037  *
10038  * Since: 3.2
10039  **/
10040 const gchar *
10041 gtk_entry_get_placeholder_text (GtkEntry *entry)
10042 {
10043   GtkEntryPrivate *priv;
10044
10045   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10046
10047   priv = entry->priv;
10048
10049   return priv->placeholder_text;
10050 }
10051
10052 /* Caps Lock warning for password entries */
10053
10054 static void
10055 show_capslock_feedback (GtkEntry    *entry,
10056                         const gchar *text)
10057 {
10058   GtkEntryPrivate *priv = entry->priv;
10059
10060   if (gtk_entry_get_icon_storage_type (entry, GTK_ENTRY_ICON_SECONDARY) == GTK_IMAGE_EMPTY)
10061     {
10062       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CAPS_LOCK_WARNING);
10063       gtk_entry_set_icon_activatable (entry, GTK_ENTRY_ICON_SECONDARY, FALSE);
10064       priv->caps_lock_warning_shown = TRUE;
10065     }
10066
10067   if (priv->caps_lock_warning_shown)
10068     gtk_entry_set_icon_tooltip_text (entry, GTK_ENTRY_ICON_SECONDARY, text);
10069   else
10070     g_warning ("Can't show Caps Lock warning, since secondary icon is set");
10071 }
10072
10073 static void
10074 remove_capslock_feedback (GtkEntry *entry)
10075 {
10076   GtkEntryPrivate *priv = entry->priv;
10077
10078   if (priv->caps_lock_warning_shown)
10079     {
10080       gtk_entry_set_icon_from_stock (entry, GTK_ENTRY_ICON_SECONDARY, NULL);
10081       priv->caps_lock_warning_shown = FALSE;
10082     } 
10083 }
10084
10085 static void
10086 keymap_state_changed (GdkKeymap *keymap, 
10087                       GtkEntry  *entry)
10088 {
10089   GtkEntryPrivate *priv = entry->priv;
10090   char *text = NULL;
10091
10092   if (gtk_entry_get_display_mode (entry) != DISPLAY_NORMAL && priv->caps_lock_warning)
10093     { 
10094       if (gdk_keymap_get_caps_lock_state (keymap))
10095         text = _("Caps Lock is on");
10096     }
10097
10098   if (text)
10099     show_capslock_feedback (entry, text);
10100   else
10101     remove_capslock_feedback (entry);
10102 }
10103
10104 /*
10105  * _gtk_entry_set_is_cell_renderer:
10106  * @entry: a #GtkEntry
10107  * @is_cell_renderer: new value
10108  *
10109  * This is a helper function for GtkComboBox. A GtkEntry in a GtkComboBox
10110  * is supposed to behave like a GtkCellEditable when placed in a combo box.
10111  *
10112  * I.e take up its allocation and get GtkEntry->is_cell_renderer = TRUE.
10113  *
10114  */
10115 void
10116 _gtk_entry_set_is_cell_renderer (GtkEntry *entry,
10117                                  gboolean  is_cell_renderer)
10118 {
10119   entry->priv->is_cell_renderer = is_cell_renderer;
10120 }
10121
10122 /**
10123  * gtk_entry_set_input_purpose:
10124  * @entry: a #GtkEntry
10125  * @purpose: the purpose
10126  *
10127  * Sets the #GtkEntry:input-purpose property which
10128  * can be used by on-screen keyboards and other input
10129  * methods to adjust their behaviour.
10130  *
10131  * Since: 3.6
10132  */
10133 void
10134 gtk_entry_set_input_purpose (GtkEntry        *entry,
10135                              GtkInputPurpose  purpose)
10136
10137 {
10138   g_return_if_fail (GTK_IS_ENTRY (entry));
10139
10140   if (gtk_entry_get_input_purpose (entry) != purpose)
10141     {
10142       g_object_set (G_OBJECT (entry->priv->im_context),
10143                     "input-purpose", purpose,
10144                     NULL);
10145
10146       g_object_notify (G_OBJECT (entry), "input-purpose");
10147     }
10148 }
10149
10150 /**
10151  * gtk_entry_get_input_purpose:
10152  * @entry: a #GtkEntry
10153  *
10154  * Gets the value of the #GtkEntry:input-purpose property.
10155  *
10156  * Since: 3.6
10157  */
10158 GtkInputPurpose
10159 gtk_entry_get_input_purpose (GtkEntry *entry)
10160 {
10161   GtkInputPurpose purpose;
10162
10163   g_return_val_if_fail (GTK_IS_ENTRY (entry), GTK_INPUT_PURPOSE_FREE_FORM);
10164
10165   g_object_get (G_OBJECT (entry->priv->im_context),
10166                 "input-purpose", &purpose,
10167                 NULL);
10168
10169   return purpose;
10170 }
10171
10172 /**
10173  * gtk_entry_set_input_hints:
10174  * @entry: a #GtkEntry
10175  * @hints: the hints
10176  *
10177  * Sets the #GtkEntry:input-hints property, which
10178  * allows input methods to fine-tune their behaviour.
10179  *
10180  * Since: 3.6
10181  */
10182 void
10183 gtk_entry_set_input_hints (GtkEntry      *entry,
10184                            GtkInputHints  hints)
10185
10186 {
10187   g_return_if_fail (GTK_IS_ENTRY (entry));
10188
10189   if (gtk_entry_get_input_hints (entry) != hints)
10190     {
10191       g_object_set (G_OBJECT (entry->priv->im_context),
10192                     "input-hints", hints,
10193                     NULL);
10194
10195       g_object_notify (G_OBJECT (entry), "input-hints");
10196     }
10197 }
10198
10199 /**
10200  * gtk_entry_get_input_hints:
10201  * @entry: a #GtkEntry
10202  *
10203  * Gets the value of the #GtkEntry:input-hints property.
10204  *
10205  * Since: 3.6
10206  */
10207 GtkInputHints
10208 gtk_entry_get_input_hints (GtkEntry *entry)
10209 {
10210   GtkInputHints hints;
10211
10212   g_return_val_if_fail (GTK_IS_ENTRY (entry), GTK_INPUT_HINT_NONE);
10213
10214   g_object_get (G_OBJECT (entry->priv->im_context),
10215                 "input-hints", &hints,
10216                 NULL);
10217
10218   return hints;
10219 }
10220
10221 /**
10222  * gtk_entry_set_attributes:
10223  * @entry: a #GtkEntry
10224  * @attrs: a #PangoAttrList
10225  *
10226  * Sets a #PangoAttrList; the attributes in the list are applied to the
10227  * entry text.
10228  *
10229  * Since: 3.6
10230  */
10231 void
10232 gtk_entry_set_attributes (GtkEntry      *entry,
10233                           PangoAttrList *attrs)
10234 {
10235   GtkEntryPrivate *priv = entry->priv;
10236   g_return_if_fail (GTK_IS_ENTRY (entry));
10237
10238   if (attrs)
10239     pango_attr_list_ref (attrs);
10240
10241   if (priv->attrs)
10242     pango_attr_list_unref (priv->attrs);
10243   priv->attrs = attrs;
10244
10245   g_object_notify (G_OBJECT (entry), "attributes");
10246
10247   gtk_entry_recompute (entry);
10248   gtk_widget_queue_resize (GTK_WIDGET (entry));
10249 }
10250
10251 /**
10252  * gtk_entry_get_attributes:
10253  * @entry: a #GtkEntry
10254  *
10255  * Gets the attribute list that was set on the entry using
10256  * gtk_entry_set_attributes(), if any.
10257  *
10258  * Return value: (transfer none): the attribute list, or %NULL
10259  *     if none was set.
10260  *
10261  * Since: 3.6
10262  */
10263 PangoAttrList *
10264 gtk_entry_get_attributes (GtkEntry *entry)
10265 {
10266   g_return_val_if_fail (GTK_IS_ENTRY (entry), NULL);
10267
10268   return entry->priv->attrs;
10269 }
10270