uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/arraydialog.rh
author dan.podwall@nokia.com
Mon, 06 Apr 2009 14:02:48 -0500
changeset 51 da820b19f9da
parent 2 d760517a8095
permissions -rw-r--r--
merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
cawthron
parents:
diff changeset
     2
STRUCT DIALOG {
cawthron
parents:
diff changeset
     3
	WORD flags;
cawthron
parents:
diff changeset
     4
	STRUCT lines[];	// of DIALOG_LINE
cawthron
parents:
diff changeset
     5
}
cawthron
parents:
diff changeset
     6
cawthron
parents:
diff changeset
     7
cawthron
parents:
diff changeset
     8
STRUCT DIALOG_LINKS {
cawthron
parents:
diff changeset
     9
	WORD flags;
cawthron
parents:
diff changeset
    10
	LLINK lines[];	// of DIALOG_LINE
cawthron
parents:
diff changeset
    11
}
cawthron
parents:
diff changeset
    12
cawthron
parents:
diff changeset
    13
STRUCT LABEL {
cawthron
parents:
diff changeset
    14
	LTEXT text;
cawthron
parents:
diff changeset
    15
}
cawthron
parents:
diff changeset
    16
cawthron
parents:
diff changeset
    17
STRUCT CHECKBOX {
cawthron
parents:
diff changeset
    18
	BYTE defaultChecked;
cawthron
parents:
diff changeset
    19
}
cawthron
parents:
diff changeset
    20
cawthron
parents:
diff changeset
    21
STRUCT DIALOG_LINE {
cawthron
parents:
diff changeset
    22
	WORD id;
cawthron
parents:
diff changeset
    23
	WORD type;
cawthron
parents:
diff changeset
    24
	STRUCT field;  // LABEL or CHECKBOX
cawthron
parents:
diff changeset
    25
}
cawthron
parents:
diff changeset
    26
cawthron
parents:
diff changeset
    27
STRUCT DIALOG_LINE_REF {
cawthron
parents:
diff changeset
    28
	WORD id;
cawthron
parents:
diff changeset
    29
	WORD type;
cawthron
parents:
diff changeset
    30
	LINK ref;  // LABEL or CHECKBOX
cawthron
parents:
diff changeset
    31
}
cawthron
parents:
diff changeset
    32
cawthron
parents:
diff changeset
    33
STRUCT FORM {
cawthron
parents:
diff changeset
    34
	WORD flags;
cawthron
parents:
diff changeset
    35
	STRUCT dialog;	// DIALOG
cawthron
parents:
diff changeset
    36
}