~fboucault/camera-app/fix_header_flickering_arale

« back to all changes in this revision

Viewing changes to cameraapplication.h

  • Committer: Florian Boucault
  • Date: 2014-07-31 18:41:17 UTC
  • mto: This revision was merged to the branch mainline in revision 341.
  • Revision ID: florian.boucault@canonical.com-20140731184117-s8b4pieonx1jn0ro
Added export mode so that other apps can request pictures from the camera app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    Q_PROPERTY(bool desktopMode READ isDesktopMode CONSTANT)
32
32
    Q_PROPERTY(QString picturesLocation READ picturesLocation CONSTANT)
33
33
    Q_PROPERTY(QString videosLocation READ videosLocation CONSTANT)
 
34
    Q_PROPERTY(QString temporaryLocation READ temporaryLocation CONSTANT)
34
35
 
35
36
public:
36
37
    CameraApplication(int &argc, char **argv);
39
40
    bool isDesktopMode() const;
40
41
    QString picturesLocation() const;
41
42
    QString videosLocation() const;
 
43
    QString temporaryLocation() const;
42
44
 
43
45
private:
44
46
    QScopedPointer<QQuickView> m_view;