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