60 lines
1.3 KiB
D
60 lines
1.3 KiB
D
// Dialogbox f�r DINFORM.LSP = Zeichnungs-Rahmen einf�gen
|
|
//
|
|
// Datum: 05.12.93
|
|
//
|
|
|
|
DINFORM : dialog
|
|
{
|
|
label = "Insert Drawing Border";
|
|
spacer;
|
|
: popup_list
|
|
{
|
|
label = "Border-Size";
|
|
key = "DIN";
|
|
mnemonic = "P";
|
|
value = 0;
|
|
list = "A0\nA1\nA2\nA3\nA4";
|
|
}
|
|
spacer;
|
|
: boxed_radio_column
|
|
{
|
|
label = "Alignment (only for A4)";
|
|
value = "0";
|
|
: row
|
|
{
|
|
: radio_button
|
|
{
|
|
label = "Landscape";
|
|
key = "QUER";
|
|
mnemonic = "Q";
|
|
value = "1";
|
|
}
|
|
: radio_button
|
|
{
|
|
label = "Portrait";
|
|
key = "HOCH";
|
|
mnemonic = "H";
|
|
}
|
|
}
|
|
}
|
|
spacer;
|
|
: popup_list
|
|
{
|
|
label = "Scale";
|
|
key = "MS";
|
|
mnemonic = "M";
|
|
value = 6;
|
|
list = "1:1\n1:10\n1:20\n1:25\n1:50\n1:75\n1:100\n1:200\n1:500\n1:1000";
|
|
}
|
|
spacer;
|
|
: toggle
|
|
{
|
|
label = "Header";
|
|
key = "SF";
|
|
mnemonic = "S";
|
|
value = "1";
|
|
}
|
|
spacer;
|
|
ok_cancel;
|
|
}
|
|
|