home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / tdw.pak / TDWDEMO.RC < prev   
Text File  |  1997-07-23  |  803b  |  37 lines

  1. /**********************************************************************
  2.  *          Copyright (c) 1993 by Borland International, Inc.         *
  3. **********************************************************************/
  4.  
  5. #include <windows.h>
  6. #include "tdwdemo.h"
  7.  
  8. SIMPLEPAINT MENU
  9. BEGIN
  10.   MENUITEM "&Quit!", MID_QUIT
  11.   POPUP "&Shape"
  12.   BEGIN
  13.      MENUITEM "&Line", MID_LINE
  14.      MENUITEM "&Ellipse", MID_ELLIPSE
  15.      MENUITEM "&Rectangle", MID_RECTANGLE
  16.   END
  17.   POPUP "&Pen"
  18.   BEGIN
  19.      POPUP "&Thickness"
  20.      BEGIN
  21.         MENUITEM "&Thin", MID_THIN
  22.         MENUITEM "&Regular", MID_REGULAR
  23.         MENUITEM "T&hick", MID_THICK
  24.      END
  25.      POPUP "&Color"
  26.      BEGIN
  27.         MENUITEM "&Red", MID_RED
  28.         MENUITEM "&Green", MID_GREEN
  29.         MENUITEM "&Black", MID_BLACK
  30.      END
  31.   END
  32. END
  33.  
  34. IDI_SIMPLEPAINT ICON TDWDEMO.ICO
  35.  
  36.  
  37.