1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gtk.EditableT;
26 
27 public  import glib.Str;
28 public  import gobject.Signals;
29 public  import gtkc.gdktypes;
30 public  import gtkc.gtk;
31 public  import gtkc.gtktypes;
32 
33 
34 /**
35  * The #GtkEditable interface is an interface which should be implemented by
36  * text editing widgets, such as #GtkEntry and #GtkSpinButton. It contains functions
37  * for generically manipulating an editable widget, a large number of action
38  * signals used for key bindings, and several signals that an application can
39  * connect to to modify the behavior of a widget.
40  * 
41  * As an example of the latter usage, by connecting
42  * the following handler to #GtkEditable::insert-text, an application
43  * can convert all entry into a widget into uppercase.
44  * 
45  * ## Forcing entry to uppercase.
46  * 
47  * |[<!-- language="C" -->
48  * #include <ctype.h>;
49  * 
50  * void
51  * insert_text_handler (GtkEditable *editable,
52  * const gchar *text,
53  * gint         length,
54  * gint        *position,
55  * gpointer     data)
56  * {
57  * gchar *result = g_utf8_strup (text, length);
58  * 
59  * g_signal_handlers_block_by_func (editable,
60  * (gpointer) insert_text_handler, data);
61  * gtk_editable_insert_text (editable, result, length, position);
62  * g_signal_handlers_unblock_by_func (editable,
63  * (gpointer) insert_text_handler, data);
64  * 
65  * g_signal_stop_emission_by_name (editable, "insert_text");
66  * 
67  * g_free (result);
68  * }
69  * ]|
70  */
71 public template EditableT(TStruct)
72 {
73 	/** Get the main Gtk struct */
74 	public GtkEditable* getEditableStruct()
75 	{
76 		return cast(GtkEditable*)getStruct();
77 	}
78 
79 
80 	/**
81 	 * Copies the contents of the currently selected content in the editable and
82 	 * puts it on the clipboard.
83 	 */
84 	public void copyClipboard()
85 	{
86 		gtk_editable_copy_clipboard(getEditableStruct());
87 	}
88 
89 	/**
90 	 * Removes the contents of the currently selected content in the editable and
91 	 * puts it on the clipboard.
92 	 */
93 	public void cutClipboard()
94 	{
95 		gtk_editable_cut_clipboard(getEditableStruct());
96 	}
97 
98 	/**
99 	 * Deletes the currently selected text of the editable.
100 	 * This call doesn’t do anything if there is no selected text.
101 	 */
102 	public void deleteSelection()
103 	{
104 		gtk_editable_delete_selection(getEditableStruct());
105 	}
106 
107 	/**
108 	 * Deletes a sequence of characters. The characters that are deleted are
109 	 * those characters at positions from @start_pos up to, but not including
110 	 * @end_pos. If @end_pos is negative, then the characters deleted
111 	 * are those from @start_pos to the end of the text.
112 	 *
113 	 * Note that the positions are specified in characters, not bytes.
114 	 *
115 	 * Params:
116 	 *     startPos = start position
117 	 *     endPos = end position
118 	 */
119 	public void deleteText(int startPos, int endPos)
120 	{
121 		gtk_editable_delete_text(getEditableStruct(), startPos, endPos);
122 	}
123 
124 	/**
125 	 * Retrieves a sequence of characters. The characters that are retrieved
126 	 * are those characters at positions from @start_pos up to, but not
127 	 * including @end_pos. If @end_pos is negative, then the characters
128 	 * retrieved are those characters from @start_pos to the end of the text.
129 	 *
130 	 * Note that positions are specified in characters, not bytes.
131 	 *
132 	 * Params:
133 	 *     startPos = start of text
134 	 *     endPos = end of text
135 	 *
136 	 * Return: a pointer to the contents of the widget as a
137 	 *     string. This string is allocated by the #GtkEditable
138 	 *     implementation and should be freed by the caller.
139 	 */
140 	public string getChars(int startPos, int endPos)
141 	{
142 		return Str.toString(gtk_editable_get_chars(getEditableStruct(), startPos, endPos));
143 	}
144 
145 	/**
146 	 * Retrieves whether @editable is editable. See
147 	 * gtk_editable_set_editable().
148 	 *
149 	 * Return: %TRUE if @editable is editable.
150 	 */
151 	public bool getEditable()
152 	{
153 		return gtk_editable_get_editable(getEditableStruct()) != 0;
154 	}
155 
156 	/**
157 	 * Retrieves the current position of the cursor relative to the start
158 	 * of the content of the editable.
159 	 *
160 	 * Note that this position is in characters, not in bytes.
161 	 *
162 	 * Return: the cursor position
163 	 */
164 	public int getPosition()
165 	{
166 		return gtk_editable_get_position(getEditableStruct());
167 	}
168 
169 	/**
170 	 * Retrieves the selection bound of the editable. start_pos will be filled
171 	 * with the start of the selection and @end_pos with end. If no text was
172 	 * selected both will be identical and %FALSE will be returned.
173 	 *
174 	 * Note that positions are specified in characters, not bytes.
175 	 *
176 	 * Params:
177 	 *     startPos = location to store the starting position, or %NULL
178 	 *     endPos = location to store the end position, or %NULL
179 	 *
180 	 * Return: %TRUE if an area is selected, %FALSE otherwise
181 	 */
182 	public bool getSelectionBounds(out int startPos, out int endPos)
183 	{
184 		return gtk_editable_get_selection_bounds(getEditableStruct(), &startPos, &endPos) != 0;
185 	}
186 
187 	/**
188 	 * Inserts @new_text_length bytes of @new_text into the contents of the
189 	 * widget, at position @position.
190 	 *
191 	 * Note that the position is in characters, not in bytes.
192 	 * The function updates @position to point after the newly inserted text.
193 	 *
194 	 * Params:
195 	 *     newText = the text to append
196 	 *     newTextLength = the length of the text in bytes, or -1
197 	 *     position = location of the position text will be inserted at
198 	 */
199 	public void insertText(string newText, int newTextLength, ref int position)
200 	{
201 		gtk_editable_insert_text(getEditableStruct(), Str.toStringz(newText), newTextLength, &position);
202 	}
203 
204 	/**
205 	 * Pastes the content of the clipboard to the current position of the
206 	 * cursor in the editable.
207 	 */
208 	public void pasteClipboard()
209 	{
210 		gtk_editable_paste_clipboard(getEditableStruct());
211 	}
212 
213 	/**
214 	 * Selects a region of text. The characters that are selected are
215 	 * those characters at positions from @start_pos up to, but not
216 	 * including @end_pos. If @end_pos is negative, then the
217 	 * characters selected are those characters from @start_pos to
218 	 * the end of the text.
219 	 *
220 	 * Note that positions are specified in characters, not bytes.
221 	 *
222 	 * Params:
223 	 *     startPos = start of region
224 	 *     endPos = end of region
225 	 */
226 	public void selectRegion(int startPos, int endPos)
227 	{
228 		gtk_editable_select_region(getEditableStruct(), startPos, endPos);
229 	}
230 
231 	/**
232 	 * Determines if the user can edit the text in the editable
233 	 * widget or not.
234 	 *
235 	 * Params:
236 	 *     isEditable = %TRUE if the user is allowed to edit the text
237 	 *         in the widget
238 	 */
239 	public void setEditable(bool isEditable)
240 	{
241 		gtk_editable_set_editable(getEditableStruct(), isEditable);
242 	}
243 
244 	/**
245 	 * Sets the cursor position in the editable to the given value.
246 	 *
247 	 * The cursor is displayed before the character with the given (base 0)
248 	 * index in the contents of the editable. The value must be less than or
249 	 * equal to the number of characters in the editable. A value of -1
250 	 * indicates that the position should be set after the last character
251 	 * of the editable. Note that @position is in characters, not in bytes.
252 	 *
253 	 * Params:
254 	 *     position = the position of the cursor
255 	 */
256 	public void setPosition(int position)
257 	{
258 		gtk_editable_set_position(getEditableStruct(), position);
259 	}
260 
261 	int[string] connectedSignals;
262 
263 	void delegate(EditableIF)[] _onChangedListeners;
264 	@property void delegate(EditableIF)[] onChangedListeners()
265 	{
266 		return _onChangedListeners;
267 	}
268 	/**
269 	 * The ::changed signal is emitted at the end of a single
270 	 * user-visible operation on the contents of the #GtkEditable.
271 	 *
272 	 * E.g., a paste operation that replaces the contents of the
273 	 * selection will cause only one signal emission (even though it
274 	 * is implemented by first deleting the selection, then inserting
275 	 * the new content, and may cause multiple ::notify::text signals
276 	 * to be emitted).
277 	 */
278 	void addOnChanged(void delegate(EditableIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
279 	{
280 		if ( "changed" !in connectedSignals )
281 		{
282 			Signals.connectData(
283 				this,
284 				"changed",
285 				cast(GCallback)&callBackChanged,
286 				cast(void*)cast(EditableIF)this,
287 				null,
288 				connectFlags);
289 			connectedSignals["changed"] = 1;
290 		}
291 		_onChangedListeners ~= dlg;
292 	}
293 	extern(C) static void callBackChanged(GtkEditable* editableStruct, EditableIF _editable)
294 	{
295 		foreach ( void delegate(EditableIF) dlg; _editable.onChangedListeners )
296 		{
297 			dlg(_editable);
298 		}
299 	}
300 
301 	void delegate(int, int, EditableIF)[] _onDeleteTextListeners;
302 	@property void delegate(int, int, EditableIF)[] onDeleteTextListeners()
303 	{
304 		return _onDeleteTextListeners;
305 	}
306 	/**
307 	 * This signal is emitted when text is deleted from
308 	 * the widget by the user. The default handler for
309 	 * this signal will normally be responsible for deleting
310 	 * the text, so by connecting to this signal and then
311 	 * stopping the signal with g_signal_stop_emission(), it
312 	 * is possible to modify the range of deleted text, or
313 	 * prevent it from being deleted entirely. The @start_pos
314 	 * and @end_pos parameters are interpreted as for
315 	 * gtk_editable_delete_text().
316 	 *
317 	 * Params:
318 	 *     startPos = the starting position
319 	 *     endPos = the end position
320 	 */
321 	void addOnDeleteText(void delegate(int, int, EditableIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
322 	{
323 		if ( "delete-text" !in connectedSignals )
324 		{
325 			Signals.connectData(
326 				this,
327 				"delete-text",
328 				cast(GCallback)&callBackDeleteText,
329 				cast(void*)cast(EditableIF)this,
330 				null,
331 				connectFlags);
332 			connectedSignals["delete-text"] = 1;
333 		}
334 		_onDeleteTextListeners ~= dlg;
335 	}
336 	extern(C) static void callBackDeleteText(GtkEditable* editableStruct, int startPos, int endPos, EditableIF _editable)
337 	{
338 		foreach ( void delegate(int, int, EditableIF) dlg; _editable.onDeleteTextListeners )
339 		{
340 			dlg(startPos, endPos, _editable);
341 		}
342 	}
343 
344 	void delegate(string, int, void*, EditableIF)[] _onInsertTextListeners;
345 	@property void delegate(string, int, void*, EditableIF)[] onInsertTextListeners()
346 	{
347 		return _onInsertTextListeners;
348 	}
349 	/**
350 	 * This signal is emitted when text is inserted into
351 	 * the widget by the user. The default handler for
352 	 * this signal will normally be responsible for inserting
353 	 * the text, so by connecting to this signal and then
354 	 * stopping the signal with g_signal_stop_emission(), it
355 	 * is possible to modify the inserted text, or prevent
356 	 * it from being inserted entirely.
357 	 *
358 	 * Params:
359 	 *     newText = the new text to insert
360 	 *     newTextLength = the length of the new text, in bytes,
361 	 *         or -1 if new_text is nul-terminated
362 	 *     position = the position, in characters,
363 	 *         at which to insert the new text. this is an in-out
364 	 *         parameter.  After the signal emission is finished, it
365 	 *         should point after the newly inserted text.
366 	 */
367 	void addOnInsertText(void delegate(string, int, void*, EditableIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
368 	{
369 		if ( "insert-text" !in connectedSignals )
370 		{
371 			Signals.connectData(
372 				this,
373 				"insert-text",
374 				cast(GCallback)&callBackInsertText,
375 				cast(void*)cast(EditableIF)this,
376 				null,
377 				connectFlags);
378 			connectedSignals["insert-text"] = 1;
379 		}
380 		_onInsertTextListeners ~= dlg;
381 	}
382 	extern(C) static void callBackInsertText(GtkEditable* editableStruct, char* newText, int newTextLength, void* position, EditableIF _editable)
383 	{
384 		foreach ( void delegate(string, int, void*, EditableIF) dlg; _editable.onInsertTextListeners )
385 		{
386 			dlg(Str.toString(newText), newTextLength, position, _editable);
387 		}
388 	}
389 }