/usr/include/KF5/KIPI/kipi/interface.h is in libkf5kipi-dev 4:16.08.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 | /** ===========================================================
* @file
*
* This file is a part of digiKam project
* <a href="http://www.digikam.org">http://www.digikam.org</a>
*
* @date 2004-02-01
* @brief main kipi host application interface
*
* @author Copyright (C) 2004-2016 by Gilles Caulier
* <a href="mailto:caulier dot gilles at gmail dot com">caulier dot gilles at gmail dot com</a>
* @author Copyright (C) 2006-2012 by Marcel Wiesweg
* <a href="mailto:marcel dot wiesweg at gmx dot de">marcel dot wiesweg at gmx dot de</a>
* @author Copyright (C) 2004-2005 by Renchi Raju
* <a href="mailto:renchi dot raju at gmail dot com">renchi dot raju at gmail dot com</a>
* @author Copyright (C) 2004-2005 by Jesper K. Pedersen
* <a href="mailto:blackie at kde dot org">blackie at kde dot org</a>
* @author Copyright (C) 2004-2005 by Aurelien Gateau
* <a href="mailto:aurelien dot gateau at free dot fr">aurelien dot gateau at free dot fr</a>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation;
* either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* ============================================================ */
#ifndef KIPI_INTERFACE_H
#define KIPI_INTERFACE_H
// Qt includes
#include <QtCore/QFlags>
#include <QtCore/QObject>
#include <QtCore/QVariant>
#include <QtCore/QList>
#include <QtCore/QUrl>
#include <QtCore/QByteArray>
#include <QtGui/QImage>
// Local includes
#include "libkipi_export.h"
class QPixmap;
class QWidget;
class QAbstractItemModel;
/** @namespace KIPI */
namespace KIPI
{
class ImageCollection;
class ImageCollectionSelector;
class ImageInfo;
class ImageInfoShared;
class UploadWidget;
/*!
@enum KIPI::Features
Not all host applications support the full subset of features that KIPI
allows access to. As an example <a href="http://www.digikam.org">digiKam</a> support comments
for albums. Thus before a plugin expect a decant value for the comment,
it should check whether KIPI::CollectionsHaveComments are set. It does so
using KIPI::Interface::hasFeature().
*/
enum Features
{
CollectionsHaveComments = 1 << 0, /** This feature specifies that albums have descriptions associated to them. */
ImagesHasComments = 1 << 1, /** This feature specifies that images in the host application has descriptions associated to them. */
ImagesHasTime = 1 << 2, /** This feature specifies that images has a date associated with it, which the host application can display and set. */
HostSupportsDateRanges = 1 << 3, /** This feature specifies whether the host application supports that the user can specify a date range for images, like 1998-2000. */
HostAcceptNewImages = 1 << 4, /** This feature specifies that the host application do accept new images. Use \ref ImageCollection::uploadPath to find the
location to place the image, and \ref KIPI::Interface::addImage() to tell the host application about the new image. */
ImagesHasTitlesWritable = 1 << 5, /** This feature specifies whether the plugin can change the title for images. */
CollectionsHaveCategory = 1 << 6, /** This feature specifies that collections are category associated to them ('travels', 'friends', 'monuments', etc.). */
CollectionsHaveCreationDate = 1 << 7, /** This feature specifies that collections are a creation date associated to them. */
HostSupportsProgressBar = 1 << 8, /** This feature specifies whether the host application has a progress manager available to report progress information from plugins. */
HostSupportsTags = 1 << 9, /** This feature specifies whether the host application supports keywords for images. */
HostSupportsRating = 1 << 10, /** This feature specifies whether the host application supports rating values for images. */
HostSupportsThumbnails = 1 << 11, /** This feature specifies that host application can provide image thumbnails. */
HostSupportsReadWriteLock = 1 << 12, /** This feature specifies that host application has mechanism to lock/unlock items to prevent concurent operations. */
HostSupportsPickLabel = 1 << 13, /** This feature specifies whether the host application supports pick label values for images, used for photograph workflow. */
HostSupportsColorLabel = 1 << 14, /** This feature specifies whether the host application supports color label values for images, used to sort item with color flag. */
HostSupportsItemReservation = 1 << 15, /** This feature specifies whether the host application supports item reservation. */
HostSupportsPreviews = 1 << 16, /** This feature specifies that host application can provide image preview. */
HostSupportsRawProcessing = 1 << 17, /** This feature specifies that host application can process Raw files. */
HostSupportsMetadataProcessing = 1 << 18, /** This feature specifies that host application can process Metadata from files. */
HostSupportsSaveImages = 1 << 19 /** This feature specifies that host application can save image files. */
};
// NOTE: When a new item is add to Features, please don't forget to patch Interface::hasFeature().
enum EditHint
{
UndefinedEditHint = 0,
/** The image data (pixels) have been edited
*/
HintPixelContentChanged = 1 << 0,
/** Metadata have been edited
*/
HintMetadataChanged = 1 << 1,
/** All changes done (typically, to the metadata) are also communicated via image attributes.
* In other words, if the host updates its internal storage from attribute changes
* and ignores changes on disk, it already has all information.
*/
HintChangeReflectedByAttributes
= 1 << 2,
/** The operation indicated as "about to be done" has been aborted / did not result in a change.
*/
HintEditAborted = 1 << 3,
/** Short name, implies that only metadata changed, and all metadata changes are communicated via attributes.
*/
HintMetadataOnlyChange = HintMetadataChanged | HintChangeReflectedByAttributes
};
Q_DECLARE_FLAGS(EditHints, EditHint)
// ---------------------------------------------------------------------------------------------------------------
class LIBKIPI_EXPORT FileReadWriteLock
{
public:
/**
* A Kipi FileReadWriteLock refers to application-wide reading/writing
* to a file on disk; it is created with createReadWriteLock for an Url.
* All semantics are identical to a recursive QReadWriteLock.
* You must unlock as often as you locked.
*
* Note: locking will incur a mutex wait if the file is not free.
* Therefore, calling the lock methods, especially lockForWrite,
* from the UI thread shall be done with care, or rather avoided.
*
* Note that you must not keep a lock for a longer time, but only for the imminent
* low-level reading or writing on disk.
*
* See reserveForAction() API for longer lasting reservation which
* do not incur waits.
*
* It is strongly recommended to use the FileReadLocker or FileWriteLocker
* convenience locks instead of creating and locking a FileReadWriteLock directly.
*/
virtual ~FileReadWriteLock() {}
virtual void lockForRead() = 0;
virtual void lockForWrite() = 0;
virtual bool tryLockForRead() = 0;
virtual bool tryLockForRead(int timeout) = 0;
virtual bool tryLockForWrite() = 0;
virtual bool tryLockForWrite(int timeout) = 0;
virtual void unlock() = 0;
};
// ---------------------------------------------------------------------------------------------------------------
/**
* A Kipi MetadataProcessor refers to application-wide to process file metadata
* about Exif/Iptc/Xmp management; it is created with Interface::createMetadataProcessor().
* You can use libkexiv2 to re-implement this class as it's implemented in tests/common/kipiinterface.cpp.
*/
class LIBKIPI_EXPORT MetadataProcessor : public QObject
{
public:
/** Image orientation values from Exif tag.
*/
enum ExifOrientation
{
UNSPECIFIED = 0,
NORMAL = 1,
HFLIP = 2,
ROT_180 = 3,
VFLIP = 4,
ROT_90_HFLIP = 5,
ROT_90 = 6,
ROT_90_VFLIP = 7,
ROT_270 = 8
};
public:
MetadataProcessor() {};
virtual ~MetadataProcessor() {};
virtual bool load(const QUrl& url) = 0;
virtual bool applyChanges() = 0;
/** NOTE: writeToFileOnly force to write metadata only in file without to manage XMP sidecar file
*/
virtual bool save(const QUrl& url, bool writeToFileOnly=false) = 0;
virtual QSize getPixelSize() = 0;
virtual bool setImageProgramId(const QString& program, const QString& version) = 0;
virtual QSize getImageDimensions() = 0;
virtual bool setImageDimensions(const QSize& size) = 0;
/** NOTE: orientation is standard value from Exif orientation tag. See ExifOrientation values.
*/
virtual int getImageOrientation() = 0;
virtual bool setImageOrientation(int orientation) = 0;
virtual bool rotateExifQImage(QImage& img, int orientation) = 0;
virtual QDateTime getImageDateTime() = 0;
virtual bool setImageDateTime(const QDateTime& dt) = 0;
virtual bool getImagePreview(QImage& img) = 0;
virtual bool setImagePreview(const QImage& img) = 0;
virtual bool hasExif() = 0;
virtual bool hasIptc() = 0;
virtual bool hasXmp() = 0;
virtual QByteArray getExif() = 0;
virtual QByteArray getIptc() = 0;
virtual QByteArray getXmp() = 0;
virtual bool setExif(const QByteArray& data) = 0;
virtual bool setIptc(const QByteArray& data) = 0;
virtual bool setXmp(const QByteArray& data) = 0;
virtual bool registerXmpNameSpace(const QString& uri, const QString& prefix) = 0;
virtual bool supportXmp() = 0;
virtual bool canWriteXmp(const QUrl& url) = 0;
virtual bool removeExifTags(const QStringList& tagFilters) = 0;
virtual bool removeIptcTags(const QStringList& tagFilters) = 0;
virtual bool removeXmpTags(const QStringList& tagFilters) = 0;
virtual bool getGPSInfo(double& altitude, double& latitude, double& longitude) = 0;
virtual bool setGPSInfo(const double altitude, const double latitude, const double longitude) = 0;
virtual bool removeGPSInfo() = 0;
virtual QString getExifTagString(const QString& tag) = 0;
virtual bool setExifTagString(const QString& tag, const QString& val) = 0;
virtual bool getExifTagRational(const QString& tag, long int& num, long int& den) = 0;
virtual bool setExifTagRational(const QString& tag, long int num, long int den) = 0;
virtual QString getXmpTagString(const QString& tag) = 0;
virtual bool setXmpTagString(const QString& tag, const QString& val) = 0;
virtual QStringList getXmpKeywords() = 0;
virtual bool setXmpKeywords(const QStringList& keywords) = 0;
virtual QVariant getXmpTagVariant(const QString& tag) = 0;
};
// ---------------------------------------------------------------------------------------------------------------
class LIBKIPI_EXPORT Interface : public QObject
{
Q_OBJECT
public:
explicit Interface(QObject* const parent, const QString& name=QString());
virtual ~Interface();
/**
* Tells whether the host application under which the plugin currently executes a given feature.
* See KIPI::Features for details on the individual features.
*/
bool hasFeature(Features feature) const;
/**
* Returns list of all images in current album.
* If there are no current album, the returned
* KIPI::ImageCollection::isValid() will return false.
*/
virtual ImageCollection currentAlbum() = 0;
/**
* Current selection in a thumbnail view for example.
* If there are no current selection, the returned
* KIPI::ImageCollection::isValid() will return false.
*/
virtual ImageCollection currentSelection() = 0;
/**
* Returns a list of albums.
*/
virtual QList<ImageCollection> allAlbums() = 0;
/**
* Returns the image info container for item pointed by url.
*/
virtual ImageInfo info(const QUrl&) = 0;
/**
* Tells to host application that a new image has been made available to it.
* Returns true if the host application did accept the new image, otherwise err will be filled with
* an error description.
*/
virtual bool addImage(const QUrl&, QString& err);
/**
* Tells to host application that a new image has been removed.
*/
virtual void delImage(const QUrl&);
/**
* Tells to host application that the following images has changed on disk
*/
virtual void refreshImages(const QList<QUrl>&);
/**
* Tells to host application to render imediatly a preview image for one item.
* This method re-implemented in host application and be thread safe.
*/
virtual QImage preview(const QUrl& url);
/**
* Tell to host application to save image at url in specific format (JPG, PNG, TIF, etc).
* Pixels image data must be in ARGB, with image size (width,height).
* Pixels can be in siwteen bits per color per pixels and can have an alpha chanel.
* If cancel flag is passed it permit to cancel save operation.
* This method re-implemented in host application must be thread safe.
*/
virtual bool saveImage(const QUrl& url, const QString& format,
const QByteArray& data, uint width, uint height,
bool sixteenBit, bool hasAlpha,
bool* cancel=0);
/**
* Tells to host application to render a preview image for one item.
* A resizement to to a specific size will be generated if preview is largest than.
* Use a positive resizedTo value in this case, else -1. Aspect ratio is preserved while rendering.
* This asynchronous method must be re-implemented in host application.
* Use gotPreview() signal to take preview.
*/
virtual void preview(const QUrl& url, int resizedTo);
/**
* Tells to host application to render a thumbnail for one item. This asynchronous method must be
* re-implemented in host application. Use gotThumbnail() signal to take thumb.
*/
virtual void thumbnail(const QUrl& url, int size);
/**
* Ask to Kipi host application to render thumbnails for a list of images. This asynchronous method must be
* re-implemented in host application. Use gotThumbnail() signal to take thumbs.
*/
virtual void thumbnails(const QList<QUrl>& list, int size);
/**
Ask to Kipi host application to prepare progress manager for a new entry. This method must return from host
a string identification about progress item created. This id will be used later to change in host progress item
value and text. Title is text used to name progress item in host application.
Set canBeCanceled to true if you want that progress item provide a cancel button to close process from kipi host.
Use progressCanceled() signal to manage feedback from kipi host when cancel button is pressed.
Set hasThumb to true if you want that progress item support small thumbnail near progress bar.
Use progresssThumbnailChanged() to change thumbnail in kipi host and progressValueChanged() to advance progress
bar in percent. Use progressStatusChanged() to change description string of progress item.
To close progress item in kipi host, for example when all is done in plugin, use progressCompleted() method.
If you Host do not re-implement this method, value returned is a null string.
You must re-implement this method if your host support HostSupportsProgressBar feature.
*/
virtual QString progressScheduled(const QString& title, bool canBeCanceled, bool hasThumb) const;
/** To manage progress state from plugin to host application. id is identification string of process item
* returned from host by progressScheduled() method.
*/
virtual void progressValueChanged(const QString& id, float percent);
virtual void progressStatusChanged(const QString& id, const QString& status);
virtual void progressThumbnailChanged(const QString& id, const QPixmap& thumb);
virtual void progressCompleted(const QString& id);
/** Returns RAW file extensions managed by host application, separated by blank spaces, (ex: "NEF CR2 ARW PEF").</td>
*/
virtual QString rawFiles();
virtual ImageCollectionSelector* imageCollectionSelector(QWidget* parent)=0;
virtual UploadWidget* uploadWidget(QWidget* parent)=0;
virtual QAbstractItemModel* getTagTree() const;
/**
* Supported if HostSupportsItemReservation
*
* If an item is scheduled in a plugin for an action which will edit the object,
* call this method. If the user tries to subject the reserved item to another operation,
* possibly conflicting, a warning message or other action may be taken.
*
* Give the URL of the item and a QObject which acts as the holder of the reservation.
* The object must not be null, and the reservation will be cancelled when the object is deleted.
* descriptionOfAction is a user-presentable string describing the action for which
* the reservation was made.
*
* Returns true if a reservation was made, or false if a reservation could not be made.
*/
virtual bool reserveForAction(const QUrl& url, QObject* const reservingObject,
const QString& descriptionOfAction) const;
/**
* Supported if HostSupportsItemReservation
*
* Clears a reservation made previously with reserveForAction for the given reservingObject.
* You must clear any reservation you made, or, alternatively, delete the reserving object.
*/
virtual void clearReservation(const QUrl& url, QObject* const reservingObject);
/**
* Supported if HostSupportsItemReservation
*
* Returns if the item is reserved. You can pass a pointer to a QString; if the return value
* is true, the string will be set to the descriptionOfAction set with reserveForAction.
*/
virtual bool itemIsReserved(const QUrl& url, QString* const descriptionOfAction = 0) const;
/**
* Supported if HostSupportsReadWriteLock
* Creates a ReadWriteLock for the given Url.
* You must unlock the ReadWriteLock as often as you locked.
* Deleting the object does not unlock it.
* The implementation from KIPI host application must be thread-safe.
*
*/
virtual FileReadWriteLock* createReadWriteLock(const QUrl& url) const = 0;
/**
* Supported if HostSupportsMetadataProcessing.
* Creates an instance of MetadataProcessor dedicated to manage file metadata.
* The implementation from KIPI host application must be thread-safe.
*
*/
virtual MetadataProcessor* createMetadataProcessor() const = 0;
/**
* Supported if HostSupportsEditHints
*
* Before an edit operation starts when it has finished, specify a hint for it.
* Change hints are optional and may allow optimizations.
*
* When aboutToEdit has been called, editingFinished must be called afterwards.
* It is strongly recommended to use the EditHintScope instead of these methods.
*/
virtual void aboutToEdit(const QUrl& url, EditHints hints);
virtual void editingFinished(const QUrl& url, EditHints hints);
/**
* Returns a string version of libkipi release ID.
*/
static QString version();
/**
* Return a list of supported image type mimes by Qt image reader.
* 'readWrite' query Qt to list type mimes in read mode (false), or in write mode (true).
*/
static QStringList supportedImageMimeTypes(bool readWrite=false);
Q_SIGNALS:
/**
* Emit when item selection has changed from host application user interface.
* Boolean argument is true if items are select or not in collection.
*/
void selectionChanged(bool hasSelection);
/**
* Emit when current album selection as changed from host application user interface.
* Boolean argument is true if album are select or not in collection.
*/
void currentAlbumChanged(bool hasSelection);
/** Emit when host application has rendered item thumbnail. See asynchronous thumbnail() and thumbnails()
* methods for details.
*/
void gotThumbnail(const QUrl&, const QPixmap&);
/** Emit when host application has rendered item preview image. See assynchronous preview() methods for details.
*/
void gotPreview(const QUrl&, const QImage&);
/**
* This signal is emit from kipi host when a progress item is canceled. id is identification string of progress item.
*/
void progressCanceled(const QString& id);
/**
* Supported if HostSupportsItemReservation
*
* Emitted from reservedForAction and clearReservation, respectively.
* */
void reservedForAction(const QUrl& url, const QString& descriptionOfAction);
void reservationCleared(const QUrl& url);
protected:
/**
* Return a bitwise or of the KIPI::Features that thus application support.
*/
virtual int features() const = 0;
private:
bool hasFeature(const QString& feature) const;
private:
friend class PluginLoader;
};
// ---------------------------------------------------------------------------------------------------------------
/**
* Convenience classes creating a FileReadWriteLock and locking it for you.
* It is strongly recommended to use FileReadWriteLock only through these
* classes, created on the stack, as unlocking will be done automatically for you.
*
* The API is modelled according to the QReadLocker/QWriteLocker classes.
*
* Note that operations are no-ops and fileReadWriteLock() is 0 if not HostSupportsReadWriteLock.
*/
class LIBKIPI_EXPORT FileReadLocker
{
public:
FileReadLocker(Interface* const iface, const QUrl& url);
FileReadLocker(ImageInfoShared* const info);
~FileReadLocker();
FileReadWriteLock* fileReadWriteLock() const;
void unlock();
void relock();
private:
FileReadWriteLock* const d;
};
// ---------------------------------------------------------------------------------------------------------------
class LIBKIPI_EXPORT FileWriteLocker
{
public:
FileWriteLocker(Interface* const iface, const QUrl& url);
FileWriteLocker(ImageInfoShared* const info);
~FileWriteLocker();
FileReadWriteLock* fileReadWriteLock() const;
void unlock();
void relock();
private:
FileReadWriteLock* const d;
};
// ---------------------------------------------------------------------------------------------------------------
class LIBKIPI_EXPORT EditHintScope
{
public:
EditHintScope(Interface* const iface, const QUrl& url, EditHints hints);
~EditHintScope();
void changeAborted();
private:
class Private;
Private* const d;
};
} // namespace KIPI
Q_DECLARE_OPERATORS_FOR_FLAGS(KIPI::EditHints)
#endif /* KIPI_INTERFACE_H */
|