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