Expose capture request id in the declarative camera.
It's useful to associate imageCaptured/Saved signals data with capture requests. Change-Id: I3e98c4a194403bd338a1b5313d8736b4baf79961 Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
8b1f11b370
commit
00d1e2f65e
@@ -86,8 +86,8 @@ public:
|
||||
QString errorString() const;
|
||||
|
||||
public Q_SLOTS:
|
||||
void capture();
|
||||
void captureToLocation(const QString &location);
|
||||
int capture();
|
||||
int captureToLocation(const QString &location);
|
||||
void cancelCapture();
|
||||
|
||||
void setResolution(const QSize &resolution);
|
||||
@@ -96,11 +96,11 @@ public Q_SLOTS:
|
||||
Q_SIGNALS:
|
||||
void readyForCaptureChanged(bool);
|
||||
|
||||
void imageExposed();
|
||||
void imageCaptured(const QString &preview);
|
||||
void imageMetadataAvailable(const QString &key, const QVariant &value);
|
||||
void imageSaved(const QString &path);
|
||||
void captureFailed(const QString &message);
|
||||
void imageExposed(int requestId);
|
||||
void imageCaptured(int requestId, const QString &preview);
|
||||
void imageMetadataAvailable(int requestId, const QString &key, const QVariant &value);
|
||||
void imageSaved(int requestId, const QString &path);
|
||||
void captureFailed(int requestId, const QString &message);
|
||||
|
||||
void resolutionChanged(const QSize &);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user