/inkscape/src/ui/widget/ |
H A D | entry.cpp | 14 #include "entry.h" 16 #include <gtkmm/entry.h>
|
H A D | color-entry.h | 14 #include <gtkmm/entry.h>
|
H A D | text.cpp | 16 #include <gtkmm/entry.h>
|
H A D | font-variants.h | 16 #include <gtkmm/entry.h>
|
H A D | licensor.cpp | 21 #include <gtkmm/entry.h> 23 #include "ui/widget/entity-entry.h" 63 /// \pre it is assumed that the license URI entry is a Gtk::Entry 94 /* add license-specific metadata entry areas */
|
H A D | entity-entry.cpp | 21 #include <gtkmm/entry.h> 33 #include "entity-entry.h"
|
/inkscape/share/extensions/ |
H A D | jessyInk_video.py | 88 for entry in re.findall("url\(#.*\)", etree.tostring(node)): 89 linkId = entry[5:len(entry) - 1] 95 for entry in node.iter(): 96 if entry.attrib.has_key('{' + inkex.NSS['xlink'] + '}href'): 97 linkId = entry.attrib['{' + inkex.NSS['xlink'] + '}href'][1:len(entry.attrib['{' + inkex.NSS['xlink'] + '}href'])] 116 for entry in node.iter(): 117 if entry.attrib.has_key('id'): 118 del entry [all...] |
H A D | render_alphabetsoup.py | 445 for entry in imagelist: 446 if (entry == " "): # leaving room for " " space characters 449 image, width, height = entry
|
/inkscape/src/ |
H A D | registrytool.cpp | 61 for (KeyTableEntry *entry = keyTable; entry->key; entry++) 63 if (keyName.compare(0, entry->strlen, entry->str)==0) 65 rootKey = entry->key; 66 keyName = keyName.substr(entry->strlen);
|
H A D | main-cmdlineact.cpp | 75 CmdLineAction * entry = *i; local 76 entry->doIt(context);
|
/inkscape/src/extension/internal/ |
H A D | image-resolution.cpp | 176 static double exifDouble(ExifEntry *entry, ExifByteOrder byte_order) { argument 177 switch (entry->format) { 179 return double(entry->data[0]); 182 return double(exif_get_short(entry->data, byte_order)); 185 return double(exif_get_long(entry->data, byte_order)); 188 ExifRational r = exif_get_rational(entry->data, byte_order); 192 return double(*(signed char *)entry->data); 195 return double(exif_get_sshort(entry->data, byte_order)); 198 return double(exif_get_slong(entry->data, byte_order)); 201 ExifSRational r = exif_get_srational(entry [all...] |
/inkscape/src/widgets/ |
H A D | ink-comboboxentry-action.cpp | 6 * Displaying a warning if entry text isn't in list. 23 * we must keep track of things like active entry ourselves. 99 action->entry = GTK_ENTRY( g_value_get_object( value )); 148 g_value_set_object (value, action->entry); 229 g_param_spec_object ("entry", 435 ink_comboboxentry_action->entry = GTK_ENTRY(child); 442 // Add pop-up entry completion if required 449 g_object_set_data( G_OBJECT( child ), ink_comboboxentry_action->altx_name, ink_comboboxentry_action->entry ); 526 // Fiddle with entry 527 if( action->entry ) { 898 GtkEntry *entry = action->entry; local [all...] |
H A D | ink-comboboxentry-action.h | 45 GtkEntry *entry; member in struct:_Ink_ComboBoxEntry_Action 53 gchar *text; // Text of active menu item or entry box. 56 gboolean popup; // Do we pop-up an entry-completion dialog? 57 gchar *info; // Text for tooltip info about entry. 61 gchar *warning; // Text for tooltip warning that entry isn't in list.
|
H A D | ege-select-one-action.cpp | 754 GtkEntry *entry = 0; local 765 entry = GTK_ENTRY(child); 766 gtk_entry_set_width_chars(entry, maxUsed); /* replace with property */ 775 gtk_entry_set_completion( entry, complete ); 798 if ( entry && (act->private_data->active == -1) ) { 799 gtk_entry_set_text( entry, act->private_data->activeText ); 946 // Search for matching GtkTreeModel entry 995 GtkEntry *entry = GTK_ENTRY (gtk_bin_get_child (bin)); local 997 text = g_strdup (gtk_entry_get_text (entry));
|
/inkscape/src/libcroco/ |
H A D | cr-sel-eng.c | 1143 *Adds a new handler entry in the handlers entry table. 1186 struct CRPseudoClassSelHandlerEntry *entry = NULL; local 1192 entry = (struct CRPseudoClassSelHandlerEntry *) elem->data; 1193 if (!strcmp ((const char *) entry->name, (const char *) a_name) 1194 && entry->type == a_type) { 1203 entry = (struct CRPseudoClassSelHandlerEntry *) elem->data; 1204 if (entry->name) { 1205 g_free (entry->name); 1206 entry 1228 struct CRPseudoClassSelHandlerEntry *entry = NULL; local 1259 struct CRPseudoClassSelHandlerEntry *entry = NULL; local [all...] |
/inkscape/src/ui/dialog/ |
H A D | glyphs.h | 70 Gtk::Entry *entry; member in class:Inkscape::UI::Dialog::GlyphsPanel
|
H A D | calligraphic-profile-rename.h | 19 #include <gtkmm/entry.h>
|
H A D | object-properties.h | 40 #include <gtkmm/entry.h> 87 Gtk::Entry _entry_id; //the entry for the object ID 89 Gtk::Entry _entry_label; //the entry for the object label 91 Gtk::Entry _entry_title; //the entry for the object title
|
H A D | svg-fonts-dialog.h | 21 #include <gtkmm/entry.h> 100 Gtk::Entry entry; member in class:Inkscape::UI::Dialog::SvgFontsDialog::AttrEntry
|
H A D | glyphs.cpp | 17 #include <gtkmm/entry.h> 335 entry(0), 482 entry = new Gtk::Entry(); 483 conn = entry->signal_changed().connect(sigc::mem_fun(*this, &GlyphsPanel::calcCanInsert)); 485 entry->set_width_chars(18); 486 box->pack_start(*Gtk::manage(entry), Gtk::PACK_SHRINK); 591 if (entry->get_text_length() > 0) { 592 glyphs = entry->get_text(); 633 if (entry->get_selection_bounds(startPos, endPos)) { 635 entry [all...] |
H A D | layer-properties.h | 20 #include <gtkmm/entry.h>
|
H A D | xml-tree.h | 21 #include <gtkmm/entry.h>
|
H A D | svg-fonts-dialog.cpp | 91 Gtk::Entry* entry = Gtk::manage(new Gtk::Entry()); 92 hbox->add(* entry ); 95 entry->signal_changed().connect(sigc::mem_fun(*this, &SvgFontsDialog::on_attr_changed)); 104 this->add(entry); 107 entry.signal_changed().connect(sigc::mem_fun(*this, &SvgFontsDialog::AttrEntry::on_attr_changed)); 112 entry.set_text(t); 133 o->getRepr()->setAttribute((const gchar*) name, this->entry.get_text().c_str());
|
/inkscape/src/util/ |
H A D | ziptool.cpp | 2167 ZipEntry *entry = *iter; local 2168 delete entry; 2301 ZipEntry *entry = *iter; local 2302 entry->setPosition(fileBuf.size()); 2304 std::string fname = entry->getFileName(); 2309 putInt(entry->getCompressionMethod()); //compression method 2312 putLong(entry->getCrc()); //crc32 2313 putLong(entry->getCompressedSize()); 2314 putLong(entry->getUncompressedSize()); 2327 std::vector<unsigned char> &buf = entry 2347 ZipEntry *entry = *iter; local [all...] |
/inkscape/src/ui/ |
H A D | dialog-events.cpp | 18 #include <gtkmm/entry.h>
|