Searched defs:entry (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/ui/dialog/
H A Dglyphs.h70 Gtk::Entry *entry; member in class:Inkscape::UI::Dialog::GlyphsPanel
H A Dsvg-fonts-dialog.h21 #include <gtkmm/entry.h>
100 Gtk::Entry entry; member in class:Inkscape::UI::Dialog::SvgFontsDialog::AttrEntry
H A Dinkscape-preferences.cpp1908 const AspellDictInfo *entry; local
1911 while ( (entry = aspell_dict_info_enumeration_next(dels)) != 0)
1913 languages.push_back(Glib::ustring(entry->name));
1914 langValues.push_back(Glib::ustring(entry->name));
1915 if (!strcmp (entry->name, "en"))
H A Dfilter-effects-dialog.cpp982 EntryAttr* entry = new EntryAttr(attr, tip_text); local
983 add_widget(entry, label);
984 add_attr_widget(entry);
985 return entry;
/inkscape/src/
H A Dmain-cmdlineact.cpp75 CmdLineAction * entry = *i; local
76 entry->doIt(context);
/inkscape/src/widgets/
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 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 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));
H A Dtext-toolbar.cpp1064 * This function sets up the text-tool tool-controls, setting the entry boxes
1245 GtkTreePath * path = gtk_tree_path_new_from_string("3"); // Justify entry
1479 static void sp_text_toolbox_select_cb( GtkEntry* entry, GtkEntryIconPosition /*position*/, GdkEvent /*event*/, gpointer /*data*/ ) { argument
1481 Glib::ustring family = gtk_entry_get_text ( entry );
1548 ink_comboboxentry_action_popup_enable( act ); // Enable entry completion
/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/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/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...]

Completed in 116 milliseconds