sl@0
|
1 |
// Copyright (c) 2008-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 |
// Contains dummy implementations for exported methods implemented in NGA version
|
sl@0
|
15 |
// of this file which share def files with WSERV NONNGA.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <w32std.h>
|
sl@0
|
20 |
#include "advancedpointerevent.inl"
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C TInt TAdvancedPointerEvent::DoGetPointerNumber() const
|
sl@0
|
23 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
24 |
@internalComponent */
|
sl@0
|
25 |
{
|
sl@0
|
26 |
ASSERT(0);
|
sl@0
|
27 |
return 0;
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
EXPORT_C TInt TAdvancedPointerEvent::DoGetProximity() const
|
sl@0
|
31 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
32 |
@internalComponent */
|
sl@0
|
33 |
{
|
sl@0
|
34 |
ASSERT(0);
|
sl@0
|
35 |
return 0;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C TInt TAdvancedPointerEvent::DoGetPressure() const
|
sl@0
|
39 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
40 |
@internalComponent */
|
sl@0
|
41 |
{
|
sl@0
|
42 |
ASSERT(0);
|
sl@0
|
43 |
return 0;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
EXPORT_C TInt TAdvancedPointerEvent::DoGetProximityAndPressure() const
|
sl@0
|
47 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
48 |
@internalComponent */
|
sl@0
|
49 |
{
|
sl@0
|
50 |
ASSERT(0);
|
sl@0
|
51 |
return 0;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
EXPORT_C void TWsEvent::InitAdvancedPointerEvent(TPointerEvent::TType /*aType*/, TUint /*aModifiers*/, const TPoint3D &/*aPoint3D*/, TUint8 /*aPointerNumber*/)
|
sl@0
|
55 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
56 |
@internalComponent */
|
sl@0
|
57 |
{
|
sl@0
|
58 |
ASSERT(0);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
EXPORT_C void TWsEvent::SetPointerNumber(TUint8 /*aPointerNumber*/)
|
sl@0
|
62 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
63 |
@internalComponent */
|
sl@0
|
64 |
{
|
sl@0
|
65 |
ASSERT(0);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
EXPORT_C void TWsEvent::SetPointerZ(TInt /*aZ*/)
|
sl@0
|
69 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
70 |
@internalComponent */
|
sl@0
|
71 |
{
|
sl@0
|
72 |
ASSERT(0);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C TAdvancedPointerEvent::TAdvancedPointerEvent(const TAdvancedPointerEvent& /*aPointerEvent*/) // Copy Constructor
|
sl@0
|
76 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
77 |
@internalComponent */
|
sl@0
|
78 |
{
|
sl@0
|
79 |
ASSERT(0);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
EXPORT_C TAdvancedPointerEvent& TAdvancedPointerEvent::operator=(const TAdvancedPointerEvent& /*aPointerEvent*/) // Operator = overload
|
sl@0
|
83 |
/** Dummy implementation in order to preserve compatibility with WSERV NGA.
|
sl@0
|
84 |
@internalComponent */
|
sl@0
|
85 |
{
|
sl@0
|
86 |
ASSERT(0);
|
sl@0
|
87 |
return *this;
|
sl@0
|
88 |
}
|