uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/enumsheader.rh
author timkelly
Wed, 25 Mar 2009 11:55:19 -0500
changeset 8 f330c1e8a4f3
parent 2 d760517a8095
permissions -rw-r--r--
commit the merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
cawthron
parents:
diff changeset
     2
ENUM ColorList {
cawthron
parents:
diff changeset
     3
	CAknColorRed = 1,
cawthron
parents:
diff changeset
     4
	CAknColorGreen = 2,
cawthron
parents:
diff changeset
     5
	CAknColorBlue = 3,
cawthron
parents:
diff changeset
     6
	CAknColorNone = 0,
cawthron
parents:
diff changeset
     7
	CAknColorNew
cawthron
parents:
diff changeset
     8
}
cawthron
parents:
diff changeset
     9
cawthron
parents:
diff changeset
    10
ENUM ColorList2 {
cawthron
parents:
diff changeset
    11
	CAknColorCyan,
cawthron
parents:
diff changeset
    12
	CAknColorYellow,
cawthron
parents:
diff changeset
    13
	CAknColorMagenta
cawthron
parents:
diff changeset
    14
}
cawthron
parents:
diff changeset
    15
cawthron
parents:
diff changeset
    16
STRUCT COLORS {
cawthron
parents:
diff changeset
    17
	WORD aknFgColor;
cawthron
parents:
diff changeset
    18
	WORD aknBgColor;
cawthron
parents:
diff changeset
    19
}
cawthron
parents:
diff changeset
    20
cawthron
parents:
diff changeset
    21
STRUCT COLORS_DEFAULTS {
cawthron
parents:
diff changeset
    22
	WORD aknFgColor = CAknColorGreen;
cawthron
parents:
diff changeset
    23
	WORD aknBgColor = CAknColorCyan;
cawthron
parents:
diff changeset
    24
}
cawthron
parents:
diff changeset
    25
cawthron
parents:
diff changeset
    26
ENUM Commands {
cawthron
parents:
diff changeset
    27
	CommandAccept,
cawthron
parents:
diff changeset
    28
	CommandCancel
cawthron
parents:
diff changeset
    29
}
cawthron
parents:
diff changeset
    30
cawthron
parents:
diff changeset
    31
STRUCT COMMAND {
cawthron
parents:
diff changeset
    32
	WORD command;
cawthron
parents:
diff changeset
    33
}
cawthron
parents:
diff changeset
    34
cawthron
parents:
diff changeset
    35
ENUM NumberFlags {
cawthron
parents:
diff changeset
    36
	EFlagFirst,
cawthron
parents:
diff changeset
    37
	EFlagSecond,
cawthron
parents:
diff changeset
    38
	EFlagThird
cawthron
parents:
diff changeset
    39
};