00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __CSASYNCAPPVIEW_H__
00019 #define __CSASYNCAPPVIEW_H__
00020
00021
00022 #include <coecntrl.h>
00023
00024
00025 class CCSAsyncDocument;
00026
00027
00033 class CCSAsyncAppView : public CCoeControl
00034 {
00035 public:
00036
00045 static CCSAsyncAppView* NewL( const TRect& aRect,
00046 CCSAsyncDocument& aDocument );
00047
00056 static CCSAsyncAppView* NewLC( const TRect& aRect,
00057 CCSAsyncDocument& aDocument );
00058
00064 virtual ~CCSAsyncAppView();
00065
00066 public:
00067
00073 void Draw( const TRect& aRect ) const;
00074
00075 private:
00076
00083 CCSAsyncAppView( CCSAsyncDocument& aDocument );
00084
00090 void ConstructL( const TRect& aRect );
00091
00092 private:
00093
00097 CCSAsyncDocument& iDocument;
00098 };
00099
00100
00101 #endif // __CSASYNCAPPVIEW_H__
00102
00103
00104