📄 rendcomm.dcl
字号:
spacer_1;
: boxed_radio_column
{
label = "Multiple Material Objects:";
: radio_button
{
key = "prompt";
label = "Always Prompt";
mnemonic = "P";
}
: radio_button
{
key = "break";
label = "Split by Material";
mnemonic = "S";
}
: radio_button
{
key = "first";
label = "Assign First Material";
mnemonic = "F";
}
: radio_button
{
key = "none";
label = "Don't Assign a Material";
mnemonic = "n";
}
}
}
}
spacer_1;
okNoDef_cancel_help;
}
}
//***************************************************************************
//
//***************************************************************************
bcmatls : dialog
{
label = "Material Assignment Alert";
: text {
key = "objname";
width = 50; /* "Object1234567890 has multiple materials assigned" */
}
: boxed_column {
label = "";
children_alignment = centered;
children_fixed_width = true;
: radio_column {
: radio_button {
key = "breakapart";
label = "Split Object By Material";
mnemonic = "S";
}
: radio_button {
key = "applyfirst";
label = "Assign First Material";
mnemonic = "A";
}
: radio_button {
key = "applyone";
label = "Select a Material:";
mnemonic = "M";
}
}
: row {
: popup_list {
key = "materials";
value = "0";
edit_width = 25;
}
}
}
spacer_1;
ok_cancel_help;
}
//***************************************************************************
//
//***************************************************************************
// this is a clone of ok_cancel_help
rename_cancel_replace : column
{
: row
{
fixed_width = true;
alignment = centered;
: retirement_button
{
label = " Rename ";
key = "rename";
is_default = true;
}
: spacer { width = 2; }
cancel_button;
: spacer { width = 2; }
: retirement_button
{
label = " Replace ";
key = "replace";
mnemonic = "R";
}
}
}
//***************************************************************************
//
//***************************************************************************
bcrenmat : dialog
{
label = "Mordred Message";
: text
{
key = "prompt";
width = 40;
}
: text
{
label = "Do you want to replace it?";
}
spacer_1;
rename_cancel_replace;
}
//***************************************************************************
// 3DS Output
//***************************************************************************
outOptions : dialog
{
label = "3D Studio File Export Options";
:boxed_radio_column
{
label = "Derive 3D Studio Objects From";
key = "method";
:radio_button
{
label = "Layer";
key = "methLay";
mnemonic = "L";
}
:radio_button
{
label = "AutoCAD Color Index (ACI)";
key = "methCol";
mnemonic = "A";
}
:radio_button
{
label = "AutoCAD Object Type";
key = "methType";
mnemonic = "O";
}
}
:boxed_row
{
label = "AutoCAD Blocks";
:toggle
{
label = "Override (Each block is one object)";
key = "mode";
mnemonic = "v";
}
}
:boxed_row
{
height = 2;
label = "Smoothing";
:toggle
{
label = "Auto-Smoothing";
key = "sEn";
mnemonic = "S";
}
:edit_box
{
label = " ";
key = "smooth";
edit_width = 3;
edit_limit = 3;
allow_accept = true;
}
:text
{
label = "Degrees";
key = "sText";
}
}
:boxed_row
{
height = 2;
label = "Welding";
:toggle
{
label = "Auto-Welding";
key = "wEn";
mnemonic = "W";
}
spacer_1;
:edit_box
{
key = "weld";
label = "&Threshold";
edit_width = 8;
edit_limit = 8;
allow_accept = true;
}
:text
{
label = " ";
}
}
spacer_1;
errtile;
ok_cancel_help;
}
//***************************************************************************
// VL conversion
//***************************************************************************
presOptions : dialog
{
label = "Visual Link Data Conversion";
initial_focus = "overwt";
:toggle
{
key = "overwt";
mnemonic = "";
label = "Overwrite AutoVision Material and Mapping Assignments";
}
spacer_1;
ok_cancel_help;
}
//***************************************************************************
//
//***************************************************************************
warning : dialog
{
label = "Visual Link Conversion Alert";
:text
{
label = "Some Visual Link material assignments";
}
:text
{
label = "could not be represented by AutoVision";
}
:text
{
label = "and therefore were not converted";
}
spacer_1;
ok_only;
}
//***************************************************************************
// RHEXPORT support
//***************************************************************************
rhexport : dialog
{
label = "File Output Configuration";
: row {
: column {
: boxed_column {
label = "File Type";
mnemonic = "F";
: popup_list {
key = "f_types";
// CHANGING THE ORDER OF THE LIST OR WHAT IS ON IT
// REQUIRES A CHANGE IN dlg_rhex.c !!!!!
list = "BMP\nPCX\nPostScript\nTGA\nTIFF";
mnemonic = "F";
value = "4";
}
: popup_list {
key = "resol";
// CHANGING THE ORDER OF THE LIST OR WHAT IS ON IT
// REQUIRES A CHANGE IN dlg_rhex.c !!!!!
// Just changing the strings is OK.
width = 30;
list = "320 x 200 (CGA/MCGA color)\n640 x 200 (CGA Monochrome)\n640 x 350 (EGA)\n640 x 400\n640 x 480 (VGA)\n720 x 540\n800 x 600\n1024 x 768\n1152 x 900 (Sun Standard)\n1600 x 1280 (Sun hi-res)\n2048 x 1366\n2048 x 1536\n4096 x 2736\n4096 x 3072\nUser Defined";
mnemonic = "F";
value = "4";
}
: row {
: edit_box {
label = "X:";
key = "RES_X";
value = "640";
mnemonic = "X";
edit_limit = 5;
}
: edit_box {
label = "Y:";
key = "RES_Y";
value = "480";
mnemonic = "Y";
edit_limit = 5;
}
}
: edit_box {
label = "Aspect Ratio:";
key = "ASPECT";
value = "1.0";
mnemonic = "R";
edit_limit = 5;
}
}
: boxed_radio_column {
label = "Colors";
key = "colortype";
: radio_button {
key = "b_1";
label = "Monochrome";
mnemonic = "M";
}
: radio_button {
key = "b_8";
label = "8 Bits (256 Grayscale)";
mnemonic = "G";
}
: radio_button {
key = "b_8c";
label = "8 Bits (256 Color)";
mnemonic = "C";
}
: radio_button {
key = "b_16";
label = "16 Bits";
mnemonic = "B";
}
: radio_button {
key = "b_24";
label = "24 Bits";
mnemonic = "i";
value = "1";
}
: radio_button {
key = "b_32";
label = "32 Bits";
mnemonic = "t";
}
}
}
: column {
: boxed_column {
label = "TGA Options";
key = "tga_opts";
: column {
: row {
: toggle {
key = "compress";
label = "Compressed";
value = "1";
mnemonic = "d";
}
: toggle {
key = "up_down";
label = "Bottom Up";
mnemonic = "U";
}
}
: boxed_radio_row {
label = "Interlace";
key = "inter_a";
: radio_button {
key = "inter_1";
label = "None";
mnemonic = "N";
}
: radio_button {
key = "inter_2";
label = "2 to 1";
mnemonic = "2";
}
: radio_button {
key = "inter_4";
label = "4 to 1";
mnemonic = "4";
}
}
}
}
: boxed_column {
label = "PostScript Options";
key = "post_opts";
: radio_row {
key = "ps_port_land";
: radio_button {
key = "ps_land";
label = "Landscape";
mnemonic = "L";
}
: radio_button {
key = "ps_port";
label = "Portrait";
mnemonic = "P";
}
}
: column {
: radio_column {
key = "ps_imgsize";
: radio_button {
key = "ps_auto";
label = "Auto";
mnemonic = "A";
}
: radio_button {
key = "ps_img";
label = "Image Size";
mnemonic = "S";
}
: radio_button {
key = "ps_cust";
label = "Custom";
mnemonic = "o";
}
}
: edit_box {
label = "Image Size";
key = "img_size";
value = "640";
mnemonic = "z";
edit_limit = 5;
}
}
}
}
}
ok_cancel_help_errtile;
}
//*****************************************************************************
//
other_options : boxed_column {
label = "Face Controls";
: toggle {
key = "discard_bf";
label = "Discard back faces";
mnemonic = "D";
}
: toggle {
key = "neg_normal";
label = "Back face normal is negative";
mnemonic = "N";
}
}
//*****************************************************************************
//
crender_options : dialog {
label = "Render Options";
: row {
: boxed_radio_column {
label = "Render Quality";
key = "pf_crend_qual";
: radio_button {
key = "pf_crend_qual_10";
label = "Gouraud";
mnemonic = "G";
}
: radio_button {
key = "pf_crend_qual_20";
label = "Phong";
mnemonic = "P";
}
}
spacer_1;
other_options;
}
spacer_1_ok_cancel_help_errtile;
}
//*****************************************************************************
// Render and Preferences widgets
render_scene_list : list_box {
width = 18;
height = 9;
key = "pf_scene";
label = "Scene to Render";
mnemonic = "S";
}
//***************************************************************************
components : row {
: column {
: color_name { key = "top_name"; }
: color_name { key = "middle_name"; }
: color_name { key = "bottom_name"; }
}
: column {
: edit_box_4 { key = "top_edit"; }
: edit_box_4 { key = "middle_edit"; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -