亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? base.dcl

?? Autocad-2005-簡體中文-解密版.zip
?? DCL
字號:
// Next available MSG number is    15 
// MODULE_ID BASE_DCL_
/* Next available MSG number is  24 */

//     BASE.DCL      Version 1.1
//
//     Copyright 1991-1994,1996-1997 by Autodesk, Inc.
//
//     Permission to use, copy, modify, and distribute this software
//     for any purpose and without fee is hereby granted, provided
//     that the above copyright notice appears in all copies and
//     that both that copyright notice and the limited warranty and
//     restricted rights notice below appear in all supporting
//     documentation.
//
//     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
//     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
//     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
//     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
//     UNINTERRUPTED OR ERROR FREE.
//
//     Use, duplication, or disclosure by the U.S. Government is subject to
//     restrictions set forth in FAR 52.227-19 (Commercial Computer
//     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
//     (Rights in Technical Data and Computer Software), as applicable.
//
//.
//
// Define common prototypes and subassemblies for use by
// ACAD.DCL and user-defined dialogs (AutoCAD), and by
// ACLT.DCL (AutoCAD LT).

// (The primitive widgets are set up automatically by init_dialog.  The
// equivalent DCL is shown here (commented out) for reference.)

// dialog {
//      layout          = vertical;
//      is_enabled      = false;
// }
// 
// cluster {
//      layout          = horizontal;
// }
// 
// radio_cluster {
//      layout          = horizontal;
//      is_enabled      = true;
// }
// 
// tile {
//      layout          = horizontal;
//      is_enabled      = true;
// }
// 
// text  : tile {
//      fixed_height    = true;       // inhibit vertical expansion
// }
// 
// image : tile {
// }
// 
// button : tile {
//      fixed_height    = true;
//      is_tab_stop     = true;
// }
// 
// image_button : button {
//      is_tab_stop     = true;
// }
// 
// toggle : tile {
//      fixed_height    = true;
//      is_tab_stop     = true;
// }
// 
// radio_button : tile {
//      fixed_height    = true;
//      is_tab_stop     = true;
// }
// 
// list_box : tile {
//      is_tab_stop     = true;
//      height          = 10;
//      width           = 10;
// }
// 
// edit_box : tile {
//      fixed_height    = true;
//      is_tab_stop     = true;
// }
// 
// popup_list : tile {
//      is_tab_stop     = true;
//      fixed_height    = true;
// }
// 
// slider : tile {
//      is_tab_stop     = true;
// }
// 
// spacer : tile {
// }

//----- Styles of clusters.

row : cluster {
    horizontal_margin = none;
    vertical_margin = none;
    children_alignment = centered;
}

column : cluster {
    layout = vertical;
    horizontal_margin = none;
    vertical_margin = none;
}

boxed_row : cluster {
    label = " ";
    boxed = true;
    children_alignment = centered;
}

boxed_column : cluster {
    layout = vertical;
    label = " ";
    boxed = true;
}

//----- Styles of radio clusters.

radio_row : radio_cluster {
    horizontal_margin = none;
    vertical_margin = none;
    children_alignment = centered;
}

radio_column : radio_cluster {
    layout = vertical;
    horizontal_margin = none;
    vertical_margin = none;
}

boxed_radio_row : radio_cluster {
    label = " ";
    boxed = true;
    children_alignment = centered;
}

boxed_radio_column : radio_cluster {
    layout = vertical;
    label = " ";
    boxed = true;
}

//----- Horizontal and vertical blocks of running text.

concatenation : cluster {
    fixed_width = true;
    fixed_height = true;
    children_alignment = centered;
}

paragraph : cluster {
    layout = vertical;
    fixed_height = true;
}

text_part : text {
    horizontal_margin = none;
    vertical_margin = none;
}

text_25 : text {
    width = 25;
}

//----- Common spacers.

spacer_0 : spacer {
    height = 0;
    width = 0;
    horizontal_margin = none;
    vertical_margin = none;
}

spacer_1 : spacer {
    height = 1;
    width = 1;
    horizontal_margin = none;
    vertical_margin = none;
}

//----- The normal default widget.

default_button : button {
        is_default      = true;
}

//----- Standard prototype for making consistent "dialog retirement buttons".
//      Used below for the predefined retirement buttons, and for user-defined
//      dialogs that need retirement buttons with specialized verbs.

retirement_button : button {
        fixed_width     = true;
        width           = 8;
        alignment = centered;
}

//----- Standard dialog retirement buttons.  Unless one is building a dialog
//      retirement subassembly containing specialized verbs, these will 
//      normally not be used directly by DCL code outside of base.dcl; use
//      the pre-built subassemblies in the next section.

ok_button : retirement_button {
        label           = "  OK  ";
        key             = "accept";
        is_default      = true;
}

cancel_button : retirement_button {
        label           = "Cancel";
        key             = "cancel";
        is_cancel       = true;
}

help_button : retirement_button {
        label           = "&Help";
        key             = "help";
        is_help         = true;
}

info_button : retirement_button {
        label           = "&Info...";
        key             = "info";
}

//----- Pre-built arrays of dialog bottom-line buttons.

ok_only : column {
    fixed_width = true;
    alignment = centered;
    : ok_button {
        is_cancel = true;
    }
}

ok_cancel : column {
    : row {
        fixed_width = true;
        alignment = centered;
        ok_button;
        : spacer { width = 2; }
        cancel_button;
    }
}

ok_cancel_help : column {
    : row {
        fixed_width = true;
        alignment = centered;
        ok_button;
        : spacer { width = 2; }
        cancel_button;
        : spacer { width = 2; }
        help_button;
    }
}

ok_cancel_help_info : column {
    : row {
        fixed_width = true;
        alignment = centered;
        ok_button;
        : spacer { width = 2; }
        cancel_button;
        : spacer { width = 2; }
        help_button;
        : spacer { width = 2; }
        info_button;
    }
}

//----- Error reporting tiles.

errtile : text {
        label = "";
        key = "error";
        width = 35;                   // must be long enough to hold error msgs
        is_error_tile = true;
}

// A custer consisting of OK, Cancel, and Help on one line with the error tile
//    below.

ok_cancel_help_errtile : column {
    ok_cancel_help;
    errtile;
}

// The same thing without the Help button for subdialogues that have no help
//    available.

ok_cancel_err : column {
    ok_cancel;
    errtile;
}

//----- Currently, the only dcl setting is the audit_level which controls the
//  level of semantic error checking applied during a load_dialog operation.
//      (0 = none, 1 = errors, 2 = warnings, 3 = hints)
// See AutoCAD's README for details.
default_dcl_settings : tile {
    audit_level = 1;
}

//----- Miscellaneous parts used by ACAD.DCL (AutoCAD) & ACLT.DCL (AutoCAD LT).

image_block : image {
        key = "show_image";
        height = 1;
        width = 1;
}

icon_image : image_button {
        color                   = 0;
        width                   = 12;
        aspect_ratio            = 0.66;
        allow_accept            = true;
        fixed_height            = true;
        fixed_width             = true;
}

edit12_box : edit_box {
        edit_width = 12;
        edit_limit = 148;    // 18 * 8 (CIF/MIF size)
}

edit32_box : edit_box {
        edit_width = 32;
        edit_limit = 2048;   // MAX_VALUE (256 * 8 (CIF/MIF size))
}

//  The following are for the color-selection dialogs

swatch : image_button {
    vertical_margin = none;
    horizontal_margin = none;
    fixed_height = true;
    fixed_width = true;
    height = 1.5;
    width = 3;
        allow_accept = true;
}

color_palette_1_7 : row {             // Standard colors 1-7
    : swatch { color = 001; key = "001"; }
    : swatch { color = 002; key = "002"; }
    : swatch { color = 003; key = "003"; }
    : swatch { color = 004; key = "004"; }
    : swatch { color = 005; key = "005"; }
    : swatch { color = 006; key = "006"; }
    : swatch { color = 007; key = "007"; }
}

color_palette_1_9 : row {             // Standard colors, plus 8 and 9
    color_palette_1_7;
    : swatch { color = 008; key = "008"; }
    : swatch { color = 009; key = "009"; }
}

color_palette_0_9 : row {             // Standard colors, plus 0, 8, and 9
    : swatch { color = 000; key = "000"; }
    color_palette_1_9;
}

color_palette_250_255 : row {         // Grey shades 250-255
    : swatch { color = 250; key = "250"; }
    : swatch { color = 251; key = "251"; }
    : swatch { color = 252; key = "252"; }
    : swatch { color = 253; key = "253"; }
    : swatch { color = 254; key = "254"; }
    : swatch { color = 255; key = "255"; }
}

std_rq_color :column{
    :column {
        :boxed_row {
            fixed_width = true;
            label = "Standard Colors";
            color_palette_1_9;
        }
        :row {
            :boxed_row {
                fixed_width = true;
                label = "Gray Shades";
                color_palette_250_255;
            }
            :boxed_row {
                fixed_width = true;
                label = "Logical Colors";
                :button {
                    label = "BY&LAYER";
                    key = "256";
                                }
                :button {
                    label = "BY&BLOCK";
                    key = "000";
                }
            }
        }
    }
    :boxed_column {
        label = "Full Color Palette";
        :image_button{
            key = "hiside";
            alignment = centered;
            width = 40;
            height = 4;
                        allow_accept = true;
            is_enabled = false;
        }
        :image_button{
            alignment = centered;
            key = "loside";
            width = 40;
            height = 4;
                        allow_accept = true;
            is_enabled = false;
        }
    }
    :row {
        fixed_width = true;
        alignment = centered;
        children_alignment = bottom;
        :edit12_box {
            label = "Color:";
            key = "color_edit";
            allow_accept = true;
        }
        :swatch {
            key = "color_image";
        }
    }
    ok_cancel_help_errtile;
}

//  The preceding are for color-selection dialogs


//  Top and bottom sub-assemblies for the files dialogue
files_topdf : column {
    : edit_box {
        key = "pedit";
        label = "&Pattern:";
        edit_width = 35;
    }
    : row {
        : text {
            label = "Directory:";
        }
        : text {
            key = "dirtext";
            width = 35;
        }
    }
}

files_bottomdf : column {
    : edit_box {
        key = "fedit";
        label = "&File:";
        allow_accept = true;
    }
    ok_cancel;
    errtile;
}

fcf_ibut : image_button {
    horizontal_margin = none;
    width = 3.5;
    height = 1.2;
    color        = 0;
    alignment = bottom;
}

fcf_ebox : edit_box {
    horizontal_margin = none;
    edit_width = 7;
    fixed_width = true;
    alignment = bottom;
}

fcf_ebox1 : edit_box {
    horizontal_margin = none;
    edit_width = 3;
    edit_limit = 3;
    fixed_width = true;
    alignment = bottom;
}

fcf_ibut1 : image_button {
    width        = 5.0;
    aspect_ratio = 0.66;
    color        = 0;
    allow_accept = true;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本色道久久综合亚洲aⅴ蜜桃| 免费高清成人在线| 精品国产三级电影在线观看| 欧美午夜电影网| 在线亚洲高清视频| 日韩视频一区二区三区在线播放| 99久久久国产精品免费蜜臀| 不卡一区二区在线| 国产成人免费av在线| 国产麻豆9l精品三级站| 国产成人自拍网| 国产精品夜夜嗨| 岛国av在线一区| 成人蜜臀av电影| 色综合一个色综合亚洲| 色狠狠一区二区| 欧美日韩一卡二卡三卡| 日韩亚洲欧美在线| 久久久激情视频| 亚洲婷婷综合久久一本伊一区| 亚洲欧洲在线观看av| 亚洲精品水蜜桃| 日韩精品1区2区3区| 久久国产精品99久久久久久老狼| 国产在线麻豆精品观看| 北岛玲一区二区三区四区| 欧美亚洲自拍偷拍| 日韩精品一区二区三区视频播放 | 日韩免费视频一区二区| 26uuu国产电影一区二区| 中文字幕 久热精品 视频在线 | 日韩中文欧美在线| 国产乱淫av一区二区三区| 成人av资源站| 欧美理论片在线| 久久精品日韩一区二区三区| 亚洲乱码一区二区三区在线观看| 亚洲电影一级片| 国产伦精品一区二区三区视频青涩 | 亚洲成人av一区| 久久er精品视频| 色综合久久久久| 精品处破学生在线二十三| 亚洲视频一区在线观看| 蜜桃视频一区二区三区| 99re视频精品| 久久这里只有精品6| 亚洲自拍偷拍麻豆| 国产激情一区二区三区四区| 欧美性感一类影片在线播放| 国产精品久久午夜| 另类欧美日韩国产在线| 欧洲精品中文字幕| 国产精品美女久久福利网站| 久久99精品久久久久久久久久久久| 欧美一区二区女人| 国产亚洲自拍一区| 亚洲国产成人高清精品| 波波电影院一区二区三区| 2020日本不卡一区二区视频| 午夜久久久影院| 日本久久电影网| 国产精品久久久久久久午夜片| 免费观看91视频大全| 欧美三区在线观看| 一区二区三区精品| 99国产精品国产精品久久| 久久久国产午夜精品| 韩国欧美国产1区| 日韩一区二区视频在线观看| 性欧美大战久久久久久久久| 日本韩国欧美一区二区三区| 国产精品理伦片| 风间由美性色一区二区三区| 久久免费美女视频| 精品亚洲成a人在线观看| 日韩丝袜情趣美女图片| 美脚の诱脚舐め脚责91| 日韩欧美亚洲国产另类| 日韩成人av影视| 欧美成人女星排名| 国内精品嫩模私拍在线| 精品成人一区二区三区四区| 久久se精品一区精品二区| 欧美精品一区二| 国产不卡视频在线播放| 国产精品久久久久久久久免费樱桃 | 亚洲另类春色国产| 色综合一个色综合| 亚洲一卡二卡三卡四卡| 7799精品视频| 老司机精品视频在线| 精品剧情v国产在线观看在线| 日韩高清在线电影| www久久久久| 成人黄色大片在线观看| 悠悠色在线精品| 欧美麻豆精品久久久久久| 久热成人在线视频| 国产精品色哟哟| 欧美性受极品xxxx喷水| 亚洲国产精品人人做人人爽| 日韩你懂的电影在线观看| 粉嫩在线一区二区三区视频| 亚洲天堂精品视频| 欧美日韩电影在线| 高清不卡一二三区| 亚洲精品成人在线| 精品福利一区二区三区免费视频| 成人激情电影免费在线观看| 亚洲国产视频网站| 精品国产精品一区二区夜夜嗨| www.色精品| 免费看黄色91| 亚洲欧美另类图片小说| 欧美丰满少妇xxxxx高潮对白| 国产麻豆视频一区二区| 亚洲制服丝袜在线| 久久精品亚洲精品国产欧美kt∨ | 欧美日韩一区二区三区免费看| 奇米精品一区二区三区四区| 国产精品你懂的| 6080亚洲精品一区二区| 成人av片在线观看| 久久99精品久久只有精品| 夜夜亚洲天天久久| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 综合分类小说区另类春色亚洲小说欧美 | 91久久精品网| 国产一区二区91| 日韩高清一区二区| 亚洲图片欧美一区| 国产精品成人午夜| 国产亚洲欧美色| 精品国产乱码久久久久久浪潮| 欧美性受极品xxxx喷水| 成人午夜视频福利| 国产精品一区二区在线观看不卡| 午夜电影网亚洲视频| 亚洲色图在线看| 国产欧美一区视频| 久久久青草青青国产亚洲免观| 制服丝袜激情欧洲亚洲| 欧美体内she精高潮| 91老师国产黑色丝袜在线| 岛国av在线一区| 成人免费黄色在线| 国产精品影音先锋| 国产精品一级片在线观看| 青草国产精品久久久久久| 亚洲一级电影视频| 亚洲一区二区三区国产| 一区二区三区在线视频播放| 1024成人网色www| 国产精品久线在线观看| 综合av第一页| 亚洲图片另类小说| 亚洲美女免费视频| 一区二区三区欧美| 亚洲国产精品久久久久秋霞影院| 亚洲一区二区三区精品在线| 亚洲成国产人片在线观看| 亚洲va天堂va国产va久| 日本午夜精品一区二区三区电影| 男女性色大片免费观看一区二区 | 日韩视频在线观看一区二区| 日韩欧美黄色影院| 26uuu色噜噜精品一区二区| 国产亚洲欧美色| 国产精品免费免费| 一区二区视频免费在线观看| 一区二区三区四区视频精品免费| 亚洲在线观看免费视频| 日韩电影免费在线观看网站| 国模大尺度一区二区三区| 豆国产96在线|亚洲| 色婷婷精品大在线视频| 69久久99精品久久久久婷婷| 日韩久久免费av| 国产精品理伦片| 天天综合天天做天天综合| 韩国精品久久久| 99精品一区二区| 在线不卡免费av| 国产欧美日韩在线| 亚洲国产cao| 国产伦精品一区二区三区免费迷 | 日韩精品中文字幕一区 | 色综合天天综合| 欧美乱妇23p| 国产亚洲欧美色| 亚洲大片精品永久免费| 国产永久精品大片wwwapp| 91福利资源站| 国产午夜精品理论片a级大结局 | 欧美日韩国产首页| 中文子幕无线码一区tr| 日韩国产高清影视| 色婷婷精品久久二区二区蜜臂av| 精品乱人伦小说|