83 lines
1.7 KiB
Plaintext
83 lines
1.7 KiB
Plaintext
// ============================================================
|
|
// gefaellestrecke.dcl - Gefaellestrecke Parameter-Eingabe
|
|
// Parametrische Eingabe fuer die einfache Gefaellestrecke
|
|
// (Modus 1 - Manuell) analog zum Kreisel-Dialog, ergaenzt um
|
|
// die Angabe der Einfuegehoehe.
|
|
// Eingaben entsprechen dem interaktiven Skript Gefaellestrecke.lsp:
|
|
// Abstand deltaL, Gefaellewinkel, Fahrtrichtung,
|
|
// Seite AUS-Element, Seite EIN-Element.
|
|
// ============================================================
|
|
|
|
gefaellestrecke : dialog {
|
|
label = "Gefaellestrecke erstellen";
|
|
|
|
: column {
|
|
|
|
: boxed_column {
|
|
label = "Geometrie";
|
|
|
|
: row {
|
|
: edit_box {
|
|
key = "deltal";
|
|
label = "Abstand deltaL (mm):";
|
|
edit_width = 10;
|
|
}
|
|
: edit_box {
|
|
key = "einfuegehoehe";
|
|
label = "Einfuegehoehe (mm):";
|
|
edit_width = 10;
|
|
}
|
|
}
|
|
|
|
: edit_box {
|
|
key = "winkel";
|
|
label = "Gefaellewinkel (Grad):";
|
|
edit_width = 10;
|
|
}
|
|
}
|
|
|
|
: boxed_column {
|
|
label = "Ausrichtung";
|
|
|
|
: popup_list {
|
|
key = "fahrtrichtung";
|
|
label = "Fahrtrichtung:";
|
|
width = 30;
|
|
}
|
|
}
|
|
|
|
: boxed_row {
|
|
label = "AUS-Element";
|
|
|
|
: popup_list {
|
|
key = "aus_winkel";
|
|
label = "Winkel:";
|
|
width = 12;
|
|
}
|
|
: popup_list {
|
|
key = "aus_seite";
|
|
label = "Seite:";
|
|
width = 14;
|
|
}
|
|
}
|
|
|
|
: boxed_row {
|
|
label = "EIN-Element";
|
|
|
|
: popup_list {
|
|
key = "ein_winkel";
|
|
label = "Winkel:";
|
|
width = 12;
|
|
}
|
|
: popup_list {
|
|
key = "ein_seite";
|
|
label = "Seite:";
|
|
width = 14;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
ok_cancel;
|
|
}
|