/inkscape/src/ui/widget/ |
H A D | entry.h | 16 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 D | entry.cpp | 22 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 D | text.cpp | 26 : 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 D | color-entry.h | 2 * Entry widget for typing color value in css form 21 class ColorEntry : public Gtk::Entry
|
H A D | entity-entry.cpp | 86 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 D | dialog-events.h | 27 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 D | preferences.h | 64 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 D | selcue.h | 45 void notify(Preferences::Entry const &val);
|
H A D | preferences-test.h | 22 virtual void notify(Inkscape::Preferences::Entry const &val) 117 Inkscape::Preferences::Entry val = prefs->getEntry("/test/prefentry");
|
H A D | preferences.cpp | 378 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 D | sp-attribute-widget.h | 27 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 D | sp-attribute-widget.cpp | 49 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 D | object-properties.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 | glyphs.h | 17 class Entry; 70 Gtk::Entry *entry;
|
H A D | calligraphic-profile-rename.h | 61 Gtk::Entry _profile_name_entry;
|
H A D | xml-tree.h | 216 Gtk::Entry attr_name; 220 Gtk::Entry *name_entry;
|
/inkscape/src/ui/tools/ |
H A D | rect-tool.h | 38 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | star-tool.h | 37 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | calligraphic-tool.h | 52 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | dynamic-base.h | 44 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | spiral-tool.h | 40 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | tweak-tool.h | 80 virtual void set(const Inkscape::Preferences::Entry& val);
|
H A D | select-tool.h | 57 virtual void set(const Inkscape::Preferences::Entry& val);
|
/inkscape/src/live_effects/ |
H A D | lpe-perspective_path.h | 40 virtual void refresh(Gtk::Entry* perspective);
|
/inkscape/src/extension/param/ |
H A D | string.cpp | 117 /** 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) {
|