home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / t / triq.zip / TRI.RC < prev    next >
Text File  |  1991-09-10  |  2KB  |  58 lines

  1. #include "windows.h"
  2. #include "triqrc.h"
  3.  
  4.  
  5. ID_APP  ICON   tri.ico
  6.  
  7. rcinclude triq.dlg
  8.  
  9. ABOUTBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 22, 17, 144, 75
  10. STYLE WS_POPUP | WS_DLGFRAME
  11. BEGIN
  12.     CTEXT "Microsoft Windows"            -1, 37,  5, 60, 8
  13.     CTEXT "Triangle Sample Application"        -1,  0, 14, 144, 8
  14.     CTEXT "Version 1.00"            -1, 38, 34, 64, 8
  15.     CTEXT "(c) Copyright 1991, Microsoft Corp."    -1,  5, 47,132, 9
  16.     ICON  ID_APP                -1,  9, 23,  0, 0
  17.     DEFPUSHBUTTON "Ok"                  IDOK, 53, 59, 32, 14, WS_GROUP
  18. END
  19.  
  20. ID_APP menu
  21. begin
  22.     POPUP "&File"
  23.     begin
  24.         MENUITEM "&About..."     , MENU_ABOUT
  25.         MENUITEM SEPARATOR
  26.         MENUITEM "E&xit"         , MENU_EXIT
  27.     end
  28.  
  29.     POPUP "&Draw"
  30.     begin
  31.             MENUITEM "&Time it!"         , MENU_TIMEIT
  32.         MENUITEM SEPARATOR
  33.             MENUITEM "Use &GDI"          , MENU_USEGDI
  34.         MENUITEM "Use &Pat Blit"     , MENU_USEPAT
  35.         MENUITEM "Use &Custom Tri"     , MENU_USECUSTOM
  36.         MENUITEM SEPARATOR
  37.         MENUITEM "Draw to &DIBs"     , MENU_DIB
  38.         MENUITEM "Draw to &Screen"     , MENU_SCREEN
  39.         MENUITEM SEPARATOR
  40.             MENUITEM "S&olid Colors"     , MENU_SOLID
  41.             MENUITEM "&Null Pen"         , MENU_NULLPEN
  42.             MENUITEM "&Boxes"            , MENU_BOXES
  43.         MENUITEM SEPARATOR
  44.     end
  45.     POPUP "&DIB"
  46.     begin
  47.             MENUITEM "Draw &Every Frame", MENU_EVERY
  48.         MENUITEM "Skip &1 Frames"    , MENU_SKIP2
  49.         MENUITEM "Skip &3 Frames"    , MENU_SKIP4
  50.         MENUITEM "Skip &7 Frames"    , MENU_SKIP8
  51.         MENUITEM "Skip &15 Frames"    , MENU_SKIP16
  52.         MENUITEM "Skip &All Frames"    , MENU_SKIPALL
  53.         MENUITEM SEPARATOR
  54.         MENUITEM "&Redraw Frame Now", MENU_REDRAW
  55.     end
  56. end
  57.  
  58.