equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Pictograph drawer flags. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef AKN_PICTOGRAPH_DRAWER_FLAGS_H |
|
22 #define AKN_PICTOGRAPH_DRAWER_FLAGS_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 |
|
27 // CONSTANTS |
|
28 |
|
29 // bit flags, must be powers of two |
|
30 const TInt KFlagAnimatedPictographs = 0x0001; |
|
31 const TInt KFlagTimerStarted = 0x0002; |
|
32 const TInt KFlagNullBrushSet = 0x0004; |
|
33 const TInt KFlagDrawingMultiplePictographs = 0x0008; |
|
34 |
|
35 #endif // AKN_PICTOGRAPH_DRAWER_FLAGS_H |
|
36 |
|
37 // End of File |