Searched refs:entry (Results 1 - 25 of 34) sorted by relevance

12

/inkscape/src/ui/widget/
H A Dentry.cpp14 #include "entry.h"
16 #include <gtkmm/entry.h>
H A Dcolor-entry.h14 #include <gtkmm/entry.h>
H A Dtext.cpp16 #include <gtkmm/entry.h>
H A Dfont-variants.h16 #include <gtkmm/entry.h>
H A Dlicensor.cpp21 #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 Dentity-entry.cpp21 #include <gtkmm/entry.h>
33 #include "entity-entry.h"
/inkscape/share/extensions/
H A DjessyInk_video.py88 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 Drender_alphabetsoup.py445 for entry in imagelist:
446 if (entry == " "): # leaving room for " " space characters
449 image, width, height = entry
/inkscape/src/
H A Dregistrytool.cpp61 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 Dmain-cmdlineact.cpp75 CmdLineAction * entry = *i; local
76 entry->doIt(context);
/inkscape/src/extension/internal/
H A Dimage-resolution.cpp176 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 Dink-comboboxentry-action.cpp6 * 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 Dink-comboboxentry-action.h45 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 Dege-select-one-action.cpp754 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 Dcr-sel-eng.c1143 *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 Dglyphs.h70 Gtk::Entry *entry; member in class:Inkscape::UI::Dialog::GlyphsPanel
H A Dcalligraphic-profile-rename.h19 #include <gtkmm/entry.h>
H A Dobject-properties.h40 #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 Dsvg-fonts-dialog.h21 #include <gtkmm/entry.h>
100 Gtk::Entry entry; member in class:Inkscape::UI::Dialog::SvgFontsDialog::AttrEntry
H A Dglyphs.cpp17 #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 Dlayer-properties.h20 #include <gtkmm/entry.h>
H A Dxml-tree.h21 #include <gtkmm/entry.h>
H A Dsvg-fonts-dialog.cpp91 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 Dziptool.cpp2167 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 Ddialog-events.cpp18 #include <gtkmm/entry.h>

Completed in 63 milliseconds

12