home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / SETCV / README < prev    next >
Text File  |  1995-06-09  |  6KB  |  138 lines

  1. ******************************************************************************
  2. * Canvas Classes Example 2 - Set Canvas                                      *
  3. *                                                                            *
  4. * COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1995. *
  5. *                                                                            *
  6. * DISCLAIMER OF WARRANTIES:                                                  *
  7. *   The following [enclosed] code is sample code created by IBM              *
  8. *   Corporation.  This sample code is not part of any standard IBM product   *
  9. *   and is provided to you solely for the purpose of assisting you in the    *
  10. *   development of your applications.  The code is provided "AS IS",         *
  11. *   without warranty of any kind.  IBM shall not be liable for any damages   *
  12. *   arising out of your use of the sample code, even if they have been       *
  13. *   advised of the possibility of such damages.                              *
  14. *************************************************************************
  15. * NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  16. *************************************************************************
  17.  
  18. SET CANVAS
  19.  
  20.    DESCRIPTION:
  21.  
  22.         The Set Canvas Sample demonstrates alignment of UI objects on
  23.         vertical and horizontal set canvases.  In addition, a horizontal
  24.         split canvas, tab movement between different groups, and
  25.         processing select events on the radio buttons.  Classed used
  26.         include ISetCanvas, ISplitCanvas, IRadioButton, and
  27.         ISelectHandler.
  28.    
  29.    FEATURE/CONCEPT:
  30.       - key functions:                                                           
  31.       - create a main window
  32.       - run the current application 
  33.       - create a horizontal split canvas
  34.       - create static text controls 
  35.       - create vertical and horizontal set canvases with multiple decks
  36.       - create radio buttons                                                
  37.       - control cursor and tab movement between different groups 
  38.       - process 'Select' events on the radio buttons 
  39.       - load strings from resource bound to the exe                        
  40.  
  41.    PROJECT LOCATION:
  42.         Inside the IOC Samples folder (inside the VisualAge C++ Samples
  43.         folder). 
  44.  
  45.    SOURCE FILE LOCATION:
  46.         X:\ibmcpp\samples\ioc\setcv
  47.  
  48.         where X: is the drive you installed the samples and document
  49.         component of VisualAge C++.
  50.  
  51.    HOW TO RUN THE SAMPLE:
  52.  
  53.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  54.              To run the prebuilt project, open the Samples folder on your
  55.              OS/2 desktop then double-click on the project's icon to open
  56.              the project view of the sample.  Click on the RUN button of
  57.              the project's toolbar.
  58.  
  59.         FROM THE COMMAND LINE:
  60.              Simply type the name of the .EXE file, that is:
  61.  
  62.                  SETCV
  63.  
  64.              If the sample fails to execute or abnormally ends, you can
  65.              get more information about the failure by turning on the
  66.              ICLUI trace.  This is done by setting the environment
  67.              variable ICLUI_TRACE as follows:
  68.  
  69.                    set ICLUI_TRACE=ON
  70.                    set ICLUI_TRACETO=STDERR
  71.  
  72.              The second export controls where the trace information is
  73.              reported.  With tracing turned on, ICLUI exception text will
  74.              be written to a standard error file. For example:
  75.  
  76.                    hello1 >hello1.out 2>&1
  77.  
  78.              The exception data is now in the file hello1.out.
  79.  
  80.    HOW TO BUILD THE SAMPLE PROJECT YOURSELF:
  81.  
  82.         FROM WITHIN THE WORKFRAME ENVIRONMENT:
  83.              Open the Samples folder on your OS/2 desktop then
  84.              double-click on the project's icon to open the project view
  85.              of the sample. In the upper half of the project window you
  86.              will see the icons of the files associated with the sample.
  87.              From the Project pulldown, select Build -> Rebuild All. To run
  88.              the sample project, see HOW TO RUN THE SAMPLE PROJECT above.
  89.  
  90.         FROM THE COMMAND LINE:
  91.           -  A command file is provided to allow rebuilding of the
  92.              WorkFrame projects from the command line.  Simply type:
  93.  
  94.                  BUILD
  95.  
  96.              To run the sample project, see HOW TO RUN THE SAMPLE PROJECT 
  97.              above.
  98.  
  99.            - The sample application can also be built by entering:
  100.                  NMAKE
  101.              with no options while in the directory containing the
  102.              sample application files.  The makefile is named
  103.                  Makefile
  104.              To clean up the files generated from running make, enter:
  105.                  NMAKE CLEAN 
  106.              while in the directory containing the sample program files. 
  107.  
  108.    SOFTWARE/HARDWARE PREREQUISITES:
  109.  
  110.         o   IBM VisualAge C++
  111.         o   OS/2 2.1 or Warp
  112.         o   IBM or compatible 386 and up.
  113.  
  114.    ADDITIONAL INFORMATION:
  115.  
  116.         o   For more information on the creation and use of projects in
  117.             the WorkFrame environment, see the VisualAge C++ for OS/2
  118.             User's Guide.
  119.         o   For more information on the User Interface Classes, see the
  120.             VisualAge C++ for OS/2 Open Class Library User's Guide.
  121.  
  122.         Both books can be found online.  To access an online book, simply
  123.         open the main VisualAge C++ desktop folder, then open the
  124.         Information Folder inside.  To view a book, double-click on that
  125.         book's icon.
  126.  
  127.  
  128.  
  129.    REQUIRED FILES - SETCV: 
  130.                                                              
  131.    README       - Readme file for SETCV                                  
  132.    asetcv.cpp   - Source code for SETCV                                  
  133.    asetcv.hpp   - Class header file form SETCV                           
  134.    asetcv.h     - Defines for SETCV                                      
  135.    asetcv.rc    - Resource File for SETCV                                
  136.    asetcv.ico   - OS/2 icon file                                         
  137.    Makefile     - Make file to build the sample program                  
  138.