sl@0
|
1 |
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Definition of the class that manages the keyclick plugin
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __KEYCLICK_H__
|
sl@0
|
19 |
#define __KEYCLICK_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __E32STD_H__
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
#ifndef __E32BASE_H__
|
sl@0
|
25 |
#include <e32base.h>
|
sl@0
|
26 |
#endif
|
sl@0
|
27 |
#ifndef __OBJECT_H__
|
sl@0
|
28 |
#include "OBJECT.H"
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
class CClickMaker;
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
#define THIRD_UID_INDEX 2
|
sl@0
|
35 |
|
sl@0
|
36 |
class CClick : public CWsObject
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public: //Static Part
|
sl@0
|
39 |
static void InitStaticsL();
|
sl@0
|
40 |
static void DeleteStatics();
|
sl@0
|
41 |
static void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
|
sl@0
|
42 |
static void PointerEvent(const TPoint& aScreenPos,TPointerEvent aEvent);
|
sl@0
|
43 |
static void OtherEvent(TInt aType,TAny* aParam=NULL);
|
sl@0
|
44 |
inline static TBool IsHandler() {return iHandler!=NULL;}
|
sl@0
|
45 |
inline static void SetKeyClickOveride(TBool aOn) {iKeyClickOveride=aOn;}
|
sl@0
|
46 |
static void LoadNewLibraryL(const TDesC &aDllName);
|
sl@0
|
47 |
public: //Object Part
|
sl@0
|
48 |
inline CClick(CWsClient* aOwner) : CWsObject(aOwner,WS_HANDLE_CLICK) {}
|
sl@0
|
49 |
//~CClick();
|
sl@0
|
50 |
void ConstructL(const TUid& aUid);
|
sl@0
|
51 |
//Pure Virtual function from CWsObject
|
sl@0
|
52 |
void CommandL(TInt aOpcode, const TAny *aCmdData);
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
static inline void Unload() {DeleteStatics();}
|
sl@0
|
55 |
static inline TUid ThirdUid() {return iPlugIn.Type()[THIRD_UID_INDEX];}
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
TUid iThirdUid;
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
static CClickMaker* iHandler;
|
sl@0
|
60 |
static TBool iIsChangeable;
|
sl@0
|
61 |
static TBool iKeyClickOveride;
|
sl@0
|
62 |
static TBool iKeyClickEnabled;
|
sl@0
|
63 |
static TBool iPenClickEnabled;
|
sl@0
|
64 |
static RLibrary iPlugIn;
|
sl@0
|
65 |
static TBool iIsLoaded;
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
#endif
|