|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** @file |
|
17 @internalTechnology */ |
|
18 inline |
|
19 TMngExecuteResult::TMngExecuteResult(): iCommand(ECmdProcessNext), |
|
20 iDelayInTicks(0) |
|
21 { |
|
22 } |
|
23 |
|
24 inline |
|
25 TMngObjLabel CMngObject::ObjectLabel() const |
|
26 { |
|
27 return iObjectLabel; |
|
28 } |
|
29 |
|
30 inline |
|
31 void CMngObject::SetObjectLabel(const TMngObjLabel& aLabel) |
|
32 { |
|
33 iObjectLabel = aLabel; |
|
34 } |
|
35 |
|
36 inline |
|
37 CMngTermination::CMngTermination(const TTermChunk& aTerm, TBool aMngSubframesNoLoops): //Subframes with No Loops |
|
38 iMngSubframesNoLoops(aMngSubframesNoLoops), //Subframes with No Loops |
|
39 iTerminationAction(aTerm.iTerminationAction), |
|
40 iPostIterationAction(aTerm.iPostIterationAction), |
|
41 iDelay(aTerm.iDelay), |
|
42 iIterationMax(aTerm.iIterationMax), |
|
43 iIterationCounter(aTerm.iIterationMax) |
|
44 { |
|
45 } |
|
46 |
|
47 inline |
|
48 CMngBackground::CMngBackground(const TBackChunk& aBackChunk):iBgMandatory(aBackChunk.iBgMandatory) |
|
49 { |
|
50 iBackgroundColour.SetRed(aBackChunk.iRedBackground); |
|
51 iBackgroundColour.SetGreen(aBackChunk.iGreenBackground); |
|
52 iBackgroundColour.SetBlue(aBackChunk.iBlueBackground); |
|
53 } |
|
54 |
|
55 inline |
|
56 CMngRawChunkHolder::CMngRawChunkHolder(TMngRawChunk* aChunk):iChunk(aChunk) |
|
57 { |
|
58 } |
|
59 |
|
60 inline |
|
61 CMngImageDefinition::CMngImageDefinition(const TDefiChunk& aDefiChunk):iDoNotShow(aDefiChunk.iDoNotShow), |
|
62 iOrigin(TPoint(aDefiChunk.iXLocation, aDefiChunk.iYLocation)), |
|
63 iClippingRect(TRect(aDefiChunk.iLeftClippingBoundary, |
|
64 aDefiChunk.iTopClippingBoundary, |
|
65 aDefiChunk.iRightClippingBoundary, |
|
66 aDefiChunk.iBottomClippingBoundary) |
|
67 ) |
|
68 { |
|
69 } |
|
70 |
|
71 inline |
|
72 CMngLoopEntry::CMngLoopEntry(const TLoopChunk& aLoopChunk): |
|
73 iNestLevel(aLoopChunk.iNestLevel), |
|
74 iIterationCount(aLoopChunk.iIterationCount), |
|
75 iIterationsLeft(aLoopChunk.iIterationCount) |
|
76 { |
|
77 } |
|
78 |
|
79 inline |
|
80 CMngLoopEnd::CMngLoopEnd(const TEndlChunk& aLoopChunk):iNestLevel(aLoopChunk.iNestLevel) |
|
81 { |
|
82 } |