williamr@2
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
2 |
// All rights reserved.
|
williamr@2
|
3 |
// This component and the accompanying materials are made available
|
williamr@4
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
williamr@2
|
5 |
// which accompanies this distribution, and is available
|
williamr@4
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
williamr@2
|
7 |
//
|
williamr@2
|
8 |
// Initial Contributors:
|
williamr@2
|
9 |
// Nokia Corporation - initial contribution.
|
williamr@2
|
10 |
//
|
williamr@2
|
11 |
// Contributors:
|
williamr@2
|
12 |
//
|
williamr@2
|
13 |
// Description:
|
williamr@2
|
14 |
//
|
williamr@2
|
15 |
|
williamr@2
|
16 |
|
williamr@2
|
17 |
#if !defined(__BMPANCONSTS_H__)
|
williamr@2
|
18 |
#define __BMPANCONSTS_H__
|
williamr@2
|
19 |
|
williamr@2
|
20 |
/**
|
williamr@2
|
21 |
TBitmapAnimCommand
|
williamr@2
|
22 |
|
williamr@2
|
23 |
@internalComponent
|
williamr@2
|
24 |
*/
|
williamr@2
|
25 |
enum TBitmapAnimCommand
|
williamr@2
|
26 |
{
|
williamr@2
|
27 |
EBitmapAnimCommandSetBackgroundFrame,
|
williamr@2
|
28 |
EBitmapAnimCommandSetDataFrame,
|
williamr@2
|
29 |
EBitmapAnimCommandSetFlash,
|
williamr@2
|
30 |
EBitmapAnimCommandSetFrameIndex,
|
williamr@2
|
31 |
EBitmapAnimCommandSetFrameInterval,
|
williamr@2
|
32 |
EBitmapAnimCommandSetNumberOfCycles,
|
williamr@2
|
33 |
EBitmapAnimCommandSetPlayMode,
|
williamr@2
|
34 |
EBitmapAnimCommandSetPosition,
|
williamr@2
|
35 |
EBitmapAnimCommandStartAnimation,
|
williamr@2
|
36 |
EBitmapAnimCommandStopAnimation,
|
williamr@2
|
37 |
EBitmapAnimCommandStartAnimationAndKeepLastFrame,
|
williamr@2
|
38 |
EBitmapAnimCommandResetFrameArray,
|
williamr@2
|
39 |
EBitmapAnimCommandClearDataFrames
|
williamr@2
|
40 |
};
|
williamr@2
|
41 |
|
williamr@2
|
42 |
#endif
|
williamr@4
|
43 |
|