00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef AUDIOTONEVIEW_H
00018 #define AUDIOTONEVIEW_H
00019
00020
00021 #include <QikViewBase.h>
00022
00023
00024 class CEikLabel;
00025
00026
00027
00028 class CAudioToneMainView : public CQikViewBase
00029 {
00030 public:
00031 static CAudioToneMainView* NewLC(CQikAppUi& aAppUi);
00032 ~CAudioToneMainView();
00033
00034 public:
00035 TVwsViewId ViewId()const;
00036 void HandleCommandL(CQikCommand& aCommand);
00037
00038 public:
00039 void SetTextL(const TDesC& aText);
00040
00041 protected:
00042 void ViewConstructL();
00043 void SizeChanged();
00044
00045 private:
00046 CAudioToneMainView(CQikAppUi& aAppUi);
00047 void ConstructL();
00048
00049 private:
00050 CEikLabel* iEikLabel;
00051 };
00052
00053 #endif // AUDIOTONEVIEW_H
00054
00055