sl@0
|
1 |
// Copyright (c) 2004-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 |
// Converts logical coordinate value to physical coordinate value.
|
sl@0
|
15 |
// Then adjusts the value, assuming that it must be within the drawing rectangle.
|
sl@0
|
16 |
// The first, "<0" check is arguable - should it be there or not!?
|
sl@0
|
17 |
// Because it HIDES negative values of "x" coordinate, so possible programmer's errors!
|
sl@0
|
18 |
// But with used logical to physical transformation it is possible that some logical
|
sl@0
|
19 |
// coordinate value might be transformed to negative physical coordinate value and
|
sl@0
|
20 |
// then it has to be checked and set to 0.
|
sl@0
|
21 |
//
|
sl@0
|
22 |
//
|
sl@0
|
23 |
|
sl@0
|
24 |
inline TInt Log2Phys(TInt aCoordVal, TInt aScalingOrigin, TInt aScalingFactor, TInt aSize)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
aCoordVal = aScalingOrigin + aCoordVal * aScalingFactor;
|
sl@0
|
27 |
return aCoordVal < 0 ? 0 : aCoordVal >= aSize ? (aSize - 1) : aCoordVal;
|
sl@0
|
28 |
}
|
sl@0
|
29 |
|
sl@0
|
30 |
//Converts logical coordinate value to physical coordinate value.
|
sl@0
|
31 |
//Then adjusts the value, assuming that it represents right-bottom coordinate of the logical
|
sl@0
|
32 |
//rectangle. The first, "<0" check is arguable - should it be there or not!?
|
sl@0
|
33 |
//Because it HIDES negative values of "x" coordinate, so possible programmer's errors!
|
sl@0
|
34 |
//But with used logical to physical transformation it is possible that some logical
|
sl@0
|
35 |
//coordinate value is transformed to negative physical coordinate value and then it has to
|
sl@0
|
36 |
//be checked and set to 0.
|
sl@0
|
37 |
inline TInt RBtmLog2Phys(TInt aCoordVal, TInt aScalingOrigin, TInt aScalingFactor, TInt aSize)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
aCoordVal = aScalingOrigin + aCoordVal * aScalingFactor;
|
sl@0
|
40 |
return aCoordVal < 0 ? 0 : aCoordVal > aSize ? aSize : aCoordVal;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|