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