home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 February / Chip_2001-02_cd1.bin / bonus / demos / CS / exp / SOURCES / DEMO / dialog.rc < prev    next >
Text File  |  2000-08-20  |  2KB  |  41 lines

  1. #include "windows.h"
  2. #include "dialog.h"
  3.  
  4. #define IDC_STATIC -1
  5.  
  6. #define NOTE_TEXT "You can downscale the textures by setting ""Lower texture \
  7. quality"", if your card hasn't got enough memory to store all the textures. Setting \
  8. the ""Voodoo card"" checkbox will force the textures to not exceed 256x256 \
  9. dimensions. You can also disable the fog effect which might be useful on ATI \
  10. Rage Pro cards that don't support this feature correctly."
  11.  
  12.  
  13. 1000 DIALOG DISCARDABLE  0, 0, 166, 245
  14. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
  15. CAPTION "Expiration"
  16. FONT 8, "MS Sans Serif"
  17. BEGIN
  18.     GROUPBOX        "&Resolution",IDC_STATIC,5,58,100,27
  19.     COMBOBOX        ID_RESOLUTION,10,67,91,60,CBS_DROPDOWNLIST | WS_VSCROLL | 
  20.                     WS_TABSTOP
  21.     GROUPBOX        "&Bpp",IDC_STATIC,108,58,52,27
  22.     COMBOBOX        ID_BPP,113,67,43,60,CBS_DROPDOWNLIST | WS_VSCROLL | 
  23.                     WS_TABSTOP
  24.     CONTROL         "&Fullscreen",ID_FULLSCREEN,"Button",BS_AUTOCHECKBOX | 
  25.                     WS_TABSTOP,6,88,100,12
  26.     CONTROL         "&Voodoo card",ID_VOODOO,"Button",BS_AUTOCHECKBOX | 
  27.                     WS_TABSTOP,6,100,100,12
  28.     CONTROL         "&Lower texture quality",ID_LOWTEXTURES,"Button",
  29.                     BS_AUTOCHECKBOX | WS_TABSTOP,6,112,100,12
  30.     CONTROL         "&Disable fog effects",ID_NOFOG,"Button",
  31.                     BS_AUTOCHECKBOX | WS_TABSTOP,6,124,100,12
  32.     DEFPUSHBUTTON   "Go!",ID_GO,5,139,110,13
  33.     PUSHBUTTON      "Cancel",ID_STOP,117,139,43,13
  34.     CONTROL         "logo",IDC_STATIC,"Static",SS_BITMAP | WS_BORDER,6,3,152,52
  35.     GROUPBOX        "Note",IDC_STATIC,5,154,155,87
  36.     LTEXT           NOTE_TEXT,IDC_STATIC,13,164,140,72
  37. END       
  38.  
  39. logo                    BITMAP  DISCARDABLE     "data\\resource\\pp.BMP"
  40. ID_ICON                 ICON    DISCARDABLE     "data\\resource\\ikona.ico"
  41.