Update to 24f58c58bb8d22c0e8e6c5ce43c536c47b719bc6
[gnt.git] / gntentry.h
blob8515563618c270778bea1b8d815f29e0857d90d8
1 /**
2 * @file gntentry.h Entry API
3 * @ingroup gnt
4 */
5 /*
6 * GNT - The GLib Ncurses Toolkit
8 * GNT is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution.
12 * This library is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
27 #ifndef GNT_ENTRY_H
28 #define GNT_ENTRY_H
30 #include "gntwidget.h"
31 #include "gnt.h"
32 #include "gntcolors.h"
33 #include "gntkeys.h"
35 #define GNT_TYPE_ENTRY (gnt_entry_get_gtype())
36 #define GNT_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_ENTRY, GntEntry))
37 #define GNT_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_ENTRY, GntEntryClass))
38 #define GNT_IS_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_ENTRY))
39 #define GNT_IS_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GNT_TYPE_ENTRY))
40 #define GNT_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GNT_TYPE_ENTRY, GntEntryClass))
42 #define GNT_ENTRY_FLAGS(obj) (GNT_ENTRY(obj)->priv.flags)
43 #define GNT_ENTRY_SET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) |= flags)
44 #define GNT_ENTRY_UNSET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) &= ~(flags))
46 #define ENTRY_CHAR '_' /* The character to use to fill in the blank places */
48 typedef struct _GntEntry GntEntry;
49 typedef struct _GntEntryPriv GntEntryPriv;
50 typedef struct _GntEntryClass GntEntryClass;
51 typedef struct _GntEntryKillRing GntEntryKillRing;
53 typedef enum
55 GNT_ENTRY_FLAG_ALPHA = 1 << 0, /* Only alpha */
56 GNT_ENTRY_FLAG_INT = 1 << 1, /* Only integer */
57 GNT_ENTRY_FLAG_NO_SPACE = 1 << 2, /* No blank space is allowed */
58 GNT_ENTRY_FLAG_NO_PUNCT = 1 << 3, /* No punctuations */
59 GNT_ENTRY_FLAG_MASK = 1 << 4, /* Mask the inputs */
60 } GntEntryFlag;
62 #define GNT_ENTRY_FLAG_ALL (GNT_ENTRY_FLAG_ALPHA | GNT_ENTRY_FLAG_INT)
64 struct _GntEntry
66 GntWidget parent;
68 GntEntryFlag flag;
70 char *start;
71 char *end;
72 char *scroll; /* Current scrolling position */
73 char *cursor; /* Cursor location */
74 /* 0 <= cursor - scroll < widget-width */
76 size_t buffer; /* Size of the buffer */
78 int max; /* 0 means infinite */
79 gboolean masked;
81 GList *history; /* History of the strings. User can use this by pressing ctrl+up/down */
82 int histlength; /* How long can the history be? */
84 GList *suggests; /* List of suggestions */
85 gboolean word; /* Are the suggestions for only a word, or for the whole thing? */
86 gboolean always; /* Should the list of suggestions show at all times, or only on tab-press? */
87 GntWidget *ddown; /* The dropdown with the suggested list */
88 GntEntryKillRing *killring; /**< @since 2.3.0 */
91 struct _GntEntryClass
93 GntWidgetClass parent;
95 void (*text_changed)(GntEntry *entry);
96 void (*gnt_reserved1)(void);
97 void (*gnt_reserved2)(void);
98 void (*gnt_reserved3)(void);
99 void (*gnt_reserved4)(void);
102 G_BEGIN_DECLS
105 * @return GType for GntEntry.
107 GType gnt_entry_get_gtype(void);
110 * Create a new GntEntry.
112 * @param text The text in the new entry box.
114 * @return The newly created entry box.
116 GntWidget * gnt_entry_new(const char *text);
119 * Set the maximum length of the text in the entry box.
121 * @param entry The entry box.
122 * @param max The maximum length for text. A value of 0 means infinite length.
124 void gnt_entry_set_max(GntEntry *entry, int max);
127 * Set the text in an entry box.
129 * @param entry The entry box.
130 * @param text The text to set in the box.
132 void gnt_entry_set_text(GntEntry *entry, const char *text);
135 * Set flags an entry box.
137 * @param entry The entry box.
138 * @param flag The flags to set for the entry box.
140 void gnt_entry_set_flag(GntEntry *entry, GntEntryFlag flag);
143 * Get the text in an entry box.
145 * @param entry The entry box.
147 * @return The current text in the entry box.
149 const char *gnt_entry_get_text(GntEntry *entry);
152 * Clear the text in the entry box.
154 * @param entry The entry box.
156 void gnt_entry_clear(GntEntry *entry);
159 * Set whether the text in the entry box should be masked for display.
161 * @param entry The entry box.
162 * @param set @c TRUE if the text should be masked, @c FALSE otherwise.
164 void gnt_entry_set_masked(GntEntry *entry, gboolean set);
167 * Add a text to the history list for the text. The history length for the
168 * entry box needs to be set first by gnt_entry_set_history_length.
170 * @param entry The entry box.
171 * @param text A new entry for the history list.
173 void gnt_entry_add_to_history(GntEntry *entry, const char *text);
176 * Set the length of history for the entry box.
178 * @param entry The entry box.
179 * @param num The maximum length of the history.
181 void gnt_entry_set_history_length(GntEntry *entry, int num);
184 * Set whether the suggestions are for the entire entry box, or for each
185 * individual word in the entry box.
187 * @param entry The entry box.
188 * @param word @c TRUE if the suggestions are for individual words, @c FALSE otherwise.
190 void gnt_entry_set_word_suggest(GntEntry *entry, gboolean word);
193 * Set whether to always display the suggestions list, or only when the
194 * tab-completion key is pressed (the TAB key, by default).
196 * @param entry The entry box.
197 * @param always @c TRUE if the suggestion list should always be displayed.
199 void gnt_entry_set_always_suggest(GntEntry *entry, gboolean always);
202 * Add an item to the suggestion list.
204 * @param entry The entry box.
205 * @param text An item to add to the suggestion list.
207 void gnt_entry_add_suggest(GntEntry *entry, const char *text);
210 * Remove an entry from the suggestion list.
212 * @param entry The entry box.
213 * @param text The item to remove from the suggestion list.
215 void gnt_entry_remove_suggest(GntEntry *entry, const char *text);
217 G_END_DECLS
219 #endif /* GNT_ENTRY_H */