10import QtQuick.Controls
15import org.mauikit.controls as Maui
16import org.mauikit.filebrowsing as FB
17import org.mauikit.imagetools as IT
40 property alias url : _infoModel.url
46 title: _infoModel.fileName
48 spacing: Maui.Style.space.huge
52 Layout.fillWidth: true
53 Layout.preferredHeight: 200
54 color: Qt.darker(Maui.Theme.backgroundColor, 1.1)
61 fillMode: Image.PreserveAspectCrop
62 sourceSize.width: width
63 sourceSize.height: height
74 anchors.centerIn: parent
75 text: _infoModel.pixelSize.width +
" x " + _infoModel.pixelSize.height
77 padding:
Maui.Style.defaultPadding
81 radius:
Maui.Style.radiusV
90 Layout.fillWidth:
true
93 list.urls: [control.url]
100 property alias key : _keyField.text
101 property alias value : _valueField.text
104 message:
i18nd(
"mauikitimagetools",
"Editing Exif tag")
111 Layout.fillWidth:
true
112 placeholderText:
i18nd(
"mauikitimagetools",
"Tag key")
118 Layout.fillWidth:
true
119 placeholderText:
i18nd(
"mauikitimagetools",
"Tag value")
124 console.log(_editTagDialog.key, _editTagDialog.value)
125 if(_infoModel.editTag(_editTagDialog.key, _editTagDialog.value))
127 _editTagDialog.close()
130 _editTagDialog.alert(
i18nd(
"mauikitimagetools",
"Could not edit the tag"), 2)
136 _editTagDialog.close()
139 function set(key, value)
141 _editTagDialog.key = key
142 _editTagDialog.value = value
143 _editTagDialog.open()
151 property string value
153 title:
i18n (
"Remove")
154 message:
i18nd(
"mauikitimagetools",
"Are you sure you want to remove the Exif tag %1?", _removeTagDialog.value)
160 if(_infoModel.removeTag(_removeTagDialog.key))
162 _removeTagDialog.close()
165 _removeTagDialog.alert(i18nd(
"mauikitimagetools",
"Could not remove the tag"), 2)
171 _removeTagDialog.close()
174 function set(key, value)
176 _removeTagDialog.key = key
177 _removeTagDialog.value = value
178 _removeTagDialog.open()
186 title:
i18n (
"Comment")
191 Layout.fillWidth:
true
192 Layout.preferredHeight: 200
194 text: _infoModel.exifComment
200 _infoModel.setComment(_commentArea.text)
201 _commentDialog.close()
204 onRejected: _commentDialog.close()
219 Maui.Controls.title: placeholderText
220 placeholderText:
i18n(
"Latitude")
221 validator: DoubleValidator
223 notation: DoubleValidator.StandardNotation
225 Layout.fillWidth:
true
231 placeholderText:
i18n(
"Longitude")
232 Maui.Controls.title: placeholderText
235 validator: DoubleValidator
237 notation: DoubleValidator.StandardNotation
239 Layout.fillWidth:
true
261 if(_infoModel.setGpsData(_lat.text, _lon.text))
263 _editTagDialog.close()
266 _editTagDialog.alert(
i18nd(
"mauikitimagetools",
"Could not save the GPS data"), 2)
272 _gpsTagDialog.close()
278 Layout.fillWidth:
true
280 title:
i18nd(
"mauikitimagetools",
"Details")
281 description:
i18nd(
"mauikitimagetools",
"File information")
285 model:
Maui.BaseModel
287 list: IT.PicInfoModel
293 delegate:
Maui.FlexSectionItem
295 visible: model.value && String(model.value).length > 0
296 label1.text: model.name
297 label2.text: model.value
302 icon.name:
"document-edit"
303 onClicked: _editTagDialog.set(model.key, model.value)
309 icon.name:
"edit-delete"
310 onClicked: _removeTagDialog.set(model.key, model.value)
317 Layout.fillWidth:
true
321 onClicked: _editTagDialog.open()
327 Layout.fillWidth:
true
329 title:
i18nd(
"mauikitimagetools",
"Comment & Description")
333 text: _infoModel.exifComment
334 visible: text.length > 0
335 Layout.fillWidth:
true
336 Layout.preferredHeight: 100
342 spacing:
Maui.Style.defaultSpacing
343 Layout.fillWidth:
true
347 text:
i18n(
"Add Comment")
348 Layout.fillWidth: true
349 onClicked: _commentDialog.open()
354 text:
i18n(
"Remove Comment")
355 Layout.fillWidth: true
356 visible: _infoModel.exifComment.length>0
357 onClicked: _infoModel.removeComment()
365 Layout.fillWidth:
true
367 title:
i18nd(
"mauikitimagetools",
"GPS")
368 description:
i18nd(
"mauikitimagetools",
"Geolocation tags")
372 visible: _mapLoader.visible
373 label1.text:
i18n(
"City")
374 label2.text: _infoModel.cityName
379 spacing:
Maui.Style.defaultSpacing
380 Layout.fillWidth:
true
384 Layout.fillWidth:
true
385 text:
i18n(
"Set GPS info")
386 onClicked: _gpsTagDialog.open()
392 active: _mapLoader.active
394 Layout.fillWidth:
true
398 text:
i18n(
"Remove GPS info")
400 onClicked: _infoModel.removeGpsData()
410 visible: _infoModel.lat !== 0 && _infoModel.lon !== 0
411 Layout.fillWidth:
true
412 Layout.preferredHeight: 400
417 color:
Maui.Theme.backgroundColor
437 latitude: _infoModel.lat
438 longitude:_infoModel.lon
445 color:
Maui.Theme.highlightColor
448 Component.onCompleted:
450 map.addMapItem(
map.circle)
Q_SCRIPTABLE CaptureState status()
QString i18nd(const char *domain, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
QString name(const QVariant &location)
KIOCORE_EXPORT QStringList list(const QString &fileClass)
QTextStream & center(QTextStream &stream)
QFuture< void > map(Iterator begin, Iterator end, MapFunctor &&function)