1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/* CTK - The GIMP Toolkit
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 *
 * Copyright (C) 2004-2006 Christian Hammond
 * Copyright (C) 2008 Cody Russell
 * Copyright (C) 2008 Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * Modified by the CTK+ Team and others 1997-2000.  See the AUTHORS
 * file for a list of people on the CTK+ Team.  See the ChangeLog
 * files for a list of changes.  These files are distributed with
 * CTK+ at ftp://ftp.ctk.org/pub/ctk/.
 */

#ifndef __CTK_ENTRY_H__
#define __CTK_ENTRY_H__


#if !defined (__CTK_H_INSIDE__) && !defined (CTK_COMPILATION)
#error "Only <ctk/ctk.h> can be included directly."
#endif

#include <ctk/ctkeditable.h>
#include <ctk/ctkimcontext.h>
#include <ctk/ctkmenu.h>
#include <ctk/ctkentrybuffer.h>
#include <ctk/ctkentrycompletion.h>
#include <ctk/ctkimage.h>
#include <ctk/ctkselection.h>


G_BEGIN_DECLS

#define CTK_TYPE_ENTRY                  (ctk_entry_get_type ())
#define CTK_ENTRY(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), CTK_TYPE_ENTRY, CtkEntry))
#define CTK_ENTRY_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), CTK_TYPE_ENTRY, CtkEntryClass))
#define CTK_IS_ENTRY(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CTK_TYPE_ENTRY))
#define CTK_IS_ENTRY_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), CTK_TYPE_ENTRY))
#define CTK_ENTRY_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), CTK_TYPE_ENTRY, CtkEntryClass))

/**
 * CtkEntryIconPosition:
 * @CTK_ENTRY_ICON_PRIMARY: At the beginning of the entry (depending on the text direction).
 * @CTK_ENTRY_ICON_SECONDARY: At the end of the entry (depending on the text direction).
 *
 * Specifies the side of the entry at which an icon is placed.
 *
 * Since: 2.16
 */
typedef enum
{
  CTK_ENTRY_ICON_PRIMARY,
  CTK_ENTRY_ICON_SECONDARY
} CtkEntryIconPosition;

typedef struct _CtkEntry              CtkEntry;
typedef struct _CtkEntryPrivate       CtkEntryPrivate;
typedef struct _CtkEntryClass         CtkEntryClass;

struct _CtkEntry
{
  /*< private >*/
  CtkWidget  parent_instance;

  CtkEntryPrivate *priv;
};

/**
 * CtkEntryClass:
 * @parent_class: The parent class.
 * @populate_popup: Class handler for the #CtkEntry::populate-popup signal. If
 *   non-%NULL, this will be called to add additional entries to the context
 *   menu when it is displayed.
 * @activate: Class handler for the #CtkEntry::activate signal. The default
 *   implementation calls ctk_window_activate_default() on the entry’s top-level
 *   window.
 * @move_cursor: Class handler for the #CtkEntry::move-cursor signal. The
 *   default implementation specifies the standard #CtkEntry cursor movement
 *   behavior.
 * @insert_at_cursor: Class handler for the #CtkEntry::insert-at-cursor signal.
 *   The default implementation inserts text at the cursor.
 * @delete_from_cursor: Class handler for the #CtkEntry::delete-from-cursor
 *   signal. The default implementation deletes the selection or the specified
 *   number of characters or words.
 * @backspace: Class handler for the #CtkEntry::backspace signal. The default
 *   implementation deletes the selection or a single character or word.
 * @cut_clipboard: Class handler for the #CtkEntry::cut-clipboard signal. The
 *   default implementation cuts the selection, if one exists.
 * @copy_clipboard: Class handler for the #CtkEntry::copy-clipboard signal. The
 *   default implementation copies the selection, if one exists.
 * @paste_clipboard: Class handler for the #CtkEntry::paste-clipboard signal.
 *   The default implementation pastes at the current cursor position or over
 *   the current selection if one exists.
 * @toggle_overwrite: Class handler for the #CtkEntry::toggle-overwrite signal.
 *   The default implementation toggles overwrite mode and blinks the cursor.
 * @get_text_area_size: Calculate the size of the text area, which is its
 *   allocated width and requested height, minus space for margins and borders.
 *   This virtual function must be non-%NULL.
 * @get_frame_size: Calculate the size of the text area frame, which is its
 *   allocated width and requested height, minus space for margins and borders,
 *   and taking baseline and text height into account. This virtual function
 *   must be non-%NULL.
 * @insert_emoji: The Emoji chooser.
 *
 * Class structure for #CtkEntry. All virtual functions have a default
 * implementation. Derived classes may set the virtual function pointers for the
 * signal handlers to %NULL, but must keep @get_text_area_size and
 * @get_frame_size non-%NULL; either use the default implementation, or provide
 * a custom one.
 */
struct _CtkEntryClass
{
  CtkWidgetClass parent_class;

  /* Hook to customize right-click popup */
  void (* populate_popup)   (CtkEntry       *entry,
                             CtkWidget      *popup);

  /* Action signals
   */
  void (* activate)           (CtkEntry             *entry);
  void (* move_cursor)        (CtkEntry             *entry,
			       CtkMovementStep       step,
			       gint                  count,
			       gboolean              extend_selection);
  void (* insert_at_cursor)   (CtkEntry             *entry,
			       const gchar          *str);
  void (* delete_from_cursor) (CtkEntry             *entry,
			       CtkDeleteType         type,
			       gint                  count);
  void (* backspace)          (CtkEntry             *entry);
  void (* cut_clipboard)      (CtkEntry             *entry);
  void (* copy_clipboard)     (CtkEntry             *entry);
  void (* paste_clipboard)    (CtkEntry             *entry);
  void (* toggle_overwrite)   (CtkEntry             *entry);

  /* hooks to add other objects beside the entry (like in CtkSpinButton) */
  void (* get_text_area_size) (CtkEntry       *entry,
			       gint           *x,
			       gint           *y,
			       gint           *width,
			       gint           *height);
  void (* get_frame_size)     (CtkEntry       *entry,
                               gint           *x,
                               gint           *y,
			       gint           *width,
			       gint           *height);
  void (* insert_emoji)       (CtkEntry             *entry);

  /*< private >*/

  /* Padding for future expansion */
  void (*_ctk_reserved1)      (void);
  void (*_ctk_reserved2)      (void);
  void (*_ctk_reserved3)      (void);
  void (*_ctk_reserved4)      (void);
  void (*_ctk_reserved5)      (void);
  void (*_ctk_reserved6)      (void);
};

CDK_AVAILABLE_IN_ALL
GType      ctk_entry_get_type       		(void) G_GNUC_CONST;
CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_entry_new            		(void);
CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_entry_new_with_buffer            (CtkEntryBuffer *buffer);

CDK_AVAILABLE_IN_ALL
CtkEntryBuffer* ctk_entry_get_buffer            (CtkEntry       *entry);
CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_buffer                 (CtkEntry       *entry,
                                                 CtkEntryBuffer *buffer);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_get_text_area              (CtkEntry       *entry,
                                                 CdkRectangle   *text_area);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_visibility 		(CtkEntry      *entry,
						 gboolean       visible);
CDK_AVAILABLE_IN_ALL
gboolean   ctk_entry_get_visibility             (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_invisible_char         (CtkEntry      *entry,
                                                 gunichar       ch);
CDK_AVAILABLE_IN_ALL
gunichar   ctk_entry_get_invisible_char         (CtkEntry      *entry);
CDK_AVAILABLE_IN_ALL
void       ctk_entry_unset_invisible_char       (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_has_frame              (CtkEntry      *entry,
                                                 gboolean       setting);
CDK_AVAILABLE_IN_ALL
gboolean   ctk_entry_get_has_frame              (CtkEntry      *entry);

CDK_DEPRECATED_IN_3_4
void             ctk_entry_set_inner_border     (CtkEntry        *entry,
                                                 const CtkBorder *border);
CDK_DEPRECATED_IN_3_4
const CtkBorder* ctk_entry_get_inner_border     (CtkEntry        *entry);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_overwrite_mode         (CtkEntry      *entry,
                                                 gboolean       overwrite);
CDK_AVAILABLE_IN_ALL
gboolean   ctk_entry_get_overwrite_mode         (CtkEntry      *entry);

/* text is truncated if needed */
CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_max_length 		(CtkEntry      *entry,
						 gint           max);
CDK_AVAILABLE_IN_ALL
gint       ctk_entry_get_max_length             (CtkEntry      *entry);
CDK_AVAILABLE_IN_ALL
guint16    ctk_entry_get_text_length            (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_activates_default      (CtkEntry      *entry,
                                                 gboolean       setting);
CDK_AVAILABLE_IN_ALL
gboolean   ctk_entry_get_activates_default      (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_width_chars            (CtkEntry      *entry,
                                                 gint           n_chars);
CDK_AVAILABLE_IN_ALL
gint       ctk_entry_get_width_chars            (CtkEntry      *entry);

CDK_AVAILABLE_IN_3_12
void       ctk_entry_set_max_width_chars        (CtkEntry      *entry,
                                                 gint           n_chars);
CDK_AVAILABLE_IN_3_12
gint       ctk_entry_get_max_width_chars        (CtkEntry      *entry);

/* Somewhat more convenient than the CtkEditable generic functions
 */
CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_text                   (CtkEntry      *entry,
                                                 const gchar   *text);
/* returns a reference to the text */
CDK_AVAILABLE_IN_ALL
const gchar* ctk_entry_get_text        (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
PangoLayout* ctk_entry_get_layout               (CtkEntry      *entry);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_get_layout_offsets       (CtkEntry      *entry,
                                                 gint          *x,
                                                 gint          *y);
CDK_AVAILABLE_IN_ALL
void       ctk_entry_set_alignment              (CtkEntry      *entry,
                                                 gfloat         xalign);
CDK_AVAILABLE_IN_ALL
gfloat     ctk_entry_get_alignment              (CtkEntry      *entry);

CDK_AVAILABLE_IN_ALL
void                ctk_entry_set_completion (CtkEntry           *entry,
                                              CtkEntryCompletion *completion);
CDK_AVAILABLE_IN_ALL
CtkEntryCompletion *ctk_entry_get_completion (CtkEntry           *entry);

CDK_AVAILABLE_IN_ALL
gint       ctk_entry_layout_index_to_text_index (CtkEntry      *entry,
                                                 gint           layout_index);
CDK_AVAILABLE_IN_ALL
gint       ctk_entry_text_index_to_layout_index (CtkEntry      *entry,
                                                 gint           text_index);

/* For scrolling cursor appropriately
 */
CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_cursor_hadjustment (CtkEntry      *entry,
                                                 CtkAdjustment *adjustment);
CDK_AVAILABLE_IN_ALL
CtkAdjustment* ctk_entry_get_cursor_hadjustment (CtkEntry      *entry);

/* Progress API
 */
CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_progress_fraction   (CtkEntry     *entry,
                                                  gdouble       fraction);
CDK_AVAILABLE_IN_ALL
gdouble        ctk_entry_get_progress_fraction   (CtkEntry     *entry);

CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_progress_pulse_step (CtkEntry     *entry,
                                                  gdouble       fraction);
CDK_AVAILABLE_IN_ALL
gdouble        ctk_entry_get_progress_pulse_step (CtkEntry     *entry);

CDK_AVAILABLE_IN_ALL
void           ctk_entry_progress_pulse          (CtkEntry     *entry);
CDK_AVAILABLE_IN_3_2
const gchar*   ctk_entry_get_placeholder_text    (CtkEntry             *entry);
CDK_AVAILABLE_IN_3_2
void           ctk_entry_set_placeholder_text    (CtkEntry             *entry,
                                                  const gchar          *text);
/* Setting and managing icons
 */
CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_icon_from_pixbuf            (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  GdkPixbuf            *pixbuf);
CDK_DEPRECATED_IN_3_10_FOR(ctk_entry_set_icon_from_icon_name)<--- There is an unknown macro here somewhere. Configuration is required. If CDK_DEPRECATED_IN_3_10_FOR is a macro then please configure it.
void           ctk_entry_set_icon_from_stock             (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  const gchar          *stock_id);
CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_icon_from_icon_name         (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  const gchar          *icon_name);
CDK_AVAILABLE_IN_ALL
void           ctk_entry_set_icon_from_gicon             (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  GIcon                *icon);
CDK_AVAILABLE_IN_ALL
CtkImageType ctk_entry_get_icon_storage_type             (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
GdkPixbuf*   ctk_entry_get_icon_pixbuf                   (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_DEPRECATED_IN_3_10_FOR(ctk_entry_get_icon_name)
const gchar* ctk_entry_get_icon_stock                    (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
const gchar* ctk_entry_get_icon_name                     (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
GIcon*       ctk_entry_get_icon_gicon                    (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_set_icon_activatable              (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  gboolean              activatable);
CDK_AVAILABLE_IN_ALL
gboolean     ctk_entry_get_icon_activatable              (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_set_icon_sensitive                (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  gboolean              sensitive);
CDK_AVAILABLE_IN_ALL
gboolean     ctk_entry_get_icon_sensitive                (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
gint         ctk_entry_get_icon_at_pos                   (CtkEntry             *entry,
							  gint                  x,
							  gint                  y);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_set_icon_tooltip_text             (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  const gchar          *tooltip);
CDK_AVAILABLE_IN_ALL
gchar *      ctk_entry_get_icon_tooltip_text             (CtkEntry             *entry,
                                                          CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_set_icon_tooltip_markup           (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  const gchar          *tooltip);
CDK_AVAILABLE_IN_ALL
gchar *      ctk_entry_get_icon_tooltip_markup           (CtkEntry             *entry,
                                                          CtkEntryIconPosition  icon_pos);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_set_icon_drag_source              (CtkEntry             *entry,
							  CtkEntryIconPosition  icon_pos,
							  CtkTargetList        *target_list,
							  CdkDragAction         actions);
CDK_AVAILABLE_IN_ALL
gint         ctk_entry_get_current_icon_drag_source      (CtkEntry             *entry);
CDK_AVAILABLE_IN_ALL
void         ctk_entry_get_icon_area                     (CtkEntry             *entry,
                                                          CtkEntryIconPosition  icon_pos,
                                                          CdkRectangle         *icon_area);

CDK_AVAILABLE_IN_ALL
gboolean    ctk_entry_im_context_filter_keypress         (CtkEntry             *entry,
                                                          CdkEventKey          *event);
CDK_AVAILABLE_IN_ALL
void        ctk_entry_reset_im_context                   (CtkEntry             *entry);

CDK_AVAILABLE_IN_3_6
void            ctk_entry_set_input_purpose                  (CtkEntry             *entry,
                                                              CtkInputPurpose       purpose);
CDK_AVAILABLE_IN_3_6
CtkInputPurpose ctk_entry_get_input_purpose                  (CtkEntry             *entry);

CDK_AVAILABLE_IN_3_6
void            ctk_entry_set_input_hints                    (CtkEntry             *entry,
                                                              CtkInputHints         hints);
CDK_AVAILABLE_IN_3_6
CtkInputHints   ctk_entry_get_input_hints                    (CtkEntry             *entry);

CDK_AVAILABLE_IN_3_6
void            ctk_entry_set_attributes                     (CtkEntry             *entry,
                                                              PangoAttrList        *attrs);
CDK_AVAILABLE_IN_3_6
PangoAttrList  *ctk_entry_get_attributes                     (CtkEntry             *entry);

CDK_AVAILABLE_IN_3_10
void            ctk_entry_set_tabs                           (CtkEntry             *entry,
                                                              PangoTabArray        *tabs);

CDK_AVAILABLE_IN_3_10
PangoTabArray  *ctk_entry_get_tabs                           (CtkEntry             *entry);

CDK_AVAILABLE_IN_3_16
void           ctk_entry_grab_focus_without_selecting        (CtkEntry             *entry);

G_END_DECLS

#endif /* __CTK_ENTRY_H__ */