DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Creating an SCO Visual Tcl program -- an overview

Creating the main form (VtFormDialog)

The next step is to create the main form using the VtFormDialog command:

      VtFormDialog $app.form -title Kill

VtFormDialog(1vtcl) typifies an SCO Visual Tcl command:

The only option specified in this example is the title (``Kill'') that appears at the top of the form.

Widget naming guidelines

All widgets are uniquely identified by name. To establish this uniqueness, use a simple naming scheme. To name a widget, specify the following, in this order:

In this case, the parent will be whatever is returned by VtOpen in the previous line of code. Notice the the dollar sign ($) is used to access the variable.

Returning handle references

The next line of code creates a form with the VtFormDialog command. VtFormDialog(1vtcl) returns a handle to refer to that form in the widget tree.

The form's handle is stored in the variable mainform, and the widget's parent is the app variable.

The empty form

The form created by VtFormDialog is simply a box in which to place widgets. Because it is a dialog form, it contains a window manager border which allows you to maximize or minimize the form.

Notice the string, ``Kill,'' specified by using the -title option to VtFormDialog, appears in the title bar of the form.


© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 27 April 2004