home *** CD-ROM | disk | FTP | other *** search
- #include "windows.h"
- #include "lava.h"
-
- /*
- (C) Copyright Microsoft Corp. 1991. All rights reserved.
-
- You have a royalty-free right to use, modify, reproduce and
- distribute the Sample Files (and/or any modified version) in
- any way you find useful, provided that you agree that
- Microsoft has no warranty obligations or liability for any
- Sample Application Files which are modified.
- */
-
- AppIcon ICON lava.ico
-
- ABOUTBOX DIALOG 22, 17, 144, 90
- STYLE WS_POPUP | WS_DLGFRAME
- BEGIN
- CTEXT "Microsoft Windows 3.0" -1, 0, 4, 144, 8
- CTEXT "Lava - Flow Simulator" -1, 0, 14, 144, 8
- CTEXT "Version 1.00" -1, 38, 34, 64, 8
- CTEXT "Copyright ⌐ 1990, semi-Bogus Software" -1, 5, 47,132, 9
- ICON "AppIcon" -1, 9, 23, 0, 0
- DEFPUSHBUTTON "Ok" IDOK, 53, 59, 32, 14, WS_GROUP
- CTEXT "permission to freely distribute" -1, 0, 80, 144, ,8
- END
-
- TEXTDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 12, 19, 160, 33
- STYLE WS_DLGFRAME | WS_POPUP
- BEGIN
- CONTROL "" ID_EDIT, "edit", ES_LEFT | WS_BORDER | WS_TABSTOP | WS_CHILD, 7, 15, 116, 12
- CONTROL "Ok" IDOK, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 128, 1, 28, 14
- CONTROL "Cancel" IDCANCEL, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 128, 17, 28, 14
- END
-
-
- AppMenu menu
- begin
- POPUP "!"
- begin
- MENUITEM "Go!" , MENU_GO
- POPUP "NumCenters"
- begin
- MENUITEM "4" , MENU_NUMCENTERS + 4
- MENUITEM "8" , MENU_NUMCENTERS + 8
- MENUITEM "12" , MENU_NUMCENTERS + 12
- MENUITEM "16" , MENU_NUMCENTERS + 16
- MENUITEM "20" , MENU_NUMCENTERS + 20
- MENUITEM "24" , MENU_NUMCENTERS + 24
- MENUITEM "28" , MENU_NUMCENTERS + 28
- MENUITEM "32" , MENU_NUMCENTERS + 32
- end
- POPUP "NumColors"
- begin
- MENUITEM "4" , MENU_NUMCOLORS + 4
- MENUITEM "8" , MENU_NUMCOLORS + 8
- MENUITEM "16" , MENU_NUMCOLORS + 16
- MENUITEM "32" , MENU_NUMCOLORS + 32
- MENUITEM "64" , MENU_NUMCOLORS + 64
- MENUITEM "128" , MENU_NUMCOLORS + 128
- MENUITEM "236" , MENU_NUMCOLORS + 236
- MENUITEM "256" , MENU_NUMCOLORS + 256
- end
- POPUP "BandScale"
- begin
- MENUITEM "1" , MENU_BANDSCALE + 1
- MENUITEM "2" , MENU_BANDSCALE + 2
- MENUITEM "4" , MENU_BANDSCALE + 4
- MENUITEM "8" , MENU_BANDSCALE + 8
- MENUITEM "16" , MENU_BANDSCALE + 16
- end
- POPUP "Options"
- begin
- MENUITEM "Satin" , MENU_SATIN
- MENUITEM "Cross Fade" , MENU_CROSSFADE
- MENUITEM "Fast Cycle" , MENU_FASTCYCLE
- MENUITEM "Color Cycle" , MENU_COLORCYCLE
- MENUITEM "Palette" , MENU_PALETTE
- MENUITEM "SetDIBits" , MENU_SETDIBITS
- MENUITEM "Pal Colors" , MENU_PALCOLORS
- MENUITEM "NoCollapse" , MENU_NOCOLLAPSE
- end
- POPUP "Edit"
- begin
- MENUITEM "Paste" , MENU_PASTE
- MENUITEM "Copy" , MENU_COPY
- end
- MENUITEM SEPARATOR
- MENUITEM "About..." , MENU_ABOUT
- MENUITEM "Exit" , MENU_EXIT
- end
- end
-