williamr@2
|
1 |
/*
|
williamr@2
|
2 |
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
3 |
* All rights reserved.
|
williamr@2
|
4 |
* This component and the accompanying materials are made available
|
williamr@4
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
williamr@2
|
6 |
* which accompanies this distribution, and is available
|
williamr@4
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
williamr@2
|
8 |
*
|
williamr@2
|
9 |
* Initial Contributors:
|
williamr@2
|
10 |
* Nokia Corporation - initial contribution.
|
williamr@2
|
11 |
*
|
williamr@2
|
12 |
* Contributors:
|
williamr@2
|
13 |
*
|
williamr@2
|
14 |
* Description:
|
williamr@2
|
15 |
* Wrappers for standard note types
|
williamr@2
|
16 |
*
|
williamr@2
|
17 |
*/
|
williamr@2
|
18 |
|
williamr@2
|
19 |
|
williamr@2
|
20 |
|
williamr@2
|
21 |
#ifndef __AknNoteWrappers_H__
|
williamr@2
|
22 |
#define __AknNoteWrappers_H__
|
williamr@2
|
23 |
|
williamr@2
|
24 |
|
williamr@4
|
25 |
#include <aknnotedialog.h>
|
williamr@2
|
26 |
#include <AknQueryDialog.h>
|
williamr@2
|
27 |
|
williamr@2
|
28 |
|
williamr@2
|
29 |
class TResourceReader;
|
williamr@2
|
30 |
|
williamr@2
|
31 |
|
williamr@2
|
32 |
class TAknNoteResData
|
williamr@2
|
33 |
{
|
williamr@2
|
34 |
public:
|
williamr@2
|
35 |
void ReadFromResource(TResourceReader& aResReader);
|
williamr@2
|
36 |
public:
|
williamr@2
|
37 |
TInt iResId;
|
williamr@2
|
38 |
CAknNoteDialog::TTimeout iTimeout;
|
williamr@2
|
39 |
CAknNoteDialog::TTone iTone;
|
williamr@2
|
40 |
TBuf<256> iText;
|
williamr@2
|
41 |
};
|
williamr@2
|
42 |
|
williamr@2
|
43 |
/**
|
williamr@2
|
44 |
* Base class for implementing commonly used notes.
|
williamr@2
|
45 |
*/
|
williamr@2
|
46 |
class CAknNoteWrapper : public CAknNoteDialog
|
williamr@2
|
47 |
{
|
williamr@2
|
48 |
public:
|
williamr@2
|
49 |
/**
|
williamr@2
|
50 |
* Class default constructor.
|
williamr@2
|
51 |
*
|
williamr@2
|
52 |
* Does not do anything
|
williamr@2
|
53 |
*/
|
williamr@2
|
54 |
IMPORT_C CAknNoteWrapper();
|
williamr@2
|
55 |
/**
|
williamr@2
|
56 |
* Another class constructor
|
williamr@2
|
57 |
*
|
williamr@2
|
58 |
* Accept self pointer to CEikDialog* in order to NULL
|
williamr@2
|
59 |
* client pointer when a non modal note is dismissed.
|
williamr@2
|
60 |
*
|
williamr@2
|
61 |
* @param aSelfPtr Address of the dialog pointer
|
williamr@2
|
62 |
*/
|
williamr@2
|
63 |
IMPORT_C CAknNoteWrapper(CAknNoteWrapper** aSelfPtr);
|
williamr@2
|
64 |
/**
|
williamr@2
|
65 |
* Construct and display the dialog.
|
williamr@2
|
66 |
*
|
williamr@2
|
67 |
* Create a TAknNoteResData object by reading from resource file.
|
williamr@2
|
68 |
* Set the timeout, set the tone (unless they have already been set)
|
williamr@2
|
69 |
* and call RunLD.
|
williamr@2
|
70 |
*
|
williamr@2
|
71 |
* @see SetTimeout, SetTone
|
williamr@2
|
72 |
*
|
williamr@2
|
73 |
* @param aResId Resource file ID
|
williamr@2
|
74 |
*/
|
williamr@2
|
75 |
IMPORT_C TInt ExecuteLD(TInt aResId);
|
williamr@2
|
76 |
/**
|
williamr@2
|
77 |
* Construct and display the dialog
|
williamr@2
|
78 |
*
|
williamr@2
|
79 |
* Construct a TAknNoteResData object by reading from resource file.
|
williamr@2
|
80 |
* Set the prompt calling SetTextL. Set the timeout, set the
|
williamr@2
|
81 |
* tone (unless they have already been set) and call RunLD.
|
williamr@2
|
82 |
*
|
williamr@2
|
83 |
* @see SetTimeout, SetTone
|
williamr@2
|
84 |
*
|
williamr@2
|
85 |
* @param aResId Resource file ID
|
williamr@2
|
86 |
* @param aPrompt Note text
|
williamr@2
|
87 |
*/
|
williamr@2
|
88 |
IMPORT_C TInt ExecuteLD(TInt aResId, const TDesC& aPrompt);
|
williamr@2
|
89 |
|
williamr@2
|
90 |
/**
|
williamr@2
|
91 |
* From CCoeControl
|
williamr@2
|
92 |
* HandlePointerEventL Processes the pointer event directed at any note dialogs.
|
williamr@2
|
93 |
* @param aPointerEvent the pointer event to be processed.
|
williamr@2
|
94 |
*/
|
williamr@2
|
95 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
96 |
private:
|
williamr@2
|
97 |
/**
|
williamr@2
|
98 |
* From CAknControl
|
williamr@2
|
99 |
*/
|
williamr@2
|
100 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
101 |
private:
|
williamr@2
|
102 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
103 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
104 |
private:
|
williamr@2
|
105 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
106 |
private:
|
williamr@2
|
107 |
TAknNoteResData ReadResDataAndPrepareL(TInt aResId);
|
williamr@2
|
108 |
|
williamr@2
|
109 |
public:
|
williamr@2
|
110 |
|
williamr@2
|
111 |
/**
|
williamr@2
|
112 |
* HandleDialogPageEventL is the interface method used by CEikDialogPage to
|
williamr@2
|
113 |
* signal the note that the some event happened on dialog page
|
williamr@2
|
114 |
*
|
williamr@2
|
115 |
* @param aEventID event to be handled
|
williamr@2
|
116 |
*/
|
williamr@2
|
117 |
IMPORT_C virtual void HandleDialogPageEventL( TInt aEventID );
|
williamr@2
|
118 |
private:
|
williamr@2
|
119 |
IMPORT_C virtual void Reserved1();
|
williamr@2
|
120 |
};
|
williamr@2
|
121 |
|
williamr@2
|
122 |
/**
|
williamr@2
|
123 |
* Helper base class for implementing specialised note classes.
|
williamr@2
|
124 |
* Using this class makes it unneccessary to overload ExecuteLD
|
williamr@2
|
125 |
* in the specialised classes.
|
williamr@2
|
126 |
*/
|
williamr@2
|
127 |
class CAknResourceNoteDialog : public CAknNoteWrapper
|
williamr@2
|
128 |
{
|
williamr@2
|
129 |
public:
|
williamr@2
|
130 |
/**
|
williamr@2
|
131 |
* Construct and display the dialog.
|
williamr@2
|
132 |
*
|
williamr@2
|
133 |
* Using the resource ID stored in the constructor call the
|
williamr@2
|
134 |
* corresponding ExecuteLD method in CAknNoteWrapper.
|
williamr@2
|
135 |
*
|
williamr@2
|
136 |
* @see CAknNoteWrapper::ExecuteLD
|
williamr@2
|
137 |
*
|
williamr@2
|
138 |
*/
|
williamr@2
|
139 |
IMPORT_C TInt ExecuteLD();
|
williamr@2
|
140 |
/**
|
williamr@2
|
141 |
* Construct, set the prompt and display the dialog.
|
williamr@2
|
142 |
*
|
williamr@2
|
143 |
* Using the resource ID stored in the constructor call the
|
williamr@2
|
144 |
* corresponding ExecuteLD method in CAknNoteWrapper.
|
williamr@2
|
145 |
*
|
williamr@2
|
146 |
* @see CAknNoteWrapper::ExecuteLD
|
williamr@2
|
147 |
*
|
williamr@2
|
148 |
*/
|
williamr@2
|
149 |
IMPORT_C TInt ExecuteLD(const TDesC& aPrompt);
|
williamr@2
|
150 |
/**
|
williamr@2
|
151 |
* From CCoeControl.
|
williamr@2
|
152 |
* Handles pointer events
|
williamr@2
|
153 |
*/
|
williamr@2
|
154 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
155 |
|
williamr@2
|
156 |
protected:
|
williamr@2
|
157 |
/**
|
williamr@2
|
158 |
* Constructor.
|
williamr@2
|
159 |
*
|
williamr@2
|
160 |
* Store resource ID.
|
williamr@2
|
161 |
*
|
williamr@2
|
162 |
* @param aResId The resource ID
|
williamr@2
|
163 |
*/
|
williamr@2
|
164 |
inline CAknResourceNoteDialog(TInt aResId)
|
williamr@2
|
165 |
: iResId(aResId)
|
williamr@2
|
166 |
{
|
williamr@2
|
167 |
}
|
williamr@2
|
168 |
|
williamr@2
|
169 |
/**
|
williamr@2
|
170 |
* Another class constructor.
|
williamr@2
|
171 |
*
|
williamr@2
|
172 |
* Store resource ID. Accept self pointer to CEikDialog* in order
|
williamr@2
|
173 |
* to NULL the dialog client pointer when a non modal note is
|
williamr@2
|
174 |
* dismissed.
|
williamr@2
|
175 |
*
|
williamr@2
|
176 |
* @param aResId The resource ID
|
williamr@2
|
177 |
* @param aSelfPtr Address to itself. The pointer must be valid when the
|
williamr@2
|
178 |
* dialog is dismissed and must not be on the stack.
|
williamr@2
|
179 |
*/
|
williamr@2
|
180 |
inline CAknResourceNoteDialog(TInt aResId, CAknNoteWrapper** aSelfPtr)
|
williamr@2
|
181 |
: CAknNoteWrapper(aSelfPtr), iResId(aResId)
|
williamr@2
|
182 |
{
|
williamr@2
|
183 |
}
|
williamr@2
|
184 |
private:
|
williamr@2
|
185 |
/**
|
williamr@2
|
186 |
* From CAknControl
|
williamr@2
|
187 |
*/
|
williamr@2
|
188 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
189 |
private:
|
williamr@2
|
190 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
191 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
192 |
private:
|
williamr@2
|
193 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
194 |
private: // new virtual function
|
williamr@2
|
195 |
IMPORT_C virtual void CAknResourceNoteDialog_Reserved();
|
williamr@2
|
196 |
private:
|
williamr@2
|
197 |
TInt iResId;
|
williamr@2
|
198 |
TInt iSpare;
|
williamr@2
|
199 |
};
|
williamr@2
|
200 |
|
williamr@2
|
201 |
/**
|
williamr@2
|
202 |
* Wrapper for CAknNoteDialog implementing a Confirmation Note as
|
williamr@2
|
203 |
* from S60 specifications.
|
williamr@2
|
204 |
*/
|
williamr@2
|
205 |
class CAknConfirmationNote : public CAknResourceNoteDialog
|
williamr@2
|
206 |
{
|
williamr@2
|
207 |
public:
|
williamr@2
|
208 |
/**
|
williamr@2
|
209 |
* Default constructor.
|
williamr@2
|
210 |
*
|
williamr@2
|
211 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
212 |
* R_AKN_CONFIRMATION_NOTE
|
williamr@2
|
213 |
*/
|
williamr@2
|
214 |
IMPORT_C CAknConfirmationNote();
|
williamr@2
|
215 |
/**
|
williamr@2
|
216 |
* Another class constructor.
|
williamr@2
|
217 |
*
|
williamr@2
|
218 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
219 |
* R_AKN_CONFIRMATION_NOTE_WAIT or R_AKN_CONFIRMATION_NOTE
|
williamr@2
|
220 |
* depending on the specified parameter
|
williamr@2
|
221 |
*
|
williamr@2
|
222 |
* @param aWaitingDialog If true use R_AKN_CONFIRMATION_NOTE_WAIT,
|
williamr@2
|
223 |
* else use R_AKN_CONFIRMATION_NOTE
|
williamr@2
|
224 |
*/
|
williamr@2
|
225 |
IMPORT_C CAknConfirmationNote( TBool aWaitingDialog );
|
williamr@2
|
226 |
/**
|
williamr@2
|
227 |
* Another class constructor.
|
williamr@2
|
228 |
*
|
williamr@2
|
229 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
230 |
* R_AKN_CONFIRMATION_NOTE. Accept self pointer to CEikDialog*
|
williamr@2
|
231 |
* in order to NULL client pointer when a non modal note is dismissed.
|
williamr@2
|
232 |
*
|
williamr@2
|
233 |
* @param aSelfPtr Address of the dialog pointer
|
williamr@2
|
234 |
*/
|
williamr@2
|
235 |
IMPORT_C CAknConfirmationNote(CAknConfirmationNote** aSelfPtr);
|
williamr@2
|
236 |
/**
|
williamr@2
|
237 |
* From CCoeControl.
|
williamr@2
|
238 |
* Handles pointer events
|
williamr@2
|
239 |
*/
|
williamr@2
|
240 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
241 |
private:
|
williamr@2
|
242 |
/**
|
williamr@2
|
243 |
* From CAknControl
|
williamr@2
|
244 |
*/
|
williamr@2
|
245 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
246 |
private:
|
williamr@2
|
247 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
248 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
249 |
private:
|
williamr@2
|
250 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
251 |
private:
|
williamr@2
|
252 |
IMPORT_C virtual void CAknResourceNoteDialog_Reserved();
|
williamr@2
|
253 |
};
|
williamr@2
|
254 |
|
williamr@2
|
255 |
/**
|
williamr@2
|
256 |
* Wrapper for CAknNoteDialog implementing an Information Note as
|
williamr@2
|
257 |
* from S60 specifications.
|
williamr@2
|
258 |
*/
|
williamr@2
|
259 |
class CAknInformationNote : public CAknResourceNoteDialog
|
williamr@2
|
260 |
{
|
williamr@2
|
261 |
public:
|
williamr@2
|
262 |
/**
|
williamr@2
|
263 |
* Default constructor.
|
williamr@2
|
264 |
*
|
williamr@2
|
265 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
266 |
* R_AKN_INFORMATION_NOTE
|
williamr@2
|
267 |
*/
|
williamr@2
|
268 |
IMPORT_C CAknInformationNote();
|
williamr@2
|
269 |
/**
|
williamr@2
|
270 |
* Another class constructor.
|
williamr@2
|
271 |
*
|
williamr@2
|
272 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
273 |
* R_AKN_INFORMATION_NOTE_WAIT or R_AKN_INFORMATION_NOTE
|
williamr@2
|
274 |
* depending on the specified parameter
|
williamr@2
|
275 |
*
|
williamr@2
|
276 |
* @param aWaitingDialog If true use R_AKN_INFORMATION_NOTE_WAIT,
|
williamr@2
|
277 |
* else use R_AKN_INFORMATION_NOTE
|
williamr@2
|
278 |
*/
|
williamr@2
|
279 |
IMPORT_C CAknInformationNote( TBool aWaitingDialog );
|
williamr@2
|
280 |
/**
|
williamr@2
|
281 |
* Another class constructor.
|
williamr@2
|
282 |
*
|
williamr@2
|
283 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
284 |
* R_AKN_INFORMATION_NOTE. Accept self pointer to CEikDialog*
|
williamr@2
|
285 |
* in order to NULL client pointer when a non modal note is dismissed.
|
williamr@2
|
286 |
*
|
williamr@2
|
287 |
* @param aSelfPtr Address of the dialog pointer
|
williamr@2
|
288 |
*/
|
williamr@2
|
289 |
IMPORT_C CAknInformationNote(CAknInformationNote** aSelfPtr);
|
williamr@2
|
290 |
/**
|
williamr@2
|
291 |
* From CCoeControl.
|
williamr@2
|
292 |
* Handles pointer events
|
williamr@2
|
293 |
*/
|
williamr@2
|
294 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
295 |
private:
|
williamr@2
|
296 |
/**
|
williamr@2
|
297 |
* From CAknControl
|
williamr@2
|
298 |
*/
|
williamr@2
|
299 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
300 |
private:
|
williamr@2
|
301 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
302 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
303 |
private:
|
williamr@2
|
304 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
305 |
private:
|
williamr@2
|
306 |
IMPORT_C virtual void CAknResourceNoteDialog_Reserved();
|
williamr@2
|
307 |
};
|
williamr@2
|
308 |
|
williamr@2
|
309 |
/**
|
williamr@2
|
310 |
* Wrapper for CAknNoteDialog implementing an Error Note as
|
williamr@2
|
311 |
* from S60 specifications.
|
williamr@2
|
312 |
*/
|
williamr@2
|
313 |
class CAknErrorNote : public CAknResourceNoteDialog
|
williamr@2
|
314 |
{
|
williamr@2
|
315 |
public:
|
williamr@2
|
316 |
/**
|
williamr@2
|
317 |
* Default constructor.
|
williamr@2
|
318 |
*
|
williamr@2
|
319 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
320 |
* R_AKN_ERROR_NOTE
|
williamr@2
|
321 |
*/
|
williamr@2
|
322 |
IMPORT_C CAknErrorNote();
|
williamr@2
|
323 |
/**
|
williamr@2
|
324 |
* Another class constructor.
|
williamr@2
|
325 |
*
|
williamr@2
|
326 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
327 |
* R_AKN_ERROR_NOTE_WAIT or R_AKN_ERROR_NOTE
|
williamr@2
|
328 |
* depending on the specified parameter
|
williamr@2
|
329 |
*
|
williamr@2
|
330 |
* @param aWaitingDialog If true use R_AKN_ERROR_NOTE_WAIT,
|
williamr@2
|
331 |
* else use R_AKN_ERROR_NOTE
|
williamr@2
|
332 |
*/
|
williamr@2
|
333 |
IMPORT_C CAknErrorNote( TBool aWaitingDialog );
|
williamr@2
|
334 |
/**
|
williamr@2
|
335 |
* Another class constructor.
|
williamr@2
|
336 |
*
|
williamr@2
|
337 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
338 |
* R_AKN_ERROR_NOTE. Accept self pointer to CEikDialog*
|
williamr@2
|
339 |
* in order to NULL client pointer when a non modal note is dismissed.
|
williamr@2
|
340 |
*
|
williamr@2
|
341 |
* @param aSelfPtr Address of the dialog pointer
|
williamr@2
|
342 |
*/
|
williamr@2
|
343 |
IMPORT_C CAknErrorNote(CAknErrorNote** aSelfPtr);
|
williamr@2
|
344 |
/**
|
williamr@2
|
345 |
* From CCoeControl. Handles pointer event
|
williamr@2
|
346 |
* @param aPointerEvent Pointer event to be handled
|
williamr@2
|
347 |
*/
|
williamr@2
|
348 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
349 |
private:
|
williamr@2
|
350 |
/**
|
williamr@2
|
351 |
* From CAknControl
|
williamr@2
|
352 |
*/
|
williamr@2
|
353 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
354 |
private:
|
williamr@2
|
355 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
356 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
357 |
private:
|
williamr@2
|
358 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
359 |
private:
|
williamr@2
|
360 |
IMPORT_C virtual void CAknResourceNoteDialog_Reserved();
|
williamr@2
|
361 |
};
|
williamr@2
|
362 |
|
williamr@2
|
363 |
/**
|
williamr@2
|
364 |
* Wrapper for CAknNoteDialog implementing a Warning Note as
|
williamr@2
|
365 |
* from S60 specifications.
|
williamr@2
|
366 |
*/
|
williamr@2
|
367 |
class CAknWarningNote : public CAknResourceNoteDialog
|
williamr@2
|
368 |
{
|
williamr@2
|
369 |
public:
|
williamr@2
|
370 |
/**
|
williamr@2
|
371 |
* Default constructor.
|
williamr@2
|
372 |
*
|
williamr@2
|
373 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
374 |
* R_AKN_WARNING_NOTE
|
williamr@2
|
375 |
*/
|
williamr@2
|
376 |
IMPORT_C CAknWarningNote();
|
williamr@2
|
377 |
/**
|
williamr@2
|
378 |
* Another class constructor.
|
williamr@2
|
379 |
*
|
williamr@2
|
380 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
381 |
* R_AKN_WARNING_NOTE_WAIT or R_AKN_WARNING_NOTE
|
williamr@2
|
382 |
* depending on the specified parameter
|
williamr@2
|
383 |
*
|
williamr@2
|
384 |
* @param aWaitingDialog If true use R_AKN_WARNING_NOTE_WAIT,
|
williamr@2
|
385 |
* else use R_AKN_WARNING_NOTE
|
williamr@2
|
386 |
*/
|
williamr@2
|
387 |
IMPORT_C CAknWarningNote( TBool aWaitingDialog );
|
williamr@2
|
388 |
/**
|
williamr@2
|
389 |
* Another class constructor.
|
williamr@2
|
390 |
*
|
williamr@2
|
391 |
* Create a CAknResourceNoteDialog using
|
williamr@2
|
392 |
* R_AKN_WARNING_NOTE. Accept self pointer to CEikDialog*
|
williamr@2
|
393 |
* in order to NULL client pointer when a non modal note is dismissed.
|
williamr@2
|
394 |
*
|
williamr@2
|
395 |
* @param aSelfPtr Address of the dialog pointer
|
williamr@2
|
396 |
*/
|
williamr@2
|
397 |
IMPORT_C CAknWarningNote(CAknWarningNote** aSelfPtr);
|
williamr@2
|
398 |
/**
|
williamr@2
|
399 |
* From CCoeControl.
|
williamr@2
|
400 |
* Handles pointer events
|
williamr@2
|
401 |
*/
|
williamr@2
|
402 |
IMPORT_C void HandlePointerEventL(const TPointerEvent& aPointerEvent);
|
williamr@2
|
403 |
private:
|
williamr@2
|
404 |
/**
|
williamr@2
|
405 |
* From CAknControl
|
williamr@2
|
406 |
*/
|
williamr@2
|
407 |
IMPORT_C void* ExtensionInterface( TUid aInterface );
|
williamr@2
|
408 |
private:
|
williamr@2
|
409 |
IMPORT_C virtual void CEikDialog_Reserved_1();
|
williamr@2
|
410 |
IMPORT_C virtual void CEikDialog_Reserved_2();
|
williamr@2
|
411 |
private:
|
williamr@2
|
412 |
IMPORT_C virtual void CAknNoteDialog_Reserved();
|
williamr@2
|
413 |
private:
|
williamr@2
|
414 |
IMPORT_C virtual void CAknResourceNoteDialog_Reserved();
|
williamr@2
|
415 |
};
|
williamr@2
|
416 |
|
williamr@2
|
417 |
#endif
|
williamr@2
|
418 |
|