00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef TXTEDITORSERVICESESSION_H
00024 #define TXTEDITORSERVICESESSION_H
00025
00026 #include <f32file.h>
00027 #include <eikdoc.h>
00028 #include <AknServerApp.h>
00029
00030
00031 enum TTxtViewerServiceCmds
00032 {
00033 ETxtViewerServiceCmdOpen = RApaAppServiceBase::KServiceCmdBase
00034 };
00035
00036 class CTxtViewerServiceSession : public CAknAppServiceBase
00037 {
00038 public:
00042 IMPORT_C CTxtViewerServiceSession();
00043
00047 ~CTxtViewerServiceSession();
00048
00049 protected:
00053 void CreateL();
00054
00055 void ServiceL(const RMessage2& aMessage);
00056
00060 void ServiceError(const RMessage2& aMessage,TInt aError);
00061
00062 private:
00067 void OpenL( const RMessage2& aMessage );
00068
00069 private:
00070 CEikDocument* iDoc;
00071 };
00072
00073 #endif