00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef CLMKLANDMARKSELECTORDLG_H
00024 #define CLMKLANDMARKSELECTORDLG_H
00025
00026
00027 #include <e32base.h>
00028 #include <e32std.h>
00029 #include <EPos_Landmarks.h>
00030 #include <EPos_CPosLandmarkDatabase.h>
00031
00032
00033
00034 class CLmkDlgSelectorImplBase;
00035 class MObjectProvider;
00036
00037
00038 class TLmkItemIdDbCombiInfo;
00039
00040
00041
00050 class CLmkLandmarkSelectorDlg : public CBase
00051 {
00052 public:
00061 IMPORT_C static CLmkLandmarkSelectorDlg* NewL();
00062
00066 IMPORT_C ~CLmkLandmarkSelectorDlg();
00067
00068 public:
00076 IMPORT_C void SetMopParent( MObjectProvider* aParent );
00077
00088 IMPORT_C TInt ExecuteLD( TLmkItemIdDbCombiInfo& aSelected );
00089
00105 IMPORT_C TInt ExecuteLD( RArray<TLmkItemIdDbCombiInfo>& aSelectedItems );
00106 private:
00111 CLmkLandmarkSelectorDlg();
00112
00117 void ConstructL( );
00118
00119
00120 private:
00121
00122 TBool iIsMultiSelector;
00123
00125 CLmkDlgSelectorImplBase* iSelector;
00126
00127
00128 TBool* iDestroyedPtr;
00129
00130
00131 RPointerArray <CPosLandmarkDatabase> iDbs;
00132
00133
00134 };
00135
00136 #endif // CLMKLANDMARKSELECTORDLG_H
00137
00138