home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / dxview / dxview.rc < prev    next >
Text File  |  1997-07-14  |  2KB  |  85 lines

  1.  
  2. #include <windows.h>
  3. #include "dxview.h"
  4.  
  5.  
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. //
  9. // Menu
  10. //
  11. Menu MENU DISCARDABLE
  12. BEGIN
  13.     POPUP "&File"
  14.     BEGIN
  15.         MENUITEM "&About",                      IDM_ABOUT
  16.         MENUITEM SEPARATOR
  17.         MENUITEM "&Print",                      IDM_PRINT
  18.         MENUITEM "Print All",                   IDM_PRINTALL
  19.         MENUITEM "Print to File",               IDM_PRINTTOFILE
  20.         MENUITEM SEPARATOR
  21.         MENUITEM "E&xit",                       IDM_EXIT
  22.     END
  23.     POPUP "&View"
  24.     BEGIN
  25.         MENUITEM "A&vailable",                  IDM_VIEWAVAIL
  26.         MENUITEM "&All",                        IDM_VIEWALL
  27.     END
  28. END
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. //
  32. // Icon
  33. //
  34. IDI_DIRECTX             ICON    DISCARDABLE     "dxview.ico"
  35. IDI_CAPS                ICON    DISCARDABLE     "folder.ico"
  36. IDI_CAPSOPEN            ICON    DISCARDABLE     "folderop.ico"
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. //
  40. // Dialog
  41. //
  42. About DIALOG DISCARDABLE  0, 0, 191, 80
  43. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  44. CAPTION "About DXView"
  45. FONT 8, "MS Sans Serif"
  46. BEGIN
  47.     DEFPUSHBUTTON   "OK",IDOK,132,58,50,14
  48.     LTEXT           "DirectX Device Viewer",-1,15,14,
  49.                     115,8
  50.     LTEXT           "Copyright \251 1995-1997 Microsoft Corporation",-1,15,28,
  51.                     157,8
  52.     LTEXT           "Version",-1,15,42,24,8
  53.     LTEXT           "1.0",-1,40,42,66,8
  54.     LTEXT           "Written by: Vince Roggero",-1,16,54,98,8
  55. END
  56.  
  57. IDD_ABORTPRINTDLG DIALOG DISCARDABLE  40, 40, 120, 40
  58. STYLE DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  59. FONT 8, "MS Sans Serif"
  60. BEGIN
  61.     CTEXT           "Cancel Printing",-1,4,6,120,12
  62.     DEFPUSHBUTTON   "Cancel",IDCANCEL,44,22,32,14,WS_GROUP
  63. END
  64.  
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67. //
  68. // Cursor
  69. //
  70. IDC_SPLIT           CURSOR  DISCARDABLE     "Split.cur"
  71.  
  72.  
  73. /////////////////////////////////////////////////////////////////////////////
  74. //
  75. // String Table
  76. //
  77.  
  78. STRINGTABLE DISCARDABLE 
  79. BEGIN
  80.     IDS_PRINT_WARNING    "Print Warning"
  81.     IDS_PRINT_NEEDSELECT "Unable to print, as there is no current selection."
  82.     IDS_PRINT_NOROOT     "Unable to print, DX View Tree not properly set up."
  83. END
  84.  
  85.