home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / UTILS / DLGDS4 / READ.ME < prev    next >
Text File  |  1993-08-10  |  5KB  |  133 lines

  1. Welcome to Dialog Design 4.0, your Dialogbox design program for Borland's
  2. Turbo Vision.  With Dialog Design, you can:
  3.  
  4.   1. Lay out your dialogbox on screen using your mouse to locate and size
  5.      controls.
  6.  
  7.   2. Test the dialogbox to see how it will eventually act in your program.
  8.  
  9.   3. Generate Pascal or C++ source code or dialog resources to be
  10.      incorporated in or used by your program.
  11.  
  12.  
  13. REQUIREMENTS
  14.  
  15. Borland Pascal 7.0 and/or Borland C++ 3.1
  16.  
  17. An older version of Dialog Design (V2.2) is still available for Turbo Pascal
  18. 6.0 users.
  19.  
  20.  
  21. WHAT'S NEW IN VERSION 4.0
  22.  
  23. Version 4.0 has many new features, changes, and bug fixes.  Listed here are
  24. the major changes.
  25.  
  26.   1. One program now supports both Pascal and C++.
  27.  
  28.   2. All source code and resource generation is now done by external programs
  29.      called from Dialog Design.  Communication between Dialog Design and the
  30.      conversion programs is via an ASCII script file.  Since source code
  31.      is provided for the conversion programs, modifications can be made to:
  32.  
  33.        a. Customize the source code generated.
  34.        b. Incorporate custom controls into the source or resources generated.
  35.  
  36.   3. A toolbox is now provided to enable easy selection and placement of
  37.      controls.
  38.  
  39.   4. In addition to Pascal resources, C++ dialog resources can now be
  40.      generated.
  41.  
  42.   5. Pascal (only Pascal) dialog resources can now be read allowing Dialog
  43.      Design to edit and use dialogs designed elsewhere.  In particular,
  44.      Dialogs can be input from Blaise' Turbo Vision Development Toolkits's (tm)
  45.      .BRS files.
  46.  
  47.  
  48. FILES SUPPLIED
  49.  
  50.   DLGDSN.EXE      EXE file for Dialog Design
  51.   DLGHLP.HLP      Help file for Dialog Design
  52.  
  53.      Documentation
  54.   DLGDSN.DOC      DOC file for Dialog Design.  Read this one.
  55.   SCRIPT.DOC      Script file explanation.  Read this when it comes time to
  56.                   modify something.
  57.   OPBUTTON.DLG    A demo dialog showing how to handle a non standard button.
  58.                   See SCRIPT.DOC.
  59.  
  60.      Pascal Conversion Files
  61.   PASSRC1.PAS     Converts script file to Pascal Source (type 1)
  62.   PASSRC2.PAS     Converts script file to Pascal Source (type 2)
  63.   SKEL.DAT        Used by PASSRC2
  64.   PASRSRC.PAS     Converts script file to Pascal Resources
  65.   READSCPT.PAS    Reads script files--used by above
  66.   PAS.MAK         Make file to generate Pascal conversion EXE's
  67.  
  68.      C++ Conversion Files
  69.   CPPSRC1.CPP     Converts script file to C++ Source (type 1)
  70.   CPPSRC2.CPP     Converts script file to C++ Source (type 2)
  71.   CPPSKEL.DAT     Used by CPPSRC2
  72.   CPPRSRC.CPP     Converts script file to C++ Resources
  73.   CPP*.PRJ        Project file for above
  74.   READSCPT.CPP    Reads script files--used by above
  75.   READSCPT.H      Header file for above
  76.   CPP.MAK         Make file to generate C++ conversion EXE's
  77.  
  78.      Pascal special controls, etc.
  79.   COLORTXT.TPU    TPU for TColoredText
  80.   COLORTXT.INT    Doc and partial source for TColoredText
  81.   INPLONG.PAS     Doc and source for TInputLong
  82.   TESTCASE.PAS    Program to test Pascal code generated by Dialog Design
  83.  
  84.      C++ special controls, etc.
  85.   TCOLORTX.H      Header file for TColoredText
  86.   TCOLORTX.OBJ    Object for TColoredText
  87.   SCOLORTX.CPP    Registration object for TColoredText
  88.   TCOLORTX.DOC    Doc and partial source for TColoredText
  89.   TINPLONG.H      Header file for TInputLong
  90.   SINPLONG.CPP    Registration object for TInputLong
  91.   TINPLONG.CPP    Doc and source for TInputLong
  92.   TESTCASE.CPP    Program to test C++ code generated by Dialog Design
  93.   TEST.PRJ        Project file for TESTCASE.CPP
  94.  
  95. INSTALLATION
  96.  
  97. Probabaly the easiest installation is to put all files in one working
  98. directory.  More appropriate might be to put C++ files in one directory,
  99. Pascal in another, and DLGDSN.EXE in a directory on your path.  The help
  100. file, DLGDSN.HLP should be in the same directory as DLGDSN.EXE.
  101.  
  102. In order to save download time, the EXE files for the conversion programs
  103. have not been included in this file.  These are available in a separate file
  104. which may also be downloaded (named DLGEXE.ZIP or something similar) but
  105. it's probably easier to generate them yourself from the included source code.
  106. Make files are provided for this.  Assuming Borland's MAKE.EXE is on your
  107. path,
  108.  
  109.    MAKE -f pas.mak
  110.  
  111. will construct the three Pascal conversion files, and,
  112.  
  113.    MAKE -f cpp.mak
  114.  
  115. will construct the three C++ conversion files.  Note that the "-f"
  116. must be lower case.  These two files assume the standard Borland
  117. directory setups.  If you have trouble when running MAKE you may need
  118. to alter the .MAK files to specify your own directory locations.
  119.  
  120.  
  121. CONFIGURATION
  122.  
  123. When you first run Dialog Design, a configuration dialog will come up.
  124. Be sure and select your choice of languages.  You should also add the
  125. path where the conversion programs are located to the conversion filenames
  126. already listed.  Once you select OK on this dialog, you will be asked if you
  127. want to save it to disk (DLGDSN.CFG).
  128.  
  129. Once it's saved to disk, you won't see this dialog on startup, but you can
  130. access it at any time from the menu (Options/Configure...) to make
  131. configuration changes.
  132.  
  133.