equal
deleted
inserted
replaced
92 |
92 |
93 /** |
93 /** |
94 * Detach slide loader object |
94 * Detach slide loader object |
95 */ |
95 */ |
96 inline CUniSlideLoader* DetachSlideLoader(); |
96 inline CUniSlideLoader* DetachSlideLoader(); |
|
97 |
|
98 /** |
|
99 * get header object |
|
100 */ |
|
101 inline CUniEditorHeader* GetHeader(); |
|
102 |
|
103 /** |
|
104 * get slide loader object |
|
105 */ |
|
106 inline CUniSlideLoader* GetSlideLoader(); |
|
107 |
97 |
108 |
98 /** |
109 /** |
99 * Return parse result |
110 * Return parse result |
100 */ |
111 */ |
101 TInt ParseResult(); |
112 TInt ParseResult(); |
102 |
113 |
103 /** |
114 /** |
104 * From MUniDataModelObserver |
115 * From MUniDataModelObserver |
105 */ |
116 */ |
106 void RestoreReady( TInt aParseResult, TInt aError ); |
117 void RestoreReady( TInt aParseResult, TInt aError ); |
|
118 |
|
119 /** |
|
120 * check Is optimized flow |
|
121 */ |
|
122 TBool IsOptimizedFlagSet(); |
107 |
123 |
108 protected: |
124 protected: |
109 |
125 |
110 /** |
126 /** |
111 * From CActive |
127 * From CActive |
217 |
233 |
218 TInt iError; |
234 TInt iError; |
219 TBool iSmilEditorSupported; |
235 TBool iSmilEditorSupported; |
220 // count of failed image operations |
236 // count of failed image operations |
221 TInt iParseResultTemp; |
237 TInt iParseResultTemp; |
|
238 // sendui+jepg optimization changes |
|
239 TBool iOptimizedFlow; |
222 |
240 |
223 }; |
241 }; |
224 |
242 |
225 #include "UniEditorLaunchOperation.inl" |
243 #include "UniEditorLaunchOperation.inl" |
226 |
244 |