00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef CIMAGEAPPVIEW
00017 #define CIMAGEAPPVIEW
00018
00019 #include <coecntrl.h>
00020 #include <fbs.h>
00021
00022 #include "CImageAppUi.h"
00023
00024
00025 class CImageAppView : public CCoeControl, public MCoeControlBrushContext
00026 {
00027 public:
00028 void ConstructL(const TRect& aRect);
00029
00030
00031 TDisplayMode DisplayMode() const;
00032
00033 void DrawBitmapNow();
00034
00035 void Clear();
00036
00037 void SetBitmap(CFbsBitmap* aBitmap);
00038
00039 private:
00040
00041 void Draw(const TRect& ) const;
00042
00043 private:
00044 CFbsBitmap* iBitmap;
00045 };
00046
00047 #endif
00048