mmserv/sts/tsrc/ststester/src/ststester.h
branchRCL_3
changeset 19 095bea5f582e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmserv/sts/tsrc/ststester/src/ststester.h	Tue Aug 31 15:43:02 2010 +0300
@@ -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:
+ * The file defines the interface for the STS Tester.
+ */
+
+#ifndef STSTESTER_H_
+#define STSTESTER_H_
+
+#include "testappbase.h"
+#include <systemtoneservice.h>
+
+enum TOperations
+    {
+    EOperation_StopCurrentAlarm = KOperation_FirstCustomIndex,
+    EOperation_PlayDefaultBeep,
+    EOperation_PlayDefaultAlarm,
+    EOperation_StopClockAlarm,
+    EOperation_PlayDefaultasAlarm,
+    EOperation_PlayIncomingCallAlarm,
+    EOperation_PlayWarningBeep
+    };
+
+class CStsTester : public CTestAppBase, MStsPlayAlarmObserver
+    {
+public:
+    // Methods
+
+    static void ExecuteL();
+
+private:
+    // Methods
+
+    CStsTester();
+
+    ~CStsTester();
+
+    void InitL();
+
+    void Main();
+
+    void MainL();
+
+    // inherited from CTestAppBase
+    virtual void ExecuteOperation(TInt aOperation,
+            const TDesC& aOperationText);
+
+private:
+    // inherited from MPlayAlarmObserver
+    virtual void PlayAlarmComplete(unsigned int aAlarmContext);
+    
+    // Attributes
+
+    enum TPlayState
+        {
+        EStopped, EPlaying
+        };
+
+    // STS attributes
+    CSystemToneService* iSts;
+    unsigned int iCurrentContext;
+    TPlayState iPlayState;
+
+    };
+
+#endif // STSTESTER_H_