00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef AUDIOPLAYINGVIEW_H
00018 #define AUDIOPLAYINGVIEW_H
00019
00020 #include <QikViewBase.h>
00021
00022 class CEikLabel;
00023
00024 class CAudioPlayingMainView : public CQikViewBase
00025 {
00026 public:
00027
00031 static CAudioPlayingMainView* NewLC(CQikAppUi& aAppUi);
00032
00036 ~CAudioPlayingMainView();
00037
00038 public:
00039
00043 TVwsViewId ViewId()const;
00044
00048 void HandleCommandL(CQikCommand& aCommand);
00049
00050 public:
00051
00052 void SetTextL(const TDesC& aText);
00053
00054 protected:
00055
00056 void ViewConstructL();
00057
00058 void SizeChanged();
00059
00060 private:
00061
00062 CAudioPlayingMainView(CQikAppUi& aAppUi);
00063
00064 void ConstructL();
00065
00066 private:
00067
00068
00069
00070 CEikLabel* iEikLabel;
00071
00072 };
00073
00074 #endif // AUDIOPLAYINGVIEW_H
00075
00076