home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- *
- * File : rwpaint.rc
- *
- * Abstract : RenderWare paint demo. Resource bindings
- *
- **********************************************************************
- *
- * This file is a product of Criterion Software Ltd.
- *
- * This file is provided as is with no warranties of any kind and is
- * provided without any obligation on Criterion Software Ltd. or
- * Canon Inc. to assist in its use or modification.
- *
- * Criterion Software Ltd. will not, under any
- * circumstances, be liable for any lost revenue or other damages arising
- * from the use of this file.
- *
- * Copyright (c) 1995 Criterion Software Ltd.
- * All Rights Reserved.
- *
- * RenderWare is a trademark of Canon Inc.
- *
- ************************************************************************/
- #include "resource.h"
-
- #include "windows.h"
- #include "meditres.h"
-
- RW_ICON ICON DISCARDABLE "RW.ICO"
-
- DIALOG_1 DIALOG DISCARDABLE 61, 23, 250, 154
- STYLE DS_MODALFRAME | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
- CAPTION "Material Editor"
- FONT 10, "System"
- BEGIN
- CONTROL "",MAT_BUTTON,"Button",BS_OWNERDRAW | WS_DISABLED,2,2,90,
- 90
- CONTROL "",MAT_TEXTUREBUTTON,"Button",BS_OWNERDRAW,100,106,144,
- 32
- GROUPBOX "Geometry",-1,2,92,89,37
- GROUPBOX "Lighting",-1,2,129,89,23
- GROUPBOX "Lighting",-1,94,0,155,52
- GROUPBOX "Color",-1,94,52,155,40
- GROUPBOX "Textures",-1,94,92,155,60
- CONTROL "Point Cloud",MAT_POINTCLOUD,"Button",BS_AUTORADIOBUTTON |
- WS_GROUP | WS_TABSTOP,5,102,50,8
- CONTROL "Wire Frame",MAT_WIREFRAME,"Button",BS_AUTORADIOBUTTON,5,
- 111,48,8
- CONTROL "Solid",MAT_SOLID,"Button",BS_AUTORADIOBUTTON,5,120,28,8
- CONTROL "Flat",MAT_FLATSHADE,"Button",BS_AUTORADIOBUTTON |
- WS_GROUP | WS_TABSTOP,5,140,23,8
- CONTROL "Smooth",MAT_SMOOTHSHADE,"Button",BS_AUTORADIOBUTTON,37,
- 140,35,8
- RTEXT "Ambient",-1,97,12,28,8
- SCROLLBAR MAT_AMBIENTSCROLL,130,12,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_AMBIENTVALUE,232,12,14,8
- RTEXT "Diffuse",-1,102,22,24,8
- SCROLLBAR MAT_DIFFUSESCROLL,130,22,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_DIFFUSEVALUE,232,22,14,8
- RTEXT "Specular",-1,97,32,30,8
- SCROLLBAR MAT_SPECUALRSCROLL,130,32,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_SPECULARVALUE,232,32,14,8
- RTEXT "Opacity",-1,100,42,26,8
- SCROLLBAR MAT_OPACITYSCROLL,130,42,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_OPACITYVALUE,232,42,14,8
- RTEXT "Red",MAT_REDTEXT,112,61,13,8
- SCROLLBAR MAT_REDSCROLL,130,62,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_REDVALUE,232,62,14,8
- RTEXT "Green",MAT_GREENTEXT,107,72,19,8
- SCROLLBAR MAT_GREENSCROLL,130,72,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_GREENVALUE,232,72,14,8
- RTEXT "Blue",MAT_BLUETEXT,111,82,15,8
- SCROLLBAR MAT_BLUESCROLL,130,82,100,7,WS_TABSTOP
- LTEXT "0.00",MAT_BLUEVALUE,232,82,14,8
- SCROLLBAR MAT_TEXTURESCROLL,100,140,123,9,WS_GROUP | WS_TABSTOP
- CONTROL "Lit",MAT_LIT,"Button",BS_AUTOCHECKBOX | WS_GROUP |
- WS_TABSTOP,227,142,18,8
- END
-
-
- MENU_1 MENU DISCARDABLE
- BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&Load...", MENU_LOAD
- MENUITEM "&Save", MENU_SAVE
- MENUITEM "Save &as...", MENU_SAVEAS
- MENUITEM SEPARATOR
- MENUITEM "E&xit", MENU_EXIT
- END
- END
-
-
- moveup BITMAP MOVEABLE PURE "MOVEUP.BMP"
- paintup BITMAP MOVEABLE PURE "PAINTUP.BMP"
-
-
-
-