Searched defs:prof (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/
H A Dcolor-profile-test.h34 Inkscape::ColorProfile *prof = new Inkscape::ColorProfile(); local
35 if ( prof ) {
36 if ( prof->rendering_intent == (guint)Inkscape::RENDERING_INTENT_UNKNOWN ) {
37 TS_ASSERT_EQUALS( prof->rendering_intent, (guint)Inkscape::RENDERING_INTENT_UNKNOWN );
40 delete prof;
77 Inkscape::ColorProfile *prof = new Inkscape::ColorProfile(); local
78 TS_ASSERT( prof );
79 SP_OBJECT(prof)->document = _doc;
83 SP_OBJECT(prof)->setKeyValue( SP_ATTR_RENDERING_INTENT, cases[i].attr);
84 TSM_ASSERT_EQUALS( descr, prof
97 Inkscape::ColorProfile *prof = new Inkscape::ColorProfile(); local
121 Inkscape::ColorProfile *prof = new Inkscape::ColorProfile(); local
[all...]
H A Dprofile-manager.cpp78 ColorProfile* prof = reinterpret_cast<ColorProfile*>(obj); local
79 if (prof && (prof->name && !strcmp(name, prof->name))) {
80 match = prof;
H A Dsp-image.cpp272 cmsHPROFILE prof = Inkscape::CMSSystem::getHandle( this->document, local
275 if ( prof ) {
276 cmsProfileClassSignature profileClass = cmsGetDeviceClass( prof );
298 cmsHTRANSFORM transf = cmsCreateTransform( prof,
H A Dcolor-profile.cpp495 ColorProfile* prof = COLORPROFILE(*it); local
496 if ( prof ) {
497 if ( prof->name && (strcmp(prof->name, name) == 0) ) {
510 cmsHPROFILE prof = 0; local
514 prof = COLORPROFILE(thing)->impl->_profHandle;
521 DEBUG_MESSAGE( lcmsThree, "<color-profile> queried for profile of '%s'. Returning %p with intent of %d", name, prof, (intent? *intent:0) );
523 return prof;
605 ProfileInfo( cmsHPROFILE prof, Glib::ustring const & path );
621 ProfileInfo::ProfileInfo( cmsHPROFILE prof, Gli argument
796 cmsHPROFILE prof = cmsOpenProfileFromFile( filepath, "r" ); local
948 cmsHPROFILE prof = cmsOpenProfileFromFile( it->c_str(), "r" ); local
[all...]
/inkscape/src/ui/widget/
H A Dcolor-notebook.cpp314 Inkscape::ColorProfile *prof = SP_ACTIVE_DOCUMENT->profileManager->find(color.icc->colorProfile.c_str()); local
315 if (prof && CMSSystem::isPrintColorSpace(prof)) {
H A Dcolor-icc-selector.cpp214 std::vector<colorspace::Component> colorspace::getColorSpaceInfo(Inkscape::ColorProfile *prof) argument
216 return getColorSpaceInfo(asICColorSpaceSig(prof->getColorSpace()));
693 Inkscape::ColorProfile *prof = reinterpret_cast<Inkscape::ColorProfile *>(obj); local
696 gtk_list_store_set(store, &iter, 0, gr_ellipsize_text(prof->name, 25).c_str(), 1, prof->name, -1);
698 if (name == prof->name) {
700 gtk_widget_set_tooltip_text(_profileSel, prof->name);
/inkscape/src/ui/dialog/
H A Ddocument-properties.cpp498 Inkscape::ColorProfile* prof = reinterpret_cast<Inkscape::ColorProfile*>(obj); local
499 if (!strcmp(prof->href, file.c_str()))
541 Inkscape::ColorProfile* prof = reinterpret_cast<Inkscape::ColorProfile*>(obj); local
543 row[_LinkedProfilesListColumns.nameColumn] = prof->name;
620 Inkscape::ColorProfile* prof = reinterpret_cast<Inkscape::ColorProfile*>(obj); local
621 if (!name.compare(prof->name)){
622 prof->deleteObject(true, false);

Completed in 24 milliseconds