54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
// ============================================================
|
|
// kreisel_edit.dcl - Kreisel Parameter bearbeiten
|
|
// Erlaubt das Aendern von Abstand, Hoehe, Ausrichtung,
|
|
// Drehrichtung, Typ und Name eines bestehenden Kreisels.
|
|
// ============================================================
|
|
|
|
kreisel_edit : dialog {
|
|
label = "Kreisel bearbeiten";
|
|
|
|
: column {
|
|
|
|
: edit_box {
|
|
key = "name";
|
|
label = "Kreiselname:";
|
|
edit_width = 30;
|
|
}
|
|
|
|
: row {
|
|
: edit_box {
|
|
key = "abstand";
|
|
label = "Abstand (mm):";
|
|
edit_width = 10;
|
|
}
|
|
: edit_box {
|
|
key = "hoehe";
|
|
label = "Hoehe (mm):";
|
|
edit_width = 10;
|
|
}
|
|
}
|
|
|
|
: popup_list {
|
|
key = "ausrichtung";
|
|
label = "Ausrichtung:";
|
|
width = 30;
|
|
}
|
|
|
|
: row {
|
|
: popup_list {
|
|
key = "drehrichtung";
|
|
label = "Motordrehrichtung:";
|
|
width = 16;
|
|
}
|
|
: popup_list {
|
|
key = "kreiselart";
|
|
label = "Typ:";
|
|
width = 16;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
ok_cancel;
|
|
}
|