home *** CD-ROM | disk | FTP | other *** search
- C-Worthy Version 2.0 Upgrade Notes
- [February 21, 1991]
-
- This file contains information on how to upgrade programs created for C-Worthy
- version 1.0, 1.1, or 1.2 to version 2.0.
-
- It also contains information about new features and changes in old features.
-
- Major Features and Enhancements
-
- Resource Management
-
- All application resources other than help are now stored in a single
- resource file. This file contains forms, menus, strings, and color
- palettes. All of these resources are managed interactively by cwArchitect.
-
- Enhanced menu API
-
- All menu types are now supported by a single menu API.
-
- Graphics mode support
-
- C-Worthy now works in graphics modes as well as text mode. PCX files may be
- displayed in a C-Worthy window.
-
- Menu building in cwArchitect
-
- cwArchitect now allows you to build menus as well as forms. Menu choices
- may optionally invoke other menus or forms.
-
- Palette handling in cwArchitect
-
- cwArchitect now allows you to modify your application's palettes
- interactively. You see the results of your changes immediately - without
- compiling and linking.
-
- Message handling in cwArchitect
-
- Application messages are now handled within cwArchitect.
-
- Converting source code to version 2.0
-
- SCONVERT is a tool that helps convert source code from earlier versions of
- C-Worthy to version 2.0. It translates C-Worthy identifiers from the old
- C-Worthy naming convention to the new object-action convention. Where the
- translation cannot be made (because a routine is obsolete, or because
- parameters have changed), SCONVERT inserts a comment above the line in
- question. The comment is tagged with [CW] to make searching for the comments
- easier. Where you find such a comment, you must make changes to your source
- code before it will work with version 2.0.
-
- The syntax for sconvert is
-
- SCONVERT input_filespec output_filespec
-
- The filespecs may optionally contain wildcards. The output filespec must be
- different from the input filespec; failure to heed this will cause destruction
- of your source code.
-
- The following notes and restrictions apply:
-
- * SCONVERT.DAT must reside in the directory from which you invoke SCONVERT.
-
- * If you wish to use wildcards, you must give a full path specification.
- For example,
-
- SCONVERT d:\source\*.c e:\source\*.c2
-
- * File extensions are required, and may not contain wildcards.
-
- * If no path is specified for the output file(s), they will be created in
- the source directory (not the current directory).
-
- Converting Form and Message files to version 2.0
-
- FCONVERT is a utility to convert .FRM library files created with cwArchitect
- version 1.2 to the format expected by cwArchitect version 2.0.
-
- Usage is: FCONVERT <old .FRM filename> <old .MLC filename>
-
- For example, if your application's forms are in FOO.FRM and your application's
- messages are in FOO_MSG.MLC, use the command line
-
- FCONVERT FOO FOO_MSG
-
- Don't specify any file extensions.
-
- Both the .MLC and the .MLH file for the specified message name must be in the
- current directory. In addition, the system message files SYS$MSG.DTA and
- SYS$MSG.MLH must be in the current directory.
-
- FCONVERT creates a new, 2.0-compatible .FRM file with the same name as your old
- file. The old file is left intact with the extension BK1.
-
- FCONVERT performs nine functions:
-
- 1) Application specific messages are extracted from the message file
- specified and stored within the new FRM.
-
- 2) System messages are extracted from "SYS$MSG.DTA" and "SYS$MSG.MLH" (in the
- current directory) and stored within the new FRM.
-
- 3) A default color table is stored within the new .FRM.
-
- 4) Menu and matrix fields are converted. In version 1.2 these fields were
- stored as MENU_DATA and MATRIX_DATA respectively. In version 2.0 both
- these fields now simply contain the menu name of the menu which is
- attached to the field and which is stored within the Menu system.
- FCONVERT must create these menus from the data stored within the
- datafield. It will use the field's name to name the created menu.
-
- 5) In version 1.2, the <Insert> key was used to invoke field specific insert
- procedures. In version 2.0, <Grey Plus> is used instead since the
- <Insert> will now toggle insert\overstrike mode. Button fields to which
- the value I_INSERT had been attached are replaced with I_EXPAND.
-
- 6) A border member has been added to list fields. FCONVERT sets this to be
- double line.
-
- 7) Forms now contain an entry and an exit procedure. These are initialized
- to NO_PROCEDURE. The border type has become border flags.
-
- 8) The format of storage for user specified procedures has been changed.
-
- 9) A preferences structure containing the C-Worthy default application
- preferences is created and stored in the new file.
-
- Note:
- With the addition of the menu building capabilities of CWA, the internals of
- menu and matrix fields have been reworked. One of FCONVERT's tasks is to map
- old menu and matrix fields to be CWA 2.0 menus, this requires that the menu to
- be created have a name. FCONVERT uses the field name as the menu's name. If
- your existing library has more than one menu field using the same name,
- FCONVERT assumes that it should generate only one "new" MENU and that both
- fields ought to use it. It will generate a warning with regards to menu name
- collisions and continue processing. If this is not the desired action you may
- either rename the offending fields or break the original library file into
- smaller components, convert the components, and re-import into a large library.
-
-
- Forms
-
- Form Entry Procedures
- Forms now have entry procedures as well as exit procedures giving the program
- another hook into the application when using form_edit(). The entry procedure
- is called after the form window has been created but before the fields have
- been displayed and before the form is re-edited after calling the exit
- procedure.
-
- The calling parameters are:
- entry_proc(FORM *form, int control_code, va_list arg_list);
-
- FORM *form : form pointer passed to form_edit
-
- int control_code : the first time the entry procedure is called this
- will be set to CONTINUE_EDIT. On any additional
- calls it will contain the value returned by
- form_window_edit() or the exit_procedure.
-
- va_list arg_list : any optional parameters passed to edit_form()
-
- Sub-Form Field Status Values
-
- The interaction between sub-forms and the sub-form field type has been
- modified as follows:
-
- if the sub-form was CHANGED and not CANCELED then the sub-form field's
- status will have FS_CHANGED | FS_ANSWERED bits set.
-
- Action Procedures
-
- Menu exit procedures are called whenever a valid exit event occurs. In a
- Windows Style Menu with sub_menus each sub-menu can have its own action
- procedure as can the main horizontal menu.
-
- If the current object is a menu and it has an action procedure then that
- menu's action procedure is called and is passed the current_node from the
- current menu. If the current object is not a menu then the main horizontal
- menu is called, if present, with the current node from the main horizontal
- menu.
-
- If the current object is a sub-menu but does not have an action procedure
- then the main horizontal menu's action procedure is called and is passed the
- node that was current on the pull-down menu.
-
- If no action procedures are present menu returns the exit event and the
- current_node member of the menu structure contains whatever node was present
- at whatever level you exited from.
-
- MC_COMPLETE_EXIT
-
- If this flag is set the selector will exit all levels of sub-menus retaining
- the current_node. Menu will return the exit_event and the current_node
- member of the menu structure will contain whatever node was current when the
- exit event occurred.
-
- Accessing field specific information
-
- Previous versions of cwArchitect allowed access of field specific
- information as a separate menu option under the field category. Field
- specific information is accessed from the Field Info form. This form has a
- new field called Field Specific which contains a subform allowing access to
- the field's specific data. An exception is made in the case of graphics
- fields, upon selection of Field Info on a graphic field the user will be
- placed within the graphic editor (see below).
-
- cwArchitect Background editor
-
- The graphic editor is now accessed by choosing Field Info from cwArchitect's
- menu. Functionally the editor remains the same, options have been renamed
- and moved. Additionally, we intend to refer to this field type as a
- background field and the editor as the background editor.
-
- Flag marking within cwArchitect
-
- In all previous versions of cwArchitect fields requiring bit settings have
- been controlled by list fields on which <Enter> would toggle the current bit
- setting and <Escape> was used to exit the list. With the introduction of
- this beta, the <Space Bar> will be used to toggle bit setting and either the
- <Escape> or the <Enter> keys will exit list editing.
-
- Removal of the F2 action buttons
-
- In all prior versions of cwArchitect actions generated from a form were
- performed by pressing <F2>, <Escape> or <F7> could be used to cancel the
- action. Starting with this version of cwArchitect, operation will be
- performed if the form is left via <Enter> and canceled if the form is exited
- via <Escape>.
-
- Window flags
-
- We have added several window flags to allow greater control of the display
- of your windows.
-
- WF_NO_BORDER /* no border_flags around window */
- WF_SINGLE /* single line forms border_flags */
- WF_DOUBLE /* double line forms border_flags */
- WF_SHADOW /* use a shadow */
- WF_FORCE_SHADOW /* shadow on regardless of _cw_global.shadow */
- WF_FORCE_NOSHADOW /* shadow off regardless of
- * _cw_global.shadow
- */
- WF_MOVEABLE /* window is moveable */
- WF_SIZEABLE /* window is resizeable */
- WF_FORCE_MOVABLE /* always moveable */
- WF_FORCE_UNMOVABLE /* never moveable */
- WF_FORCE_SIZABLE /* always sizeable */
- WF_FORCE_UNSIZABLE /* never sizeable */
- WF_HEADER_LEFT /* left justify header */
- WF_HEADER_RIGHT /* right justify header */
- WF_HEADER_BORDER /* 1st line of header text starts
- * within the top border_flags */
-