MauiKit Image Tools

ImageInfoDialog.qml
1// Copyright 2018-2020 Camilo Higuita <milo.h@aol.com>
2// Copyright 2018-2020 Nitrux Latinoamericana S.C.
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5
6
7import QtQuick
8
9import QtQuick.Layouts
10import QtQuick.Controls
11
12import QtLocation
13import QtPositioning
14
15import org.mauikit.controls as Maui
16import org.mauikit.filebrowsing as FB
17import org.mauikit.imagetools as IT
18
19/**
20 * @inherit org::mauikit::controls::PopupPage
21 * @brief A popup view presenting with metadata information about a given image file.
22 *
23 * @image html imageinfodialog.png "Image information dialog"
24 *
25 * @code
26 * IT.ImageInfoDialog
27 * {
28 * id: _dialog
29 * url: "file:///home/camiloh/maui-demo-files/Pictures/4416d027-9fa4-4762-8eb6-31de331623a1.jpg"
30 * }
31 * @endcode
32 */
33Maui.PopupPage
34{
35 id: control
36
37 /**
38 * @brief
39 */
40 property alias url : _infoModel.url
41
42 maxHeight: 800
43 maxWidth: 500
44 hint: 1
45
46 title: _infoModel.fileName
47 headBar.visible: true
48 spacing: Maui.Style.space.huge
49
50 Rectangle
51 {
52 Layout.fillWidth: true
53 Layout.preferredHeight: 200
54 color: Qt.darker(Maui.Theme.backgroundColor, 1.1)
55
56 Image
57 {
58 id: _img
59 anchors.fill: parent
60 source: control.url
61 fillMode: Image.PreserveAspectCrop
62 sourceSize.width: width
63 sourceSize.height: height
64
65 Rectangle
66 {
67 color: "#333"
68 opacity: 0.5
69 anchors.fill: parent
70 }
71
72 Label
73 {
74 anchors.centerIn: parent
75 text: _infoModel.pixelSize.width + " x " + _infoModel.pixelSize.height
76 color: "white"
77 padding: Maui.Style.defaultPadding
78 background: Rectangle
79 {
80 color: "#333"
81 radius: Maui.Style.radiusV
82 }
83 }
84
85 }
86 }
87
88 FB.TagsBar
89 {
90 Layout.fillWidth: true
91 visible: count > 0
92 allowEditMode: false
93 list.urls: [control.url]
94 list.strict: false
95 }
96
97 Maui.InfoDialog
98 {
99 id: _editTagDialog
100 property alias key : _keyField.text
101 property alias value : _valueField.text
102
103 title: i18n ("Edit")
104 message: i18nd("mauikitimagetools","Editing Exif tag")
105
106 standardButtons: Dialog.Save | Dialog.Cancel
107
109 {
110 id: _keyField
111 Layout.fillWidth: true
112 placeholderText: i18nd("mauikitimagetools","Tag key")
113 }
114
116 {
117 id: _valueField
118 Layout.fillWidth: true
119 placeholderText: i18nd("mauikitimagetools","Tag value")
120 }
121
122 onAccepted:
123 {
124 console.log(_editTagDialog.key, _editTagDialog.value)
125 if(_infoModel.editTag(_editTagDialog.key, _editTagDialog.value))
126 {
127 _editTagDialog.close()
128 }else
129 {
130 _editTagDialog.alert(i18nd("mauikitimagetools","Could not edit the tag"), 2)
131 }
132 }
133
134 onRejected:
135 {
136 _editTagDialog.close()
137 }
138
139 function set(key, value)
140 {
141 _editTagDialog.key = key
142 _editTagDialog.value = value
143 _editTagDialog.open()
144 }
145 }
146
147 Maui.InfoDialog
148 {
149 id: _removeTagDialog
150 property string key
151 property string value
152
153 title: i18n ("Remove")
154 message: i18nd("mauikitimagetools","Are you sure you want to remove the Exif tag %1?", _removeTagDialog.value)
155
156 standardButtons: Dialog.Yes | Dialog.Cancel
157
158 onAccepted:
159 {
160 if(_infoModel.removeTag(_removeTagDialog.key))
161 {
162 _removeTagDialog.close()
163 }else
164 {
165 _removeTagDialog.alert(i18nd("mauikitimagetools","Could not remove the tag"), 2)
166 }
167 }
168
169 onRejected:
170 {
171 _removeTagDialog.close()
172 }
173
174 function set(key, value)
175 {
176 _removeTagDialog.key = key
177 _removeTagDialog.value = value
178 _removeTagDialog.open()
179 }
180 }
181
182 Maui.InfoDialog
183 {
184 id: _commentDialog
185
186 title: i18n ("Comment")
187
188 TextArea
189 {
190 id: _commentArea
191 Layout.fillWidth: true
192 Layout.preferredHeight: 200
193
194 text: _infoModel.exifComment
195 }
196
197 standardButtons: Dialog.Save | Dialog.Cancel
198 onAccepted:
199 {
200 _infoModel.setComment(_commentArea.text)
201 _commentDialog.close()
202 }
203
204 onRejected: _commentDialog.close()
205 }
206
207 Maui.InfoDialog
208 {
209 id: _gpsTagDialog
210
211 title: i18n ("GPS")
212
213 standardButtons: Dialog.Save | Dialog.Cancel
214
216 {
217 id: _lat
218 text: _infoModel.lat
219 Maui.Controls.title: placeholderText
220 placeholderText: i18n("Latitude")
221 validator: DoubleValidator
222 {
223 notation: DoubleValidator.StandardNotation
224 }
225 Layout.fillWidth: true
226 }
227
228 Maui.TextField
229 {
230 id: _lon
231 placeholderText: i18n("Longitude")
232 Maui.Controls.title: placeholderText
233
234 text: _infoModel.lon
235 validator: DoubleValidator
236 {
237 notation: DoubleValidator.StandardNotation
238 }
239 Layout.fillWidth: true
240 }
241
242 // Maui.TextField
243 // {
244 // id: _alt
245 // placeholderText: i18n("Altitude")
246 // Maui.Controls.title: placeholderText
247
248 // text: _infoModel.alt
249 // validator: DoubleValidator
250 // {
251 // notation: DoubleValidator.StandardNotation
252 // }
253
254 // // onAcceptableInputChanged: color = acceptableInput ? "black" : "red";
255
256 // Layout.fillWidth: true
257 // }
258
259 onAccepted:
260 {
261 if(_infoModel.setGpsData(_lat.text, _lon.text))
262 {
263 _editTagDialog.close()
264 }else
265 {
266 _editTagDialog.alert(i18nd("mauikitimagetools","Could not save the GPS data"), 2)
267 }
268 }
269
270 onRejected:
271 {
272 _gpsTagDialog.close()
273 }
274 }
275
276 Maui.SectionGroup
277 {
278 Layout.fillWidth: true
279
280 title: i18nd("mauikitimagetools","Details")
281 description: i18nd("mauikitimagetools","File information")
282
283 Repeater
284 {
285 model: Maui.BaseModel
286 {
287 list: IT.PicInfoModel
288 {
289 id:_infoModel
290 }
291 }
292
293 delegate: Maui.FlexSectionItem
294 {
295 visible: model.value && String(model.value).length > 0
296 label1.text: model.name
297 label2.text: model.value
298
299 ToolButton
300 {
301 visible: model.key
302 icon.name: "document-edit"
303 onClicked: _editTagDialog.set(model.key, model.value)
304 }
305
306 ToolButton
307 {
308 visible: model.key
309 icon.name: "edit-delete"
310 onClicked: _removeTagDialog.set(model.key, model.value)
311 }
312 }
313 }
314
315 Button
316 {
317 Layout.fillWidth: true
318
319 // icon.name: "list-add"
320 text: "Add Exif tag"
321 onClicked: _editTagDialog.open()
322 }
323 }
324
325 Maui.SectionGroup
326 {
327 Layout.fillWidth: true
328
329 title: i18nd("mauikitimagetools","Comment & Description")
330
331 TextArea
332 {
333 text: _infoModel.exifComment
334 visible: text.length > 0
335 Layout.fillWidth: true
336 Layout.preferredHeight: 100
337 readOnly: true
338 }
339
340 RowLayout
341 {
342 spacing: Maui.Style.defaultSpacing
343 Layout.fillWidth: true
344
345 Button
346 {
347 text: i18n("Add Comment")
348 Layout.fillWidth: true
349 onClicked: _commentDialog.open()
350 }
351
352 Button
353 {
354 text: i18n("Remove Comment")
355 Layout.fillWidth: true
356 visible: _infoModel.exifComment.length>0
357 onClicked: _infoModel.removeComment()
358 Maui.Controls.status: Maui.Controls.Negative
359 }
360 }
361 }
362
364 {
365 Layout.fillWidth: true
366
367 title: i18nd("mauikitimagetools","GPS")
368 description: i18nd("mauikitimagetools","Geolocation tags")
369
371 {
372 visible: _mapLoader.visible
373 label1.text: i18n("City")
374 label2.text: _infoModel.cityName
375 }
376
377 RowLayout
378 {
379 spacing: Maui.Style.defaultSpacing
380 Layout.fillWidth: true
381
382 Button
383 {
384 Layout.fillWidth: true
385 text: i18n("Set GPS info")
386 onClicked: _gpsTagDialog.open()
387 }
388
389 Loader
390 {
391 asynchronous: true
392 active: _mapLoader.active
393 visible: active
394 Layout.fillWidth: true
395
396 sourceComponent: Button
397 {
398 text: i18n("Remove GPS info")
399 Maui.Controls.status: Maui.Controls.Negative
400 onClicked: _infoModel.removeGpsData()
401 }
402 }
403 }
404
405 Loader
406 {
407 id: _mapLoader
408 asynchronous: true
409 active: visible
410 visible: _infoModel.lat !== 0 && _infoModel.lon !== 0
411 Layout.fillWidth: true
412 Layout.preferredHeight: 400
413
414 sourceComponent: Map
415 {
416 id: map
417 color: Maui.Theme.backgroundColor
418
419 // gesture.acceptedGestures: MapGestureArea.NoGesture
420 // gesture.flickDeceleration: 3000
421 // gesture.enabled: true
422
423 plugin: Plugin
424 {
425 id: mapPlugin
426 name: "osm" // "mapboxgl", "esri", ...
427 // specify plugin parameters if necessary
428 // PluginParameter {
429 // name:
430 // value:
431 // }
432 }
433 // center: QtPositioning.coordinate(_infoModel.lat, _infoModel.lon) // Oslo
434 zoomLevel: 16
435 center
436 {
437 latitude: _infoModel.lat
438 longitude:_infoModel.lon
439 }
440
441 MapCircle
442 {
443 center: map.center
444 radius: 50.0
445 color: Maui.Theme.highlightColor
446 }
447
448 Component.onCompleted:
449 {
450 map.addMapItem(map.circle)
451 }
452 }
453 }
454 }
455}
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)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:58:16 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.