dlnasrv_exampleapp/inc/exampleappengine.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dlnasrv_exampleapp/inc/exampleappengine.h	Wed Nov 03 11:45:09 2010 +0200
@@ -0,0 +1,77 @@
+/*
+* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+#ifndef EXAMPLEAPPENGINE_H
+#define EXAMPLEAPPENGINE_H
+
+#include <qobject.h>
+
+class QFile;
+class ExampleAppEnginePrivate;
+
+class ExampleAppEngine : public QObject
+{
+    Q_OBJECT
+
+public:
+    enum
+    {
+        PlaybackStateStopped,
+        PlaybackStatePaused,
+        PlaybackStateBuffering,
+        PlaybackStatePlaying
+    };
+    
+public:
+    ExampleAppEngine();
+    ~ExampleAppEngine();
+    
+public:
+    void construct();
+    int getIap() const;
+    QString getIapName() const;
+    bool isPauseSupported() const;
+    bool isSeekSupported() const;
+    int getPlaybackState() const;
+    
+public slots:
+    void searchRenderingDevices();
+    void prepareRenderingDevice(const QString &uuid);
+    int initFile(const QString& file);
+    void play();
+    void pause();
+    void stop();
+    void volumeUp();
+    void volumeDown();
+    void rew();
+    void ff();
+    
+signals:
+    void initComplete(int);
+    void stateChanged(int);
+    void renderingDeviceSearchStarted();
+    void renderingDeviceFound(const QString &, const QString &);
+    void renderingDeviceDisappeared(const QString &, const QString &);
+    void iapUpdated(const QString &);
+    void iapUpdated(int);
+        
+private: // data
+    ExampleAppEnginePrivate* const d_ptr;
+    Q_DECLARE_PRIVATE_D(d_ptr, ExampleAppEngine)
+    Q_DISABLE_COPY(ExampleAppEngine)    
+};
+
+#endif // EXAMPLEAPPENGINE_H