/inkscape/src/ |
H A D | knotholder.cpp | 23 #include "knot-holder-entity.h" 56 entity(), 74 for (std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) 79 entity.clear(); // is this necessary? 87 for (std::list<KnotHolderEntity *>::iterator it = entity.begin(); it != entity.end(); ++it) { 95 for (std::list<KnotHolderEntity *>::iterator i = entity.begin(); i != entity.end(); ++i) { 105 for (std::list<KnotHolderEntity *>::const_iterator i = entity [all...] |
H A D | rdf.cpp | 249 N_("An entity primarily responsible for making the resource"), RDF_FORMAT_LINE, RDF_EDIT_GENERIC, 255 N_("An entity responsible for making the resource available"), RDF_FORMAT_LINE, RDF_EDIT_GENERIC, 285 N_("An entity responsible for making contributions to the resource"), RDF_FORMAT_MULTILINE, RDF_EDIT_GENERIC, 325 static const gchar *getWorkEntity(SPDocument const * doc, struct rdf_work_entity_t & entity); 326 static unsigned int setWorkEntity(SPDocument * doc, struct rdf_work_entity_t & entity, gchar const * text); 331 * Pull the text out of an RDF entity, depends on how it's stored. 333 * @return A pointer to the entity's static contents as a string 335 * @param entity The desired RDF/Work entity 338 static const gchar *getReprText( Inkscape::XML::Node const * repr, struct rdf_work_entity_t const & entity ); 358 struct rdf_work_entity_t *entity; local 555 setReprText( Inkscape::XML::Node * repr, struct rdf_work_entity_t const & entity, gchar const * text ) argument 877 rdf_get_work_entity(SPDocument const * doc, struct rdf_work_entity_t * entity) argument 892 getWorkEntity(SPDocument const * doc, struct rdf_work_entity_t & entity) argument 906 rdf_set_work_entity(SPDocument * doc, struct rdf_work_entity_t * entity, const gchar * text) argument 919 setWorkEntity(SPDocument * doc, struct rdf_work_entity_t & entity, const gchar * text) argument 1044 struct rdf_work_entity_t *entity = rdf_find_entity("license_uri"); local 1206 struct rdf_work_entity_t * entity = rdf_find_entity( rdf_default->name ); local [all...] |
H A D | rdf.h | 41 * \brief Describes how a given RDF entity is stored in XML 52 * \brief Describes how a given RDF entity should be edited 70 char const *name; /* unique name of this entity for internal reference */ 71 char const *title; /* localized title of this entity for data entry */ 74 char const *tip; /* tool tip to explain the meaning of the entity */ 100 * \brief Retrieves a known RDF/Work entity's contents from the document XML by name 101 * \return A pointer to the entity's static contents as a string, or NULL if no entity exists 102 * \param entity The desired RDF/Work entity [all...] |
H A D | knotholder.h | 75 std::list<KnotHolderEntity *> entity; member in class:KnotHolder
|
/inkscape/src/ui/widget/ |
H A D | licensor.cpp | 23 #include "ui/widget/entity-entry.h" 47 LicenseItem (struct rdf_license_t const* license, EntityEntry* entity, Registry &wr, Gtk::RadioButtonGroup *group); 55 LicenseItem::LicenseItem (struct rdf_license_t const* license, EntityEntry* entity, Registry &wr, Gtk::RadioButtonGroup *group) argument 56 : Gtk::RadioButton(_(license->name)), _lic(license), _eep(entity), _wr(wr) 95 rdf_work_entity_t* entity = rdf_find_entity ( "license_uri" ); local 96 _eentry = EntityEntry::create (entity, wr);
|
/inkscape/src/ui/dialog/ |
H A D | document-metadata.cpp | 27 #include "ui/widget/entity-entry.h" 137 struct rdf_work_entity_t * entity; local 139 for (entity = rdf_work_entities; entity && entity->name; entity++, row++) { 140 if ( entity->editable == RDF_EDIT_GENERIC ) { 141 EntityEntry *w = EntityEntry::create (entity, _wr);
|
H A D | document-properties.cpp | 51 #include "ui/widget/entity-entry.h" 1005 struct rdf_work_entity_t * entity; local 1007 for (entity = rdf_work_entities; entity && entity->name; entity++, row++) { 1008 if ( entity->editable == RDF_EDIT_GENERIC ) { 1009 EntityEntry *w = EntityEntry::create (entity, _wr);
|
/inkscape/src/live_effects/parameter/ |
H A D | powerstrokepointarray.cpp | 208 parent_holder->entity.remove(this); 210 for(std::list<KnotHolderEntity *>::iterator ent = parent_holder->entity.begin(); ent != parent_holder->entity.end(); ++ent) { 228 for(std::list<KnotHolderEntity *>::iterator ent = parent_holder->entity.begin(); ent != parent_holder->entity.end(); ++ent) {
|
/inkscape/src/ui/ |
H A D | object-edit.cpp | 40 #include "knot-holder-entity.h" 469 entity.push_back(entity_rx); 470 entity.push_back(entity_ry); 471 entity.push_back(entity_wh); 472 entity.push_back(entity_xy); 747 entity.push_back(entity_corner0); 748 entity.push_back(entity_corner1); 749 entity.push_back(entity_corner2); 750 entity.push_back(entity_corner3); 751 entity [all...] |
/inkscape/src/helper/ |
H A D | png-write.cpp | 221 struct rdf_work_entity_t * entity = rdf_find_entity ( pngToDc[i + 1] ); local 222 if (entity) { 223 gchar const* data = rdf_get_work_entity(doc, entity); 228 g_warning("Unable to find entity [%s]", pngToDc[i + 1]);
|
/inkscape/share/extensions/ |
H A D | dxf_input.py | 449 entity = '' variable 458 if entity and groups.has_key(line[0]): 479 if entities.has_key(entity): 521 if entities[entity]: 522 entities[entity]() 523 entity = line[1] variable
|