silence dbus-send output
[harmattan/cameraplus] / src / platformsettings.h
index cb51a12..b3b6898 100644 (file)
@@ -32,6 +32,15 @@ class QSettings;
 class PlatformSettings : public QObject {
   Q_OBJECT
 
+  Q_PROPERTY(QString imageCaptureStartedSound READ imageCaptureStartedSound CONSTANT);
+  Q_PROPERTY(QString imageCaptureEndedSound READ imageCaptureEndedSound CONSTANT);
+  Q_PROPERTY(QString videoRecordingStartedSound READ videoRecordingStartedSound CONSTANT);
+  Q_PROPERTY(QString videoRecordingEndedSound READ videoRecordingEndedSound CONSTANT);
+  Q_PROPERTY(QString autoFocusAcquiredSound READ autoFocusAcquiredSound CONSTANT);
+  Q_PROPERTY(QString imagePath READ imagePath CONSTANT);
+  Q_PROPERTY(QString videoPath READ videoPath CONSTANT);
+  Q_PROPERTY(QString temporaryVideoPath READ temporaryVideoPath CONSTANT);
+
 public:
   PlatformSettings(QObject *parent = 0);
   ~PlatformSettings();
@@ -57,6 +66,16 @@ public:
 
   Service service(const QString& id);
 
+  QString imageCaptureStartedSound() const;
+  QString imageCaptureEndedSound() const;
+  QString videoRecordingStartedSound() const;
+  QString videoRecordingEndedSound() const;
+  QString autoFocusAcquiredSound() const;
+
+  QString imagePath() const;
+  QString videoPath() const;
+  QString temporaryVideoPath() const;
+
 public slots:
   void init();