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

/inkscape/src/extension/param/
H A Ddescription.cpp72 Glib::ustring newguitext; local
75 newguitext = g_dpgettext2(NULL, _context, _value);
77 newguitext = _(_value);
83 label = Gtk::manage(new Gtk::Label(Glib::ustring("<b>") +newguitext + Glib::ustring("</b>"), Gtk::ALIGN_START));
88 label = Gtk::manage(new Gtk::Label(newguitext, Gtk::ALIGN_START));
H A Denum.cpp64 Glib::ustring newguitext, newvalue; local
75 newguitext = g_dpgettext2(NULL, node->attribute("msgctxt"), contents);
77 newguitext = _(contents);
80 newguitext = contents;
92 if ( (!newguitext.empty()) && (!newvalue.empty()) ) { // logical error if this is not true here
93 choices = g_slist_append( choices, new enumentry(newvalue, newguitext) );
H A Dradiobutton.cpp79 Glib::ustring * newguitext = NULL; local
87 newguitext = new Glib::ustring(g_dpgettext2(NULL, child_repr->attribute("msgctxt"), contents));
89 newguitext = new Glib::ustring(_(contents));
92 newguitext = new Glib::ustring(contents);
106 if ( (newguitext) && (newvalue) ) { // logical error if this is not true here
107 choices = g_slist_append( choices, new optionentry(newvalue, newguitext) );

Completed in 101 milliseconds