uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/bitmasks.rh
author Ed Swartz <ed.swartz@nokia.com>
Fri, 28 May 2010 14:29:31 -0500
changeset 1416 809f579bf32c
parent 0 fb279309251b
permissions -rw-r--r--
Add temporary "USB (TCF)" connection type for accessing the target-side Symbian TCF agent.


#define EAknOneBit 1
#define EAknTwoBit 0x2
#define EAknThree (EAknOneBit | EAknTwoBit)

#define EAknRed (0x1)
#define EAknGreen 0x2
#define EAknBlue 4
#define EAknWhite (7)
#define EAknYellow (EAknRed | EAknGreen)
#define EAknBlack 0

STRUCT BITMASK {
	LONG numbers = -1;
	LONG colors = -1;
}

enum {
	EAknRedEnum = 1,
	EAknGreenEnum = 2,
	EAknBlueEnum = 4,
	EAknWhiteEnum = 7,
	EAknYellowEnum = EAknRedEnum | EAknGreenEnum,
	EAknBlackEnum = 0
};

STRUCT BITMASK_DEFAULTS {
	LONG numbers = 0;
	LONG colors = EAknGreenEnum;
}