Searched defs:text_buffer (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/ui/dialog/
H A Dtext-edit.h99 * @param text_buffer pointer to GtkTextBuffer with the text of the selected text object
102 static void onTextChange (GtkTextBuffer *text_buffer, TextEdit *self);
129 * @param text_buffer pointer to the GtkTextBuffer with the text of the selected text object.
132 static void onStartOffsetChange(GtkTextBuffer *text_buffer, TextEdit *self);
227 GtkTextBuffer *text_buffer; member in class:Inkscape::UI::Dialog::TextEdit
H A Dtext-edit.cpp173 text_buffer = gtk_text_buffer_new (NULL);
174 text_view = gtk_text_view_new_with_buffer (text_buffer);
230 g_signal_connect ( G_OBJECT (text_buffer), "changed", G_CALLBACK (onTextChange), this );
327 gtk_text_buffer_set_text (text_buffer, str, strlen (str));
328 gtk_text_buffer_set_modified (text_buffer, FALSE);
333 gtk_text_buffer_set_text (text_buffer, "", 0);
484 if (gtk_text_buffer_get_modified (text_buffer)) {
485 gtk_text_buffer_get_bounds (text_buffer, &start, &end);
486 gchar *str = gtk_text_buffer_get_text (text_buffer, &start, &end, TRUE);
489 gtk_text_buffer_set_modified (text_buffer, FALS
619 onTextChange(GtkTextBuffer *text_buffer, TextEdit *self) argument
[all...]
/inkscape/src/extension/internal/pdfinput/
H A Dsvg-builder.cpp1255 Glib::ustring text_buffer; local
1288 TRACE(("tspan content: %s\n", text_buffer.c_str()));
1293 Inkscape::XML::Node *text_content = _xml_doc->createTextNode(text_buffer.c_str());
1300 text_buffer.clear();
1352 text_buffer.append(1, glyph.code[0]);

Completed in 18 milliseconds