1.1 --- a/epoc32/include/mw/aknanim.rh Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/mw/aknanim.rh Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,127 @@
1.4 -aknanim.rh
1.5 +/*
1.6 +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +
1.23 +// AknAnim.RH
1.24 +//
1.25 +// Copyright (c) 1997-1999 Symbian Ltd. All rights reserved.
1.26 +//
1.27 +
1.28 +// Avkon Animation Resource Header
1.29 +
1.30 +#include <aknanim.hrh>
1.31 +
1.32 +STRUCT ANIM_BLIT_PREVIOUS_VIEW
1.33 + {
1.34 + BYTE type = EAnimBlitPreviousView;
1.35 + WORD x;
1.36 + WORD y;
1.37 + }
1.38 +
1.39 +STRUCT ANIM_BLIT_NEXT_VIEW
1.40 + {
1.41 + BYTE type = EAnimBlitNewView;
1.42 + WORD x;
1.43 + WORD y;
1.44 + }
1.45 +
1.46 +STRUCT ANIM_BLIT_PART_PREVIOUS_VIEW
1.47 + {
1.48 + BYTE type = EAnimBlitPartPreviousView;
1.49 + WORD srcX;
1.50 + WORD srcY;
1.51 + WORD width;
1.52 + WORD height;
1.53 + WORD destX;
1.54 + WORD destY;
1.55 + }
1.56 +
1.57 +STRUCT ANIM_BLIT_PART_NEXT_VIEW
1.58 + {
1.59 + BYTE type = EAnimBlitPartNewView;
1.60 + WORD steps = 1;
1.61 + WORD srcX;
1.62 + WORD srcY;
1.63 + WORD width;
1.64 + WORD height;
1.65 + WORD destX = -32760;
1.66 + WORD destY = -32760;
1.67 + }
1.68 +
1.69 +STRUCT ANIM_DRAW_LINE
1.70 + {
1.71 + BYTE type = EAnimDrawLine;
1.72 + WORD steps = 1;
1.73 + WORD fromX;
1.74 + WORD fromY;
1.75 + WORD toX;
1.76 + WORD toY;
1.77 + }
1.78 +
1.79 +STRUCT ANIM_SET_COLOR
1.80 + {
1.81 + BYTE type = EAnimSetColor;
1.82 + BYTE red;
1.83 + BYTE green;
1.84 + BYTE blue;
1.85 + }
1.86 +
1.87 +STRUCT ANIM_SLIDE_PART_NEXT_VIEW
1.88 + {
1.89 + BYTE type = EAnimBlitSlideNewView;
1.90 + WORD steps = 1;
1.91 + WORD srcX;
1.92 + WORD srcY;
1.93 + WORD width;
1.94 + WORD height;
1.95 + WORD slideToX;
1.96 + WORD slideToY;
1.97 + WORD slideFromX;
1.98 + WORD slideFromY;
1.99 + }
1.100 +
1.101 +STRUCT ANIM_WAIT_UNTIL_COMPLETE
1.102 + {
1.103 + BYTE type = EAnimWaitUntilComplete;
1.104 + }
1.105 +
1.106 +STRUCT ANIM_WAIT
1.107 + {
1.108 + BYTE type = EAnimWait;
1.109 + WORD steps = 0;
1.110 + }
1.111 +
1.112 +
1.113 +STRUCT ANIM_STEP
1.114 + {
1.115 + STRUCT draw_steps[];
1.116 + }
1.117 +
1.118 +STRUCT ANIM_SECTION
1.119 + {
1.120 + STRUCT steps[];
1.121 + }
1.122 +
1.123 +
1.124 +STRUCT ANIM_DATA
1.125 + {
1.126 + WORD flags = 0;
1.127 + LONG interval = 0;
1.128 + LLINK sections[];
1.129 + }
1.130 +
1.131 +