Previous Next Up Title Contents Index Top Library

7.5. WIDGET CREATION FUNCTION

XmCreateGPhigsW

SUBJECT

Creation of a "workstation" widget for use with GPHIGS, locator management and pick input.

SYNOPSIS

#include <Xm/GPhigsW.h>

Widget XmCreateGPhigs( parent, name, arglist, argcount)

Widget parent;

String name;

ArgList arglist;

Cardinal argcount;

DESCRIPTION

XmCreateGPhigs creates a GPhigsW widget and returns ID, the identifier associated with the widget.

parent Specifies the parent of widget ID.

name Specifies the name of widget ID.

arglist Specifies the list of arguments.

argcount Specifies the number of attributes/values in the list of arguments arglist.

For a complete definition of the GPhigsW widget and its associated resources see the description of XmGPhigsX.

RETURNED VALUE

Returns ID, the identifier of the GPhigsW widget.

Example:

		#include <Xm/GPhigsW.h>
		main()
		{
			toplevel = XtInitialize( .....);
			...
			n = 0;
			XtSetArg(arg[n],...); n++ ;
			...
			w = XmCreateGPhigsW(toplevel,"GPHIGS",arg,n);
			.....
		}


Previous Next Up Title Contents Index Top Library