home *** CD-ROM | disk | FTP | other *** search
- /*
- RESOURCE.H -
-
- This file:
-
- Defines constants used in MFCLIST.
-
- (C) Copyright 1988-1994 by Autodesk, Inc.
-
- This program is copyrighted by Autodesk, Inc. and is licensed
- to you under the following conditions. You may not distribute
- or publish the source code of this program in any form. You
- may incorporate this code in object form in derivative works
- provided such derivative works are (i.) are designed and
- intended to work solely with Autodesk, Inc. products, and
- (ii.) contain Autodesk's copyright notice "(C) Copyright
- 1988-1994 by Autodesk, Inc."
-
- AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
- AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MER-
- CHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
- DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
- UNINTERRUPTED OR ERROR FREE.
-
- */
- #ifndef RESOURCE_H
- #define RESOURCE_H
-
- #include <windows.h>
-
- #define IDHELP 1038
-
- #define DIALOG_2 2
- #define ARC_DIALOG 104
- #define POINT_DIALOG 103
- #define DIALOG_1 1
-
- #define LINE_DIALOG 100
- #define CIRCLE_DIALOG 101
-
- #define DIALOG_CONTROL 500
-
- #define IDC_PUSHBUTTON_NEXT DIALOG_CONTROL + 1
- #define IDC_ENTITY_NAME IDC_PUSHBUTTON_NEXT + 1
-
- #define IDC_LINE_DIALOG_CONTROL IDC_ENTITY_NAME + 1
- #define IDC_EDIT_P_X IDC_LINE_DIALOG_CONTROL
- #define IDC_EDIT_P_Y IDC_EDIT_P_X + 1
- #define IDC_EDIT_P_Z IDC_EDIT_P_Y + 1
- #define IDC_EDIT_S_X IDC_EDIT_P_Z + 1
- #define IDC_EDIT_S_Y IDC_EDIT_S_X + 1
- #define IDC_EDIT_S_Z IDC_EDIT_S_Y + 1
-
- #define IDC_CIRCLE_DIALOG_CONTROL IDC_LINE_DIALOG_CONTROL + 10
- #define IDC_CENTER_X IDC_CIRCLE_DIALOG_CONTROL + 1
- #define IDC_CENTER_Y IDC_CENTER_X + 1
- #define IDC_CENTER_Z IDC_CENTER_Y + 1
- #define IDC_RADIUS IDC_CENTER_Z + 1
-
- #endif
-