00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __AKNICONARRAY_H__
00023 #define __AKNICONARRAY_H__
00024
00025
00026
00027 #include <e32base.h>
00028
00029
00030
00031 class CGulIcon;
00032 class TResourceReader;
00033
00034
00035
00036
00042 class CAknIconArray : public CArrayPtrFlat<CGulIcon>
00043 {
00044 public:
00048 IMPORT_C CAknIconArray(TInt aGranurality);
00049
00055 IMPORT_C void ConstructFromResourceL(TInt aResId);
00056
00063 IMPORT_C void ConstructFromResourceL(TResourceReader& aReader);
00064
00068 IMPORT_C ~CAknIconArray();
00069
00070 public:
00076 IMPORT_C void AppendFromResourceL(TInt aResId);
00077
00084 IMPORT_C void AppendFromResourceL(TResourceReader& aReader);
00085
00086 private:
00112 HBufC* GetBmpNameLC(TResourceReader& aReader);
00113
00114 };
00115
00116
00117
00118 #endif
00119
00120
00121
00122