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

Windows编程

开发平台:

Visual C++

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