uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/arraydialog.rh
author dadubrow
Mon, 20 Sep 2010 14:53:04 -0500
changeset 2066 054d8e53a1a0
parent 0 fb279309251b
permissions -rw-r--r--
portal - icon change


STRUCT DIALOG {
	WORD flags;
	STRUCT lines[];	// of DIALOG_LINE
}


STRUCT DIALOG_LINKS {
	WORD flags;
	LLINK lines[];	// of DIALOG_LINE
}

STRUCT LABEL {
	LTEXT text;
}

STRUCT CHECKBOX {
	BYTE defaultChecked;
}

STRUCT DIALOG_LINE {
	WORD id;
	WORD type;
	STRUCT field;  // LABEL or CHECKBOX
}

STRUCT DIALOG_LINE_REF {
	WORD id;
	WORD type;
	LINK ref;  // LABEL or CHECKBOX
}

STRUCT FORM {
	WORD flags;
	STRUCT dialog;	// DIALOG
}