/inkscape/src/xml/ |
H A D | attribute-record.h | 12 #define SP_REPR_ATTRIBUTE_KEY(a) g_quark_to_string((a)->key) 26 : key(k), value(v) {} 29 GQuark key; member in struct:Inkscape::XML::AttributeRecord
|
H A D | node.h | 144 * @param key The name of the node's attribute 146 virtual char const *attribute(char const *key) const=0; 203 * @param key Name of the attribute to change 207 virtual void setAttribute(char const *key, char const *value, bool is_interactive=false)=0; 209 void setAttribute(char const *key, Glib::ustring const &value, bool is_interactive=false) argument 211 setAttribute(key, value.empty() ? NULL : value.c_str(), is_interactive); 214 void setAttribute(Glib::ustring const &key, Glib::ustring const &value, bool is_interactive=false) argument 216 setAttribute( key.empty() ? NULL : key.c_str(), 391 * @c key i [all...] |
/inkscape/src/ |
H A D | attributes.cpp | 537 /** Returns an SPAttributeEnum; SP_ATTR_INVALID (of value 0) if key isn't recognized. */ 539 sp_attribute_lookup(gchar const *key) argument 544 if(g_str_equal(const_cast<void *>(static_cast<void const *>(props[i].name)), key))
|
H A D | sp-hatch-path.h | 43 Inkscape::DrawingItem *show(Inkscape::Drawing &drawing, unsigned int key, Geom::OptInterval extents); 44 void hide(unsigned int key); 46 void setStripExtents(unsigned int key, Geom::OptInterval const &extents); 49 SPCurve *calculateRenderCurve(unsigned key) const; 54 virtual void set(unsigned int key, const gchar* value); 60 View(Inkscape::DrawingShape *arenaitem, int key); 67 unsigned int key; member in class:SPHatchPath::View
|
H A D | sp-linear-gradient.cpp | 33 void SPLinearGradient::set(unsigned int key, const gchar* value) { argument 34 switch (key) { 56 SPGradient::set(key, value);
|
H A D | sp-mesh-patch.cpp | 79 void SPMeshpatch::set(unsigned int key, const gchar* value) { argument 80 switch (key) {
|
H A D | sp-missing-glyph.cpp | 49 void SPMissingGlyph::set(unsigned int key, const gchar* value) { argument 50 switch (key) { 98 SPObject::set(key, value); 104 #define COPY_ATTR(rd,rs,key) (rd)->setAttribute((key), rs->attribute(key));
|
H A D | sp-script.cpp | 29 //Read values of key attributes from XML nodes into object. 58 void SPScript::set(unsigned int key, const gchar* value) { argument 59 switch (key) { 69 SPObject::set(key, value);
|
H A D | sp-solid-color.cpp | 44 void SPSolidColor::set(unsigned int key, const gchar* value) { argument 46 if (SP_ATTRIBUTE_IS_CSS(key)) { 50 SPPaintServer::set(key, value);
|
H A D | sp-tag.cpp | 73 SPTag::set(unsigned int key, gchar const *value) argument 76 switch (key) 84 SPObject::set(key, value);
|
H A D | sp-glyph.cpp | 106 void SPGlyph::set(unsigned int key, const gchar *value) argument 108 switch (key) { 213 SPObject::set(key, value); 241 #define COPY_ATTR(rd,rs,key) (rd)->setAttribute((key), rs->attribute(key));
|
H A D | sp-polyline.cpp | 35 void SPPolyLine::set(unsigned int key, const gchar* value) { argument 36 switch (key) { 101 SPShape::set(key, value);
|
H A D | sp-anchor.cpp | 53 void SPAnchor::set(unsigned int key, const gchar* value) { argument 54 switch (key) { 72 SPGroup::set(key, value); 78 #define COPY_ATTR(rd,rs,key) (rd)->setAttribute((key), rs->attribute(key));
|
/inkscape/src/filters/ |
H A D | mergenode.cpp | 48 void SPFeMergeNode::set(unsigned int key, gchar const *value) { argument 51 if (key == SP_ATTR_IN) { 60 SPObject::set(key, value);
|
H A D | tile.cpp | 46 void SPFeTile::set(unsigned int key, gchar const *value) { argument 47 switch(key) { 50 SPFilterPrimitive::set(key, value);
|
H A D | distantlight.cpp | 44 //Read values of key attributes from XML nodes into object. 67 void SPFeDistantLight::set(unsigned int key, gchar const *value) { argument 70 switch (key) { 117 SPObject::set(key, value);
|
H A D | pointlight.cpp | 44 //Read values of key attributes from XML nodes into object. 68 void SPFePointLight::set(unsigned int key, gchar const *value) { argument 71 switch (key) { 140 SPObject::set(key, value);
|
H A D | spotlight.cpp | 48 //Read values of key attributes from XML nodes into object. 77 void SPFeSpotLight::set(unsigned int key, gchar const *value) { argument 80 switch (key) { 259 SPObject::set(key, value);
|
H A D | offset.cpp | 54 void SPFeOffset::set(unsigned int key, gchar const *value) { argument 57 switch(key) { 77 SPFilterPrimitive::set(key, value);
|
/inkscape/src/util/ |
H A D | ege-tags.h | 68 Tag(std::string const& key); 71 std::string key; member in class:ege::Tag 97 int getCount( std::string const& key ); 98 void increment( std::string const& key ); 99 void decrement( std::string const& key );
|
/inkscape/src/libnrtype/ |
H A D | nr-type-primitives.cpp | 20 * An entry in a list of key->value pairs 24 const gchar *key; member in struct:NRTDEntry 29 * Type Dictionary, consisting of size number of key-value entries 96 * Inserts a key/value into a typeface dictionary 99 nr_type_dict_insert (NRTypeDict *td, const gchar *key, void *val) argument 101 if (key) { 105 hval = nr_str_hash (key) % td->size; 108 if (!strcmp (key, tde->key)) { 116 tde->key 126 nr_type_dict_lookup(NRTypeDict *td, const gchar *key) argument [all...] |
/inkscape/src/live_effects/ |
H A D | lpe-vonkoch.h | 25 const Glib::ustring& key, 28 const gchar * default_value = "M0,0 L1,1"):PathParam(label,tip,key,wr,effect,default_value){} 38 const Glib::ustring& key, 41 const gchar * default_value = "M0,0 L1,1"):PathParam(label,tip,key,wr,effect,default_value){} 23 VonKochPathParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, const gchar * default_value = �) argument 36 VonKochRefPathParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, const gchar * default_value = �) argument
|
/inkscape/src/live_effects/parameter/ |
H A D | bool.cpp | 23 const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, 25 : Parameter(label, tip, key, wr, effect), value(default_value), defvalue(default_value), hide_widget(no_widget) 22 BoolParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, bool default_value , bool no_widget) argument
|
H A D | originalpath.cpp | 35 const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, 37 : PathParam(label, tip, key, wr, effect, "") 34 OriginalPathParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect) argument
|
H A D | unit.cpp | 23 const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, 25 : Parameter(label, tip, key, wr, effect) 22 UnitParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, Glib::ustring default_unit) argument
|