POLYLINE.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Component Chapter 21
  4.  *
  5.  * Resources for the Polyline object (just the version information)
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #include <windows.h>
  14. #ifdef WIN32
  15. #include <winver.h>
  16. #else
  17. #include <ver.h>
  18. #endif
  19. #include "resource.h"
  20. //This is the default for iconic representations.
  21. IDR_ICON        ICON    polyline.ico
  22. //This dialog is used to edit the Polyline
  23. IDD_EDITDIALOG DIALOG 6, 18, 258, 152
  24. STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
  25. CAPTION "Polyline"
  26. FONT 8, "MS Sans Serif"
  27. BEGIN
  28.     CONTROL         "", ID_POLYLINERECT, "Static", SS_BLACKFRAME
  29.                         , 8, 12, 134, 132
  30.     PUSHBUTTON      "&Close", IDOK, 178, 6, 56, 14
  31.     PUSHBUTTON      "&Undo", ID_UNDO, 178, 24, 56, 14
  32.     PUSHBUTTON      "&Background...", ID_COLORBACK, 178, 54, 56, 14
  33.     PUSHBUTTON      "&Line...", ID_COLORLINE, 178, 72, 56, 14
  34.     GROUPBOX        "Colors", ID_GROUPCOLORS, 158, 42, 94, 48
  35.     GROUPBOX        "Figure", ID_GROUPFIGURE, 2, 0, 146, 148
  36.     GROUPBOX        "Line Styles", ID_GROUPSTYLES, 158, 94, 94, 54
  37.     CONTROL         "&Solid", ID_LINESOLID, "Button",
  38.                     BS_AUTORADIOBUTTON | WS_GROUP, 166, 106, 32, 10
  39.     CONTROL         "&Dash", ID_LINEDASH, "Button"
  40.                         , BS_AUTORADIOBUTTON, 216
  41.                         , 106, 32, 10
  42.     CONTROL         "Da&sh-Dot-Dot", ID_LINEDASHDOTDOT, "Button"
  43.                         , BS_AUTORADIOBUTTON, 166, 134, 80, 10
  44.     CONTROL         "D&ot", ID_LINEDOT, "Button"
  45.                         , BS_AUTORADIOBUTTON, 216
  46.                         , 120, 32, 10
  47.     CONTROL         "D&ash-Dot", ID_LINEDASHDOT, "Button"
  48.                         , BS_AUTORADIOBUTTON, 166, 120, 48, 10
  49. END
  50. STRINGTABLE
  51.     BEGIN
  52.      IDS_STORAGEFORMAT,      "Polyline Figure"
  53.      IDS_USERTYPE,           "Polyline Figure"
  54.      IDS_CLOSECAPTION,       "Polyline"
  55.      IDS_CLOSEPROMPT,        "Object has changed.  Do you wish to update it?"
  56.     END
  57. VS_VERSION_INFO VERSIONINFO
  58.  FILEVERSION        1,0,0,0
  59.  PRODUCTVERSION     1,0,0,0
  60.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  61. #ifndef DEBUG
  62.  FILEFLAGS          0
  63. #else
  64.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  65. #endif
  66. #ifdef WIN32
  67.  FILEOS             VOS_NT_WINDOWS32
  68. #else
  69.  FILEOS             VOS_DOS_WINDOWS16
  70. #endif
  71.  FILETYPE           VFT_DLL
  72.  FILESUBTYPE        VFT_UNKNOWN
  73.  BEGIN
  74.    BLOCK "StringFileInfo"
  75.     BEGIN
  76.     #ifdef UNICODE
  77.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  78.     #else
  79.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  80.     #endif
  81.       BEGIN
  82.        VALUE "CompanyName",     "Microsoft Corporation", ""
  83.        VALUE "FileDescription", "Polyline Object 1.0", ""
  84.        VALUE "FileVersion",     "1.00", ""
  85.        VALUE "InternalName",    "POLY21.DLL", ""
  86.        VALUE "LegalCopyright",  "Copyright 251 1993-1995 Microsoft Corp.", ""
  87.        VALUE "OriginalFilename","POLY21.DLL", ""
  88.        VALUE "ProductName",     "Polyline Object 1.0", ""
  89.        VALUE "ProductVersion",  "1.00"
  90.       END
  91.    END
  92.  
  93.    BLOCK "VarFileInfo"
  94.     BEGIN 
  95.     #ifdef UNICODE
  96.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  97.     #else
  98.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  99.     #endif
  100.     END
  101.  END