]> Pileus Git - ~andy/gtk/blob - gtk/gtkentry.h
Export privately. Adjust all callers.
[~andy/gtk] / gtk / gtkentry.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_ENTRY_H__
28 #define __GTK_ENTRY_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkeditable.h>
33 #include <gtk/gtkimcontext.h>
34 #include <gtk/gtkmenu.h>
35 #include <gtk/gtkentrycompletion.h>
36 #include <pango/pango.h>
37
38 G_BEGIN_DECLS
39
40 #define GTK_TYPE_ENTRY                  (gtk_entry_get_type ())
41 #define GTK_ENTRY(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ENTRY, GtkEntry))
42 #define GTK_ENTRY_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ENTRY, GtkEntryClass))
43 #define GTK_IS_ENTRY(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ENTRY))
44 #define GTK_IS_ENTRY_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ENTRY))
45 #define GTK_ENTRY_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ENTRY, GtkEntryClass))
46
47
48 typedef struct _GtkEntry       GtkEntry;
49 typedef struct _GtkEntryClass  GtkEntryClass;
50
51 struct _GtkEntry
52 {
53   GtkWidget  widget;
54
55   gchar     *text;
56
57   guint      editable : 1;
58   guint      visible  : 1;
59   guint      overwrite_mode : 1;
60   guint      in_drag : 1;       /* Dragging within the selection */
61
62   guint16 text_length;  /* length in use, in chars */
63   guint16 text_max_length;
64
65   /*< private >*/
66   GdkWindow *text_area;
67   GtkIMContext *im_context;
68   GtkWidget   *popup_menu;
69   
70   gint         current_pos;
71   gint         selection_bound;
72   
73   PangoLayout *cached_layout;
74
75   guint        cache_includes_preedit : 1;
76   guint        need_im_reset          : 1;
77   guint        has_frame              : 1;
78   guint        activates_default      : 1;
79   guint        cursor_visible         : 1;
80   guint        in_click               : 1;      /* Flag so we don't select all when clicking in entry to focus in */
81   guint        is_cell_renderer       : 1;
82   guint        editing_canceled       : 1; /* Only used by GtkCellRendererText */
83   guint        mouse_cursor_obscured  : 1;
84   guint        select_words           : 1;
85   guint        select_lines           : 1;
86   guint        resolved_dir           : 4; /* PangoDirection */
87   guint        truncate_multiline     : 1;
88
89   guint   button;
90   guint   blink_timeout;
91   guint   recompute_idle;
92   gint    scroll_offset;
93   gint    ascent;       /* font ascent, in pango units  */
94   gint    descent;      /* font descent, in pango units  */
95   
96   guint16 text_size;    /* allocated size, in bytes */
97   guint16 n_bytes;      /* length in use, in bytes */
98
99   guint16 preedit_length;       /* length of preedit string, in bytes */
100   guint16 preedit_cursor;       /* offset of cursor within preedit string, in chars */
101
102   gint dnd_position;            /* In chars, -1 == no DND cursor */
103
104   gint drag_start_x;
105   gint drag_start_y;
106   
107   gunichar invisible_char;
108
109   gint width_chars;
110 };
111
112 struct _GtkEntryClass
113 {
114   GtkWidgetClass parent_class;
115
116   /* Hook to customize right-click popup */
117   void (* populate_popup)   (GtkEntry       *entry,
118                              GtkMenu        *menu);
119   
120   /* Action signals
121    */
122   void (* activate)           (GtkEntry       *entry);
123   void (* move_cursor)        (GtkEntry       *entry,
124                                GtkMovementStep step,
125                                gint            count,
126                                gboolean        extend_selection);
127   void (* insert_at_cursor)   (GtkEntry       *entry,
128                                const gchar    *str);
129   void (* delete_from_cursor) (GtkEntry       *entry,
130                                GtkDeleteType   type,
131                                gint            count);
132   void (* backspace)          (GtkEntry       *entry);
133   void (* cut_clipboard)      (GtkEntry       *entry);
134   void (* copy_clipboard)     (GtkEntry       *entry);
135   void (* paste_clipboard)    (GtkEntry       *entry);
136   void (* toggle_overwrite)   (GtkEntry       *entry);
137
138   /* Padding for future expansion */
139   void (*_gtk_reserved1) (void);
140   void (*_gtk_reserved2) (void);
141   void (*_gtk_reserved3) (void);
142 };
143
144 GType      gtk_entry_get_type                   (void) G_GNUC_CONST;
145 GtkWidget* gtk_entry_new                        (void);
146 void       gtk_entry_set_visibility             (GtkEntry      *entry,
147                                                  gboolean       visible);
148 gboolean   gtk_entry_get_visibility             (GtkEntry      *entry);
149 void       gtk_entry_set_invisible_char         (GtkEntry      *entry,
150                                                  gunichar       ch);
151 gunichar   gtk_entry_get_invisible_char         (GtkEntry      *entry);
152 void       gtk_entry_set_has_frame              (GtkEntry      *entry,
153                                                  gboolean       setting);
154 gboolean   gtk_entry_get_has_frame              (GtkEntry      *entry);
155 void       gtk_entry_set_inner_border                (GtkEntry        *entry,
156                                                       const GtkBorder *border);
157 G_CONST_RETURN GtkBorder* gtk_entry_get_inner_border (GtkEntry        *entry);
158 /* text is truncated if needed */
159 void       gtk_entry_set_max_length             (GtkEntry      *entry,
160                                                  gint           max);
161 gint       gtk_entry_get_max_length             (GtkEntry      *entry);
162 void       gtk_entry_set_activates_default      (GtkEntry      *entry,
163                                                  gboolean       setting);
164 gboolean   gtk_entry_get_activates_default      (GtkEntry      *entry);
165
166 void       gtk_entry_set_width_chars            (GtkEntry      *entry,
167                                                  gint           n_chars);
168 gint       gtk_entry_get_width_chars            (GtkEntry      *entry);
169
170 /* Somewhat more convenient than the GtkEditable generic functions
171  */
172 void       gtk_entry_set_text                   (GtkEntry      *entry,
173                                                  const gchar   *text);
174 /* returns a reference to the text */
175 G_CONST_RETURN gchar* gtk_entry_get_text        (GtkEntry      *entry);
176
177 PangoLayout* gtk_entry_get_layout               (GtkEntry      *entry);
178 void         gtk_entry_get_layout_offsets       (GtkEntry      *entry,
179                                                  gint          *x,
180                                                  gint          *y);
181 void       gtk_entry_set_alignment              (GtkEntry      *entry,
182                                                  gfloat         xalign);
183 gfloat     gtk_entry_get_alignment              (GtkEntry      *entry);
184
185 void                gtk_entry_set_completion (GtkEntry           *entry,
186                                               GtkEntryCompletion *completion);
187 GtkEntryCompletion *gtk_entry_get_completion (GtkEntry           *entry);
188
189 gint       gtk_entry_layout_index_to_text_index (GtkEntry      *entry,
190                                                  gint           layout_index);
191 gint       gtk_entry_text_index_to_layout_index (GtkEntry      *entry,
192                                                  gint           text_index);
193
194
195 /* Deprecated compatibility functions
196  */
197
198 #ifndef GTK_DISABLE_DEPRECATED
199 GtkWidget* gtk_entry_new_with_max_length        (gint           max);
200 void       gtk_entry_append_text                (GtkEntry      *entry,
201                                                  const gchar   *text);
202 void       gtk_entry_prepend_text               (GtkEntry      *entry,
203                                                  const gchar   *text);
204 void       gtk_entry_set_position               (GtkEntry      *entry,
205                                                  gint           position);
206 void       gtk_entry_select_region              (GtkEntry      *entry,
207                                                  gint           start,
208                                                  gint           end);
209 void       gtk_entry_set_editable               (GtkEntry      *entry,
210                                                  gboolean       editable);
211 #endif /* GTK_DISABLE_DEPRECATED */
212
213 G_END_DECLS
214
215 #endif /* __GTK_ENTRY_H__ */