00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __ContactAsynchFindAPPUI_H_
00018 #define __ContactAsynchFindAPPUI_H_
00019
00020 #include <aknappui.h>
00021
00022 #include <cntdb.h>
00023
00024 class CContactAsynchFindMainView;
00025 class CContactRead;
00026 class CFindWrapper;
00027
00028
00029 class CContactAsynchFindAppUi : public CAknAppUi, public MIdleFindObserver
00030 {
00031 public:
00032
00033 void ConstructL();
00034 ~CContactAsynchFindAppUi();
00035
00036 void HandleCommandL(TInt aCommand);
00037
00038 void HandleResourceChangeL(TInt aType);
00039
00040 public:
00041
00042 void IdleFindCallback();
00043
00044 private:
00045
00046 CContactAsynchFindMainView* iMainView;
00047 CContactRead* iContactReader;
00048 CIdleFinder* iFindWrapper;
00049
00050
00051 };
00052
00053 #endif // __ContactAsynchFindAPPUI_H_
00054
00055