home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- * Copyright (c) 1993 by Borland International, Inc. *
- **********************************************************************/
-
- #include <windows.h>
- #include "tdwdemo.h"
-
- SIMPLEPAINT MENU
- BEGIN
- MENUITEM "&Quit!", MID_QUIT
- POPUP "&Shape"
- BEGIN
- MENUITEM "&Line", MID_LINE
- MENUITEM "&Ellipse", MID_ELLIPSE
- MENUITEM "&Rectangle", MID_RECTANGLE
- END
- POPUP "&Pen"
- BEGIN
- POPUP "&Thickness"
- BEGIN
- MENUITEM "&Thin", MID_THIN
- MENUITEM "&Regular", MID_REGULAR
- MENUITEM "T&hick", MID_THICK
- END
- POPUP "&Color"
- BEGIN
- MENUITEM "&Red", MID_RED
- MENUITEM "&Green", MID_GREEN
- MENUITEM "&Black", MID_BLACK
- END
- END
- END
-
- IDI_SIMPLEPAINT ICON TDWDEMO.ICO
-
-