Searched refs:Entry (Results 1 - 25 of 85) sorted by relevance

1234

/inkscape/src/ui/widget/
H A Dentry.h16 class Entry;
24 * Helperclass for Gtk::Entry widgets.
26 class Entry : public Labelled class in namespace:Inkscape::UI::Widget
29 Entry( Glib::ustring const &label,
35 // TO DO: add methods to access Gtk::Entry widget
37 Gtk::Entry* getEntry() {return (Gtk::Entry*)(_widget);};
H A Dentry.cpp22 Entry::Entry( Glib::ustring const &label, Glib::ustring const &tooltip, function in class:Inkscape::UI::Widget::Entry
26 : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic)
H A Dtext.cpp26 : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic),
34 return static_cast<Gtk::Entry*>(_widget)->get_text().c_str();
41 static_cast<Gtk::Entry*>(_widget)->set_text(text); // FIXME: set correctly
46 return static_cast<Gtk::Entry*>(_widget)->signal_activate();
H A Dcolor-entry.h2 * Entry widget for typing color value in css form
21 class ColorEntry : public Gtk::Entry
H A Dentity-entry.cpp86 Gtk::Entry *e = new Gtk::Entry;
94 delete static_cast<Gtk::Entry*>(_packable);
105 static_cast<Gtk::Entry*>(_packable)->set_text (text ? text : "");
114 static_cast<Gtk::Entry*>(_packable)->set_text (text.c_str());
125 Glib::ustring text = static_cast<Gtk::Entry*>(_packable)->get_text();
/inkscape/src/ui/
H A Ddialog-events.h27 class Entry;
43 void sp_dialog_defocus_callback_cpp(Gtk::Entry *e);
44 void sp_dialog_defocus_on_enter_cpp(Gtk::Entry *e);
/inkscape/src/
H A Dpreferences.h64 class Entry;
102 * @param new_val Entry object containing information about
105 virtual void notify(Preferences::Entry const &new_val) = 0;
121 class Entry { class in class:Inkscape::Preferences
124 ~Entry() {}
125 Entry() : _pref_path(""), _value(NULL) {} // needed to enable use in maps function in class:Inkscape::Preferences::Entry
126 Entry(Entry const &other) : _pref_path(other._pref_path), _value(other._value) {} function in class:Inkscape::Preferences::Entry
219 * Get the full path of the preference described by this Entry.
230 Entry(Gli function in class:Inkscape::Preferences::Entry
[all...]
H A Dselcue.h45 void notify(Preferences::Entry const &val);
H A Dpreferences-test.h22 virtual void notify(Inkscape::Preferences::Entry const &val)
117 Inkscape::Preferences::Entry val = prefs->getEntry("/test/prefentry");
H A Dpreferences.cpp378 std::vector<Preferences::Entry> Preferences::getAllEntries(Glib::ustring const &path)
380 std::vector<Entry> temp;
386 temp.push_back( Entry(path + '/' + g_quark_to_string(alist->key), static_cast<void const*>(alist->value.pointer())) );
412 Preferences::Entry const Preferences::getEntry(Glib::ustring const &pref_path)
416 return Entry(pref_path, v);
571 Entry const val = Preferences::_create_pref_value(notify_path, static_cast<void const*>(new_value.pointer()));
752 bool Preferences::_extractBool(Entry const &v)
762 int Preferences::_extractInt(Entry const &v)
774 double Preferences::_extractDouble(Entry const &v)
780 double Preferences::_extractDouble(Entry cons
[all...]
/inkscape/src/widgets/
H A Dsp-attribute-widget.h27 class Entry;
123 * Gives access to the Gtk::Entry list.
125 std::vector<Gtk::Entry *> get_entries(void) {return _entries;};
160 std::vector<Gtk::Entry *> _entries;
H A Dsp-attribute-widget.cpp49 static void sp_attribute_table_entry_changed (Gtk::Entry *editable, SPAttributeTable *spat);
189 Gtk::Entry *ee = new Gtk::Entry();
265 std::vector<Gtk::Entry *> entries = spat->get_entries();
268 Gtk::Entry* e = entries[i];
284 static void sp_attribute_table_entry_changed ( Gtk::Entry *editable,
290 std::vector<Gtk::Entry *> entries = spat->get_entries();
292 Gtk::Entry *e = entries[i];
305 g_warning ("file %s: line %d: Entry signalled change, but there is no such entry", __FILE__, __LINE__);
/inkscape/src/ui/dialog/
H A Dobject-properties.h87 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 Dglyphs.h17 class Entry;
70 Gtk::Entry *entry;
H A Dcalligraphic-profile-rename.h61 Gtk::Entry _profile_name_entry;
H A Dxml-tree.h216 Gtk::Entry attr_name;
220 Gtk::Entry *name_entry;
/inkscape/src/ui/tools/
H A Drect-tool.h38 virtual void set(const Inkscape::Preferences::Entry& val);
H A Dstar-tool.h37 virtual void set(const Inkscape::Preferences::Entry& val);
H A Dcalligraphic-tool.h52 virtual void set(const Inkscape::Preferences::Entry& val);
H A Ddynamic-base.h44 virtual void set(const Inkscape::Preferences::Entry& val);
H A Dspiral-tool.h40 virtual void set(const Inkscape::Preferences::Entry& val);
H A Dtweak-tool.h80 virtual void set(const Inkscape::Preferences::Entry& val);
H A Dselect-tool.h57 virtual void set(const Inkscape::Preferences::Entry& val);
/inkscape/src/live_effects/
H A Dlpe-perspective_path.h40 virtual void refresh(Gtk::Entry* perspective);
/inkscape/src/extension/param/
H A Dstring.cpp117 /** A special type of Gtk::Entry to handle string parameteres. */
118 class ParamStringEntry : public Gtk::Entry {
131 Gtk::Entry(), _pref(pref), _doc(doc), _node(node), _changeSignal(changeSignal) {

Completed in 68 milliseconds

1234