author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 13 Oct 2010 14:31:22 +0300 | |
branch | RCL_3 |
changeset 81 | c26cc2a7c548 |
parent 62 | 5266b1f337bd |
permissions | -rw-r--r-- |
62 | 1 |
/* |
2 |
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
3 |
* All rights reserved. |
|
4 |
* This component and the accompanying materials are made available |
|
5 |
* under the terms of "Eclipse Public License v1.0" |
|
6 |
* which accompanies this distribution, and is available |
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
* |
|
9 |
* Initial Contributors: |
|
10 |
* Nokia Corporation - initial contribution. |
|
11 |
* |
|
12 |
* Contributors: |
|
13 |
* |
|
14 |
* Description: Easy dialing plugin implementation. |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
#ifndef __CEASYDIALINGPLUGIN_H__ |
|
20 |
#define __CEASYDIALINGPLUGIN_H__ |
|
21 |
||
22 |
// INCLUDES |
|
23 |
||
24 |
#include "dialingextensioninterface.h" |
|
25 |
#include <MPsResultsObserver.h> |
|
26 |
#include <mccaconnection.h> |
|
27 |
#include <mccaconnectionext.h> |
|
28 |
#include "measydialingcenreplistenerobserver.h" |
|
29 |
#include "mcontactdatamanagerobserver.h" |
|
30 |
#include "medcontactorobserver.h" |
|
31 |
#include "easydialingcontactdatamanager.h" // for TNameOrder |
|
32 |
||
33 |
// ListBox Observer API |
|
34 |
#include <eiklbo.h> |
|
35 |
||
36 |
// MAknInputBlockCancelHandler |
|
37 |
#include <akninputblock.h> |
|
38 |
||
39 |
||
40 |
// CONSTANTS |
|
41 |
||
42 |
/** Maximum constact search string length. */ |
|
43 |
const TInt KEDMaxSearchStringLength = 200; |
|
44 |
||
45 |
/** Maximum string length for listbox model string. */ |
|
46 |
const TInt KEDMaxContactStringLength = 600; |
|
47 |
||
48 |
/** Maximum phone number length. */ |
|
49 |
const TInt KEDMaxPhoneNumberLength = 64; |
|
50 |
||
51 |
// MACROS |
|
52 |
||
53 |
// DATA TYPES |
|
54 |
||
55 |
// FUNCTION PROTOTYPES |
|
56 |
||
57 |
// FORWARD DECLARATIONS |
|
58 |
||
59 |
class CPSRequestHandler; |
|
60 |
class CPsQuery; |
|
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
61 |
class CVPbkContactStoreUriArray; |
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
62 |
class CVPbkContactManager; |
62 | 63 |
class CEasyDialingListBox; |
64 |
class MVPbkContactLink; |
|
65 |
class CEasyDialingCenrepListener; |
|
66 |
class CEasyDialingContactDataManager; |
|
67 |
class CEDContactorService; |
|
68 |
class CEikMenuPane; |
|
69 |
class CAsyncCallBack; |
|
70 |
class CEikLabel; |
|
71 |
||
72 |
// CLASS DECLARATION |
|
73 |
||
74 |
/** |
|
75 |
* Easy dialing plugin. |
|
76 |
*/ |
|
77 |
class CEasyDialingPlugin : public CDialingExtensionInterface, |
|
78 |
public MPsResultsObserver, |
|
79 |
public MCCAObserver, |
|
80 |
public MEasyDialingCenrepListenerObserver, |
|
81 |
public MContactDataManagerObserver, |
|
82 |
public MEDContactorObserver, |
|
83 |
public MEikListBoxObserver, |
|
84 |
public MAknInputBlockCancelHandler, |
|
85 |
public MCoeForegroundObserver |
|
86 |
{ |
|
87 |
public: |
|
88 |
||
89 |
/** |
|
90 |
* Static constructor. |
|
91 |
* @return: Created object. |
|
92 |
*/ |
|
93 |
static CEasyDialingPlugin* NewL(); |
|
94 |
||
95 |
/** |
|
96 |
* Destructor. |
|
97 |
*/ |
|
98 |
virtual ~CEasyDialingPlugin(); |
|
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
99 |
|
62 | 100 |
public: // from CCoeControl |
101 |
||
102 |
/** |
|
103 |
* From CCoeControl. |
|
104 |
*/ |
|
105 |
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType ); |
|
106 |
||
107 |
/** |
|
108 |
* From CCoeControl |
|
109 |
*/ |
|
110 |
TInt CountComponentControls() const; |
|
111 |
||
112 |
/** |
|
113 |
* From CCoeControl |
|
114 |
*/ |
|
115 |
CCoeControl* ComponentControl( TInt aIndex ) const; |
|
116 |
||
117 |
/** |
|
118 |
* From CCoeControl |
|
119 |
*/ |
|
120 |
void MakeVisible( TBool aVisible ); |
|
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
121 |
|
62 | 122 |
/** |
123 |
* From CCoeControl |
|
124 |
*/ |
|
125 |
void HandleResourceChange( TInt aType ); |
|
126 |
||
127 |
protected: |
|
128 |
||
129 |
/** |
|
130 |
* See CCoeControl |
|
131 |
*/ |
|
132 |
void SizeChanged(); |
|
133 |
||
134 |
/** |
|
135 |
* See CCoeControl |
|
136 |
*/ |
|
137 |
void FocusChanged( TDrawNow aDrawNow ); |
|
138 |
||
139 |
public: // from CDialingExtensionInterface |
|
140 |
||
141 |
/** |
|
142 |
* Does further initialization to component. |
|
143 |
* @param: parent container of this control. |
|
144 |
*/ |
|
145 |
virtual void InitializeL( CCoeControl& aParent ); |
|
146 |
||
147 |
/** |
|
148 |
* Reset the previour easy dialing search. |
|
149 |
*/ |
|
150 |
void Reset(); |
|
151 |
||
152 |
/** |
|
153 |
* Adds an observer to dialing extension. |
|
154 |
* @param: aObserver: observer to be added. |
|
155 |
*/ |
|
156 |
void AddObserverL( MDialingExtensionObserver* aObserver ); |
|
157 |
||
158 |
/** |
|
159 |
* Removes an observer from dialing extension. |
|
160 |
* @param: aObserver: observer to be removed. |
|
161 |
*/ |
|
162 |
void RemoveObserver( MDialingExtensionObserver* aObserver ); |
|
163 |
||
164 |
/** |
|
165 |
* Sets input string (search string) to easy dialing. |
|
166 |
* @param: aDesC: input string descriptor. |
|
167 |
*/ |
|
168 |
void SetInputL( const TDesC& aDesC ); |
|
169 |
||
170 |
/** |
|
171 |
* Returns the number of matching contacts in previous search. |
|
172 |
* @return: number of matches. |
|
173 |
*/ |
|
174 |
TInt MatchingContactCount(); |
|
175 |
||
176 |
/** |
|
177 |
* Gets the resource id of plugin's control button area resource. |
|
178 |
* |
|
179 |
* @return Resource id. |
|
180 |
*/ |
|
181 |
TInt CbaResourceId(); |
|
182 |
||
183 |
/** |
|
184 |
* From CDialingExtensionInterface. |
|
185 |
* Gets the resource id of plugin's menu bar resource. |
|
186 |
* |
|
187 |
* @return Resource id. |
|
188 |
*/ |
|
189 |
TInt MenuResourceId(); |
|
190 |
||
191 |
/** |
|
192 |
* From CDialingExtensionInterface. |
|
193 |
* Gets the resource id of plugin's menu bar resource. |
|
194 |
* |
|
195 |
* @param aMenuPane Menu pane |
|
196 |
* @param aMenuResourceId Menu bar resource id. |
|
197 |
* @return Resource id. |
|
198 |
*/ |
|
199 |
TBool InitializeMenuPaneL( CEikMenuPane& aMenuPane, TInt aMenuResourceId ); |
|
200 |
||
201 |
/** |
|
202 |
* From CDialingExtensionInterface. |
|
203 |
* Gets the resource id of plugin's menu bar resource. |
|
204 |
* |
|
205 |
* @param aCommand Command id. |
|
206 |
* @return ETrue if command was handled, EFalse otherwise. |
|
207 |
*/ |
|
208 |
TBool HandleCommandL( TInt aCommand ); |
|
209 |
||
210 |
/** |
|
211 |
* Tells if extension is currently enabled from settings. |
|
212 |
* @return ETrue if extension is enabled, EFalse otherwise. |
|
213 |
*/ |
|
214 |
TBool IsEnabled() const; |
|
215 |
||
216 |
public: |
|
217 |
||
218 |
/** |
|
219 |
* From MEasyDialingCenrepListenerObserver. |
|
220 |
*/ |
|
221 |
void EasyDialingSettingsChanged( TInt aValue ); |
|
222 |
||
223 |
/** |
|
224 |
* From MEasyDialingCenrepListenerObserver. |
|
225 |
*/ |
|
226 |
void EasyDialingContactThumbnailsSettingsChanged( TInt aThumbnailSettingValue ); |
|
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
227 |
|
62 | 228 |
/** |
229 |
* From MContactDataManagerObserver. |
|
230 |
*/ |
|
231 |
void AllContactDataLoaded(); |
|
232 |
||
233 |
/** |
|
234 |
* From MContactDataManagerObserver. |
|
235 |
*/ |
|
236 |
void NameOrderChanged(); |
|
237 |
||
238 |
/** |
|
239 |
* From MContactDataManagerObserver. |
|
240 |
*/ |
|
241 |
void FavouritesChanged(); |
|
242 |
||
243 |
/** |
|
244 |
* From MEDContactorObserver. |
|
245 |
*/ |
|
246 |
void InformContactorEvent( MEDContactorObserver::TEvent aEvent ); |
|
247 |
||
248 |
/** |
|
249 |
* From MEikListBoxObserver. |
|
250 |
*/ |
|
251 |
void HandleListBoxEventL( CEikListBox* aListBox, TListBoxEvent aEventType ); |
|
252 |
||
253 |
/** |
|
254 |
* From MAknInputBlockCancelHandler. |
|
255 |
*/ |
|
256 |
void AknInputBlockCancel(); |
|
257 |
||
258 |
/** |
|
259 |
* From MCoeForegroundObserver. |
|
260 |
*/ |
|
261 |
void HandleGainingForeground(); |
|
262 |
||
263 |
/** |
|
264 |
* From MCoeForegroundObserver. |
|
265 |
*/ |
|
266 |
void HandleLosingForeground(); |
|
267 |
||
268 |
private: |
|
269 |
||
270 |
/** |
|
271 |
* Constructor. |
|
272 |
*/ |
|
273 |
CEasyDialingPlugin (); |
|
274 |
||
275 |
/** |
|
276 |
* Second phase constructor. |
|
277 |
*/ |
|
278 |
void ConstructL (); |
|
279 |
||
280 |
void InitPredictiveContactSearchL(); |
|
281 |
||
282 |
void SetSortOrderL( CEasyDialingContactDataManager::TNameOrder aNameOrder ); |
|
283 |
||
284 |
/** |
|
285 |
* From MPsResultsObserver. |
|
286 |
*/ |
|
287 |
virtual void HandlePsResultsUpdate( RPointerArray<CPsClientData>& aResults, RPointerArray<CPsPattern>& aSeqs ); |
|
288 |
virtual void HandlePsError( TInt aErrorCode ); |
|
289 |
virtual void CachingStatus( TCachingStatus& aStatus, TInt& aError ); |
|
290 |
||
291 |
/** |
|
292 |
* FindContactFieldPCSIndex |
|
293 |
* Searches the index that stores the given contact field. |
|
294 |
* To see possible contact field numbering, see file "vpbkeng.rsg". |
|
295 |
* @param: contact field to search for. See file "vpbkeng.rsg" |
|
296 |
* for contact field numbering. |
|
297 |
* @return: index of the contact field. KErrNotFound if field was not found. |
|
298 |
* Non-negative return values are for indexing CPsClientData array. |
|
299 |
*/ |
|
300 |
TInt FindContactFieldPCSIndexL( TInt aIndex ); |
|
301 |
||
302 |
/** |
|
303 |
* HandlePsResultsUpdateL |
|
304 |
* A leaving function to be trapped in HandlePsResultsUpdate. |
|
305 |
*/ |
|
306 |
void HandlePsResultsUpdateL( RPointerArray<CPsClientData>& aResults, RPointerArray<CPsPattern>& aSeqs ); |
|
307 |
||
308 |
public: |
|
309 |
||
310 |
/** |
|
311 |
* MCCAObserver function handling exit of CCA launcher. |
|
312 |
*/ |
|
313 |
void CCASimpleNotifyL( TNotifyType aType, TInt aReason ); |
|
314 |
||
315 |
private: |
|
316 |
||
317 |
/* |
|
318 |
* Informs all observers registered with AddObserverL. |
|
319 |
* @param: aEvent: event id to be informed. |
|
320 |
*/ |
|
321 |
void InformObservers( MDialingExtensionObserver::TEvent aEvent ); |
|
322 |
||
323 |
||
324 |
private: |
|
325 |
||
326 |
/** |
|
327 |
* This method perform the drawing functionality of the component. |
|
328 |
* @param: aRect: The rect to be rendered |
|
329 |
* @return None |
|
330 |
*/ |
|
331 |
void Draw( const TRect& aRect ) const; |
|
332 |
||
333 |
/** |
|
334 |
* Initiates predictive contact search. |
|
335 |
*/ |
|
336 |
void LaunchSearchL(); |
|
337 |
||
338 |
/** |
|
339 |
* Opens ca launcher for currently selected contact. |
|
340 |
*/ |
|
341 |
void LaunchCurrentContactL(); |
|
342 |
||
343 |
/** |
|
344 |
* Creates listbox model string. |
|
345 |
*/ |
|
346 |
void CreateListBoxContactStringL( |
|
347 |
const TDesC& aContactString, |
|
348 |
MVPbkContactLink *aLink, |
|
349 |
TBool aMatchThumbnails, |
|
350 |
TBool aFav ); |
|
351 |
||
352 |
/** |
|
353 |
* Creates string with first name, last name and company name. |
|
354 |
*/ |
|
355 |
HBufC* CreateContactStringLC( CPsClientData* aResult, |
|
356 |
CEasyDialingContactDataManager::TNameOrder aNameOrder ); |
|
357 |
||
358 |
/** Possible actions launched by this plugin. */ |
|
359 |
enum TEasyDialingAction |
|
360 |
{ |
|
361 |
ENoActionDefined, |
|
362 |
ECallCurrentContact, |
|
363 |
EVideoCallCurrentContact, |
|
364 |
ESendMessageCurrentContact, |
|
365 |
ELaunchCurrentContact, |
|
366 |
ELaunchSearch, |
|
367 |
EInitializePcs, |
|
368 |
ESimulateKeyEvent |
|
369 |
}; |
|
370 |
||
371 |
/** |
|
372 |
* Simulates a key event asynchronously |
|
373 |
*/ |
|
374 |
void AsyncSimulateKeyEvent( const TKeyEvent& aKeyEvent ); |
|
375 |
||
376 |
/** |
|
377 |
* Initiates asynchronous callback to launch action and sets |
|
378 |
* input blocker active. |
|
379 |
*/ |
|
380 |
void AsyncActionLaunchL( TEasyDialingAction aAction ); |
|
381 |
||
382 |
/** |
|
383 |
* Callback for CAsyncCallBack. Launches action set in iActionToBeLaunched |
|
384 |
* and stops input block when launch is done. |
|
385 |
*/ |
|
386 |
static TInt AsyncCallBackToLaunchAction( TAny* aPtr ); |
|
387 |
||
388 |
/** |
|
389 |
* Launches action defined in iActionToBeLaunched. |
|
390 |
*/ |
|
391 |
void DoLaunchActionL(); |
|
392 |
||
393 |
/** |
|
394 |
* Cancels async action launch and input block. |
|
395 |
*/ |
|
396 |
void CancelActionLaunchAndInputBlock(); |
|
397 |
||
398 |
/** |
|
399 |
* Handles change events from contact database and favourites view. |
|
400 |
*/ |
|
401 |
void DoHandleContactsChangedL(); |
|
402 |
||
403 |
/** |
|
404 |
* Makes contact listbox visible. Effect is used if feasible. |
|
405 |
*/ |
|
406 |
void ShowContactListBoxWithEffect(); |
|
407 |
||
408 |
/** |
|
409 |
* Makes contact listbox invisible. Effect is used if feasible. |
|
410 |
*/ |
|
411 |
void HideContactListBoxWithEffect(); |
|
412 |
||
413 |
/** |
|
414 |
* Checks if listbox effect can be triggered. Eg checks if |
|
415 |
* app is in the foreground. |
|
416 |
*/ |
|
417 |
TBool CanListBoxEffectBeUsed() const; |
|
418 |
||
419 |
/** |
|
420 |
* Sets correct info label text color from theme. |
|
421 |
*/ |
|
422 |
void SetInfoLabelColourL(); |
|
423 |
||
424 |
/** |
|
425 |
* Sets info label visibility. |
|
426 |
*/ |
|
427 |
void SetInfoLabelVisibleL( TBool aVisible ); |
|
428 |
||
429 |
private: |
|
430 |
||
431 |
/** Textual version of current search string. */ |
|
432 |
TBuf<KEDMaxSearchStringLength> iSearchString; |
|
433 |
||
434 |
/** Handle to predictive search engine. Owned. */ |
|
435 |
CPSRequestHandler* iPredictiveContactSearchHandler; |
|
436 |
||
437 |
/** PCS type of presentation of the current search string. Owned. */ |
|
438 |
CPsQuery* iPredictiveSearchQuery; |
|
439 |
||
440 |
/** If ETrue, completing PCS searches are not displayed but just discarded. */ |
|
441 |
TBool iDiscardCompletingSearches; |
|
442 |
||
443 |
/** ETrue if contact database has been changed and a new search is needed. */ |
|
444 |
TBool iNewSearchNeeded; |
|
445 |
||
446 |
/** Array of used data stores. Owned. */ |
|
447 |
RPointerArray<TDesC> iContactDataStores; |
|
448 |
||
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
449 |
/** Contact store array. Owned. */ |
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
450 |
CVPbkContactStoreUriArray* iContactStoreUriArray; |
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
451 |
|
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
452 |
/** Contact manager handle. Owned. */ |
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
453 |
CVPbkContactManager* iContactManager; |
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
454 |
|
62 | 455 |
/** Search result field index for first name field. */ |
456 |
TInt iFirstNamePCSIndex; |
|
457 |
||
458 |
/** Search result field index for last name field. */ |
|
459 |
TInt iLastNamePCSIndex; |
|
460 |
||
461 |
/** Search result field index for first name field. */ |
|
462 |
TInt iCompanyNamePCSIndex; |
|
463 |
||
464 |
/** Array containing observers to this class. Owned. */ |
|
465 |
RPointerArray<MDialingExtensionObserver> iObservers; |
|
466 |
||
467 |
/** Contact listbox. Owned. */ |
|
468 |
CEasyDialingListBox* iContactListBox; |
|
469 |
||
470 |
/** Listbox model from search results. Owned. */ |
|
471 |
CDesCArrayFlat* iListBoxModel; |
|
472 |
||
473 |
/** Number of found matching contacts from most recent search. */ |
|
474 |
TInt iNumberOfNames; |
|
475 |
||
476 |
/** Handle to contact launcher. */ |
|
477 |
MCCAConnectionExt* iContactLauncher; |
|
478 |
||
479 |
/** ETrue if contact launcher (a.k.a. communication launcher) is open. */ |
|
480 |
TBool iContactLauncherActive; |
|
481 |
||
482 |
/** If true, contact listbox must not reset focus when contact launcher exits. */ |
|
483 |
TBool iRememberFocus; |
|
484 |
||
485 |
/** Working buffer for creating contact string to listbox. */ |
|
486 |
TBuf<KEDMaxContactStringLength> iContactStringCreationBuffer; |
|
487 |
||
488 |
/** Central repository listener. Owned. */ |
|
489 |
CEasyDialingCenrepListener* iCenrepListener; |
|
490 |
||
491 |
/** Contact data manager. Owned. */ |
|
492 |
CEasyDialingContactDataManager* iContactDataManager; |
|
493 |
||
494 |
/** Easy dialing contactor service. Owned. */ |
|
495 |
CEDContactorService* iContactorService; |
|
496 |
||
497 |
/** Easy dialing resource file offset in current application. */ |
|
498 |
TInt iResourceFileOffset; |
|
499 |
||
500 |
/** Blocks user input when action is being launched. NULL if not active. Owned. */ |
|
501 |
CAknInputBlock* iInputBlocker; |
|
502 |
||
503 |
/** Used to launch action asynchronously. Owned.*/ |
|
504 |
CAsyncCallBack* iAsyncCallBack; |
|
505 |
||
506 |
/** Action to be launched next asynchronously. */ |
|
507 |
TEasyDialingAction iActionToBeLaunched; |
|
508 |
||
509 |
/** Contact link related to the asynchronous action. */ |
|
510 |
HBufC8* iContactToBeLaunched; |
|
511 |
||
512 |
/** Contact name related to the asynchronous action. */ |
|
513 |
HBufC* iContactToBeLaunchedName; |
|
514 |
||
515 |
/** Key event to be simulated asynchronously. */ |
|
516 |
TKeyEvent iKeyEventToSimulate; |
|
517 |
||
518 |
/** Is virtual keyboard currently open or not.*/ |
|
519 |
TBool iVirtualKeyboardOpen; |
|
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
520 |
|
62 | 521 |
/** First line of info text shown when number entry is empty. Owned. */ |
522 |
HBufC* iInfoLabelTextLine1; |
|
523 |
||
524 |
/** Second line of info text shown when number entry is empty. Owned. */ |
|
525 |
HBufC* iInfoLabelTextLine2; |
|
526 |
||
527 |
/** Label for showing first line of info text when number entry is empty. Owned. */ |
|
528 |
CEikLabel* iInfoLabelLine1; |
|
529 |
||
530 |
/** Label for showing second line of info text when number entry is empty. Owned. */ |
|
531 |
CEikLabel* iInfoLabelLine2; |
|
532 |
||
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
533 |
/** 'Flag' if contact have been long tapped, so ECE launcher opens. Long tap contact = True, default = False */ |
62 | 534 |
TBool iLongTapped; |
81
c26cc2a7c548
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
62
diff
changeset
|
535 |
|
62 | 536 |
}; |
537 |
||
538 |
||
539 |
#endif //__CEASYDIALINGPLUGIN_H__ |
|
540 |
||
541 |
// End of File |