Searched defs:license (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/ui/widget/
H A Dlicensor.cpp47 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)
63 /// \pre it is assumed that the license URI entry is a Gtk::Entry
72 DocumentUndo::done(doc, SP_VERB_NONE, _("Document license updated"));
94 /* add license-specific metadata entry areas */
105 for (struct rdf_license_t * license = rdf_licenses;
106 license && license
130 struct rdf_license_t * license = rdf_get_license (doc); local
[all...]
/inkscape/src/
H A Drdf.h21 * \brief Holds license name/resource doubles for rdf_license_t entries
29 * \brief Holds license name and RDF information
32 char const *name; /* localized name of this license */
33 char const *uri; /* URL for the RDF/Work/license element */
34 struct rdf_double_t *details; /* the license details */
94 struct rdf_license_t* license; member in struct:rdf_t
120 * \return A pointer to the static RDF license structure
128 * \param license The desired RDF/License structure to store; NULL drops old license, so can be used for proprietary license
[all...]
H A Drdf.cpp42 <license rdf:resource="http://creativecommons.org/licenses/by/4.0/"
56 <license rdf:resource="http://creativecommons.org/ns#PublicDomain" />
229 #define XML_TAG_NAME_LICENSE_PROP "cc:license"
288 // TRANSLATORS: URL to a page that defines the license for the document
289 { "license_uri", N_("URI:"), "cc:license", RDF_RESOURCE,
290 // TRANSLATORS: this is where you put a URL to a page that defines the license
291 N_("URI to this document's license's namespace definition"), RDF_FORMAT_LINE, RDF_EDIT_SPECIAL,
294 // TRANSLATORS: fragment of XML representing the license of the document
346 static void setLicense(SPDocument * doc, struct rdf_license_t const * license);
400 gchar *license
947 rdf_match_license(Inkscape::XML::Node const *repr, struct rdf_license_t const *license) argument
1126 rdf_set_license(SPDocument * doc, struct rdf_license_t const * license) argument
1131 setLicense(SPDocument * doc, struct rdf_license_t const * license) argument
[all...]
/inkscape/src/helper/
H A Dpng-write.cpp233 struct rdf_license_t *license = rdf_get_license(doc); local
234 if (license) {
235 if (license->name && license->uri) {
236 gchar* tmp = g_strdup_printf("%s %s", license->name, license->uri);
239 } else if (license->name) {
240 textList.add("Copyright", license->name);
241 } else if (license->uri) {
242 textList.add("Copyright", license
[all...]

Completed in 17 milliseconds