home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
cset21v1.zip
/
IBMCPP
/
SAMPLES
/
ICLUI
/
SIMPLE
/
README.TXT
< prev
Wrap
Text File
|
1993-10-18
|
7KB
|
94 lines
***************************************************************************
* SIMPLE APPLICATION PROGRAM: Readme File (README.TXT) *
* *
* COPYRIGHT: Copyright(C) International Business Machines Corp.,1992,1993.*
* *
* DISCLAIMER OF WARRANTIES: *
* The following [enclosed] code is sample code created by IBM *
* Corporation. This sample code is not part of any standard IBM product*
* and is provided to you solely for the purpose of assisting you in the *
* development of your applications. The code is provided "AS IS", *
* without warranty of any kind. IBM shall not be liable for any damages*
* arising out of your use of the sample code, even if they have been *
* advised of the possibility of such damages. *
*-------------------------------------------------------------------------*
* Key Functions: *
* - Creates and runs a simple application *
* - Creates the main window (IFrameWindow) *
* - Sets the title bar to "Simple Application" *
* - Creates a menu bar with a "Close" menu item *
* - Creates a static text control set to "Simple Example" as the *
* client window *
* *
* See the User Interface Class Library Users Guide for more information *
* about this sample program. *
***************************************************************************
***************************************************************************
* File list: *
* README.TXT - Readme file for ASIMPLE.EXE. *
* ASIMPLE.CPP - C++ Source code for ASIMPLE.EXE *
* ASIMPLE.RC - Resource file for ASIMPLE.EXE *
* ASIMPLE.MAK - Make file to create ASIMPLE.EXE. *
* AMAKE.CMD - Command file to create ASIMPLE.EXE. *
* CLEANUP.CMD - Command file to clean up (erase) the following *
* generated files: ASIMPLE.EXE, ASIMPLE.OBJ, *
* ASIMPLE.RES, and ASIMPLE.ERR. *
***************************************************************************
***************************************************************************
* File Relationship Diagram (Files in uppercase, Programs in lowercase) *
* *
* ASIMPLE.H *
* │ │ *
* ASIMPLE.HPP │ │ *
* │ │ │ *
* │ │ │ *
* v │ │ *
* ASIMPLE.CPP <─────┘ └────────────> ASIMPLE.RC *
* │ │ *
* │ rc -r *
* │ │ *
* v ASIMPLE.RES *
* icc -c ────> ASIMPLE.OBJ │ *
* │ │ *
* v │ *
* icc /B │ *
* │ │ *
* v v *
* ASIMPLE.EXE ──────────> rc ───────────> ASIMPLE.EXE *
***************************************************************************
***************************************************************************
* ╔═══════════╗ *
* Window Parent Relationship Diagram: Diagram ║Class Name ║ *
* Key: ║───────────║ *
* IApplication::current().run() ║Object Name║ *
* ╚═══════════╝ *
* *
* ╔════════════╗ *
* ║ AWindow ║ *
* ║────────────║ *
* ║ mainWindow ║ *
* ╚════════════╝ *
* │ *
* │ *
* ╔═══════════╗ *
* ║IStaticText║ *
* ║───────────║ *
* ║ staticText║ *
* ╚═══════════╝ *
* (Client Window) *
***************************************************************************
***************************************************************************
* To build, run and cleanup ASIMPLE.EXE: *
* *
* Run AMAKE.CMD *
* Run ASIMPLE.EXE *
* Run CLEANUP.CMD *
* *
* AMAKE.CMD compiles and links ASIMPLE.EXE. *
* CLEANUP.CMD cleans up the files built by AMAKE.CMD. *
***************************************************************************