Home
last modified time | relevance | path

Searched refs:photoInfo (Results 1 – 25 of 28) sorted by relevance

12

/dports/graphics/digikam/digikam-7.4.0/core/libs/metadataengine/dmetadata/
H A Ddmetadata_photo.cpp48 PhotoInfoContainer photoInfo; in getPhotographInformation() local
58 if (photoInfo.make.isEmpty()) in getPhotographInformation()
63 if (photoInfo.make.isEmpty()) in getPhotographInformation()
72 if (photoInfo.model.isEmpty()) in getPhotographInformation()
77 if (photoInfo.model.isEmpty()) in getPhotographInformation()
90 if (photoInfo.aperture.isEmpty()) in getPhotographInformation()
95 if (photoInfo.aperture.isEmpty()) in getPhotographInformation()
100 if (photoInfo.aperture.isEmpty()) in getPhotographInformation()
226 if (photoInfo.flash.isEmpty()) in getPhotographInformation()
231 if (photoInfo.flash.isEmpty()) in getPhotographInformation()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/showfoto/thumbbar/
H A Dshowfototooltipfiller.cpp56 PhotoInfoContainer photoInfo = info.photoInfo; in ShowfotoItemInfoTipContents() local
124 if (!photoInfo.isNull()) in ShowfotoItemInfoTipContents()
134 …str = QString::fromUtf8("%1 / %2").arg(photoInfo.make.isEmpty() ? cnt.unavailable : photoInfo.make) in ShowfotoItemInfoTipContents()
147 str = photoInfo.lens.isEmpty() ? cnt.unavailable : photoInfo.lens; in ShowfotoItemInfoTipContents()
190 str = photoInfo.aperture.isEmpty() ? cnt.unavailable : photoInfo.aperture; in ShowfotoItemInfoTipContents()
224 if (photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in ShowfotoItemInfoTipContents()
228 else if (!photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in ShowfotoItemInfoTipContents()
232 else if (photoInfo.exposureMode.isEmpty() && !photoInfo.exposureProgram.isEmpty()) in ShowfotoItemInfoTipContents()
238 … str = QString::fromUtf8("%1 / %2").arg(photoInfo.exposureMode).arg(photoInfo.exposureProgram); in ShowfotoItemInfoTipContents()
251 str = photoInfo.flash.isEmpty() ? cnt.unavailable : photoInfo.flash; in ShowfotoItemInfoTipContents()
[all …]
H A Dshowfotoiteminfo.cpp69 bool b6 = (photoInfo == info.photoInfo); in operator ==()
86 ds << info.photoInfo; in operator <<()
98 ds >> info.photoInfo; in operator >>()
146 iteminfo.photoInfo = meta->getPhotographInformation(); in itemInfoFromFile()
H A Dshowfotoiteminfo.h80 PhotoInfoContainer photoInfo; variable
H A Dshowfotocoordinatesoverlay.cpp103 if (!rect.isNull() && info.photoInfo.hasCoordinates) in checkIndex()
H A Dshowfotodelegate.cpp238 if (ShowfotoSettings::instance()->getShowCoordinates() && info.photoInfo.hasCoordinates) in paint()
/dports/graphics/digikam/digikam-7.4.0/core/libs/properties/
H A Ditempropertiessidebar.cpp299 m_propertiesTab->setPhotoMake(photoInfo.make.isEmpty() ? unavailable : photoInfo.make); in setImagePropertiesInformation()
300 m_propertiesTab->setPhotoModel(photoInfo.model.isEmpty() ? unavailable : photoInfo.model); in setImagePropertiesInformation()
302 if (photoInfo.dateTime.isValid()) in setImagePropertiesInformation()
312 m_propertiesTab->setPhotoLens(photoInfo.lens.isEmpty() ? unavailable : photoInfo.lens); in setImagePropertiesInformation()
313 …m_propertiesTab->setPhotoAperture(photoInfo.aperture.isEmpty() ? unavailable : photoInfo.aperture); in setImagePropertiesInformation()
321 …str = i18nc("@info: item properties", "%1 (%2)", photoInfo.focalLength, photoInfo.focalLength35mm); in setImagePropertiesInformation()
328 if (photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
332 else if (!photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
336 else if (photoInfo.exposureMode.isEmpty() && !photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
342 … str = QString::fromUtf8("%1 / %2").arg(photoInfo.exposureMode).arg(photoInfo.exposureProgram); in setImagePropertiesInformation()
[all …]
H A Ditempropertiessidebardb.cpp605 … m_propertiesTab->setPhotoMake(photoInfo.make.isEmpty() ? unavailable : photoInfo.make); in setImagePropertiesInformation()
606 … m_propertiesTab->setPhotoModel(photoInfo.model.isEmpty() ? unavailable : photoInfo.model); in setImagePropertiesInformation()
618 … m_propertiesTab->setPhotoLens(photoInfo.lens.isEmpty() ? unavailable : photoInfo.lens); in setImagePropertiesInformation()
619 …m_propertiesTab->setPhotoAperture(photoInfo.aperture.isEmpty() ? unavailable : photoInfo.aperture); in setImagePropertiesInformation()
627 … str = i18nc("@info: item properties", "%1 (%2)", photoInfo.focalLength, photoInfo.focalLength35); in setImagePropertiesInformation()
631 …m_propertiesTab->setPhotoExposureTime(photoInfo.exposureTime.isEmpty() ? unavailable : photoInfo.e… in setImagePropertiesInformation()
634 if (photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
638 else if (!photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
642 else if (photoInfo.exposureMode.isEmpty() && !photoInfo.exposureProgram.isEmpty()) in setImagePropertiesInformation()
648 … str = QString::fromUtf8("%1 / %2").arg(photoInfo.exposureMode).arg(photoInfo.exposureProgram); in setImagePropertiesInformation()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/utilities/import/items/
H A Dimporttooltipfiller.cpp53 PhotoInfoContainer photoInfo = info.photoInfo; in CamItemInfoTipContents() local
122 if (!photoInfo.isNull()) in CamItemInfoTipContents()
132 …str = QString::fromUtf8("%1 / %2").arg(photoInfo.make.isEmpty() ? cnt.unavailable : photoInfo.make) in CamItemInfoTipContents()
133 .arg(photoInfo.model.isEmpty() ? cnt.unavailable : photoInfo.model); in CamItemInfoTipContents()
145 str = photoInfo.lens.isEmpty() ? cnt.unavailable : photoInfo.lens; in CamItemInfoTipContents()
171 str = photoInfo.aperture.isEmpty() ? cnt.unavailable : photoInfo.aperture; in CamItemInfoTipContents()
179 …str += QString::fromUtf8(" / %1").arg(i18n("%1 (%2)",photoInfo.focalLength, photoInfo.focalLength3… in CamItemInfoTipContents()
192 …str = QString::fromUtf8("%1 / %2").arg(photoInfo.exposureTime.isEmpty() ? cnt.unavailable : photoI… in CamItemInfoTipContents()
193 … .arg(photoInfo.sensitivity.isEmpty() ? cnt.unavailable : i18n("%1 ISO",photoInfo.sensitivity)); in CamItemInfoTipContents()
205 str = photoInfo.flash.isEmpty() ? cnt.unavailable : photoInfo.flash; in CamItemInfoTipContents()
[all …]
H A Dimportoverlays.cpp104 if (!rect.isNull() && info.photoInfo.hasCoordinates) in checkIndex()
/dports/graphics/digikam/digikam-7.4.0/core/libs/database/item/containers/
H A Diteminfo_containers.cpp215 PhotoInfoContainer photoInfo; in photoInfoContainer() local
217 photoInfo.make = meta.make; in photoInfoContainer()
218 photoInfo.model = meta.model; in photoInfoContainer()
219 photoInfo.lens = meta.lens; in photoInfoContainer()
220 photoInfo.exposureTime = meta.exposureTime; in photoInfoContainer()
223 photoInfo.aperture = meta.aperture; in photoInfoContainer()
224 photoInfo.focalLength = meta.focalLength; in photoInfoContainer()
226 photoInfo.sensitivity = meta.sensitivity; in photoInfoContainer()
227 photoInfo.flash = meta.flashMode; in photoInfoContainer()
229 photoInfo.dateTime = dateTime(); in photoInfoContainer()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/properties/import/
H A Dimportitempropertiestab.cpp529 if (photoInfo.isEmpty()) in setCurrentItem()
540 d->labelPhotoMake->setAdjustedText(photoInfo.make.isEmpty() ? unavailable : photoInfo.make); in setCurrentItem()
541 d->labelPhotoModel->setAdjustedText(photoInfo.model.isEmpty() ? unavailable : photoInfo.model); in setCurrentItem()
543 if (photoInfo.dateTime.isValid()) in setCurrentItem()
553 …d->labelPhotoLens->setAdjustedText(photoInfo.lens.isEmpty() ? unavailable : photoInfo.lens… in setCurrentItem()
554 …d->labelPhotoAperture->setAdjustedText(photoInfo.aperture.isEmpty() ? unavailable : photoInfo.aper… in setCurrentItem()
562 … str = i18nc("@info: focal length", "%1 (%2)", photoInfo.focalLength, photoInfo.focalLength35mm); in setCurrentItem()
569 if (photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setCurrentItem()
573 else if (!photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in setCurrentItem()
577 else if (photoInfo.exposureMode.isEmpty() && !photoInfo.exposureProgram.isEmpty()) in setCurrentItem()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/app/items/utils/
H A Dtooltipfiller.cpp159 …str = QString::fromUtf8("%1 / %2").arg(photoInfo.make.isEmpty() ? cnt.unavailable : photoInfo.make) in imageInfoTipContents()
160 .arg(photoInfo.model.isEmpty() ? cnt.unavailable : photoInfo.model); in imageInfoTipContents()
172 str = photoInfo.lens.isEmpty() ? cnt.unavailable : photoInfo.lens; in imageInfoTipContents()
221 str = photoInfo.aperture.isEmpty() ? cnt.unavailable : photoInfo.aperture; in imageInfoTipContents()
243 … .arg(photoInfo.sensitivity.isEmpty() ? cnt.unavailable : i18n("%1 ISO",photoInfo.sensitivity)); in imageInfoTipContents()
255 if (photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in imageInfoTipContents()
259 else if (!photoInfo.exposureMode.isEmpty() && photoInfo.exposureProgram.isEmpty()) in imageInfoTipContents()
263 else if (photoInfo.exposureMode.isEmpty() && !photoInfo.exposureProgram.isEmpty()) in imageInfoTipContents()
269 … str = QString::fromUtf8("%1 / %2").arg(photoInfo.exposureMode).arg(photoInfo.exposureProgram); in imageInfoTipContents()
282 str = photoInfo.flashMode.isEmpty() ? cnt.unavailable : photoInfo.flashMode; in imageInfoTipContents()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/webservices/google/gdrive/
H A Dgdmpform.cpp90 QJsonObject photoInfo; in addPair() local
91 photoInfo.insert(QLatin1String("title"), QJsonValue(name)); in addPair()
92 photoInfo.insert(QLatin1String("description"), QJsonValue(description)); in addPair()
93 photoInfo.insert(QLatin1String("mimeType"), QJsonValue(mime)); in addPair()
99photoInfo.insert(QLatin1String("parents"), QJsonValue(QJsonArray::fromVariantList(parents))); in addPair()
101 QJsonDocument doc(photoInfo); in addPair()
/dports/graphics/kipi-plugins/kipi-plugins-21.12.3/googleservices/
H A Dmpform_gdrive.cpp80 QJsonObject photoInfo; in addPair() local
81 photoInfo.insert(QString::fromLatin1("title"), QJsonValue(name)); in addPair()
82 photoInfo.insert(QString::fromLatin1("description"), QJsonValue(description)); in addPair()
83 photoInfo.insert(QString::fromLatin1("mimeType"), QJsonValue(mime)); in addPair()
89photoInfo.insert(QString::fromLatin1("parents"), QJsonValue(QJsonArray::fromVariantList(parent… in addPair()
91 QJsonDocument doc(photoInfo); in addPair()
/dports/graphics/digikam/digikam-7.4.0/core/libs/dplugins/iface/
H A Ddmetainfoiface.cpp167 PhotoInfoContainer photoInfo = meta->getPhotographInformation(); in itemInfo() local
168 map.insert(QLatin1String("lens"), photoInfo.lens); in itemInfo()
169 map.insert(QLatin1String("make"), photoInfo.make); in itemInfo()
170 map.insert(QLatin1String("model"), photoInfo.model); in itemInfo()
171 map.insert(QLatin1String("exposuretime"), photoInfo.exposureTime); in itemInfo()
172 map.insert(QLatin1String("sensitivity"), photoInfo.sensitivity); in itemInfo()
173 map.insert(QLatin1String("aperture"), photoInfo.aperture); in itemInfo()
174 map.insert(QLatin1String("focallength"), photoInfo.focalLength); in itemInfo()
175 map.insert(QLatin1String("focalLength35mm"), photoInfo.focalLength35mm); in itemInfo()
/dports/graphics/digikam/digikam-7.4.0/core/utilities/import/backend/
H A Dcamiteminfo.cpp69 photoInfo.isNull() && in isNull()
94 (photoInfo == info.photoInfo) && in operator ==()
119 ds << info.photoInfo; in operator <<()
142 ds >> info.photoInfo; in operator >>()
H A Dcamiteminfo.h103 … PhotoInfoContainer photoInfo; ///< Photo Info from camera file (get from file metadata) variable
H A Ddkcamera.cpp180 info.photoInfo = meta.getPhotographInformation(); in fillItemInfoFromMetadata()
H A Dumscamera.cpp572 info.photoInfo = pInfo; in uploadItem()
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/kaddressbook/importexportplugins/windows-contacts/
H A Dimportwindowcontact.cpp146 …for (QDomElement photoInfo = photo.firstChildElement(); !photoInfo.isNull(); photoInfo = photoInfo in importFile() local
147 const QString photoInfoTag = photoInfo.tagName(); in importFile()
149 … const QString contentType = photoInfo.attribute(QStringLiteral("c:ContentType")); in importFile()
150 picture.setRawData(photoInfo.text().toUtf8(), contentType); in importFile()
152 picture.setUrl(photoInfo.text()); in importFile()
/dports/graphics/digikam/digikam-7.4.0/core/libs/database/utils/ifaces/
H A Ddbinfoiface.cpp503 PhotoInfoContainer photoInfo = info.photoInfoContainer(); in itemInfo() local
504 map.insert(QLatin1String("lens"), photoInfo.lens); in itemInfo()
505 map.insert(QLatin1String("make"), photoInfo.make); in itemInfo()
506 map.insert(QLatin1String("model"), photoInfo.model); in itemInfo()
507 map.insert(QLatin1String("exposuretime"), photoInfo.exposureTime); in itemInfo()
508 map.insert(QLatin1String("sensitivity"), photoInfo.sensitivity); in itemInfo()
509 map.insert(QLatin1String("aperture"), photoInfo.aperture); in itemInfo()
510 map.insert(QLatin1String("focallength"), photoInfo.focalLength); in itemInfo()
511 map.insert(QLatin1String("focalLength35mm"), photoInfo.focalLength35mm); in itemInfo()
/dports/net-im/jabberd/jabberd-2.7.0/tools/
H A Dmigrate-jd14dir-2-sqlite.pl206 my $photoInfo = "NULL";
222 $photoInfo = $vCarray->[0]->{PHOTO}->[0]->{BINVAL}->[0];
291 …L,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$photoType','$photoInfo',NULL,NULL,NULL,…
/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/tools/printcreator/wizard/
H A Dadvprintcaptionpage.cpp360 PhotoInfoContainer photoInfo = meta->getPhotographInformation(); in captionFormatter() local
361 format.replace(QString::fromUtf8("%t"), photoInfo.exposureTime); in captionFormatter()
362 format.replace(QString::fromUtf8("%i"), photoInfo.sensitivity); in captionFormatter()
363 format.replace(QString::fromUtf8("%a"), photoInfo.aperture); in captionFormatter()
364 format.replace(QString::fromUtf8("%l"), photoInfo.focalLength); in captionFormatter()
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/lens/
H A Dlensfuniface.cpp273 PhotoInfoContainer photoInfo = meta->getPhotographInformation(); in findFromMetadata() local
274 d->makeDescription = photoInfo.make.trimmed(); in findFromMetadata()
275 d->modelDescription = photoInfo.model.trimmed(); in findFromMetadata()
323 d->lensDescription = photoInfo.lens.trimmed(); in findFromMetadata()
459 QString temp = photoInfo.focalLength; in findFromMetadata()
472 temp = photoInfo.aperture; in findFromMetadata()

12