Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dwtfetchinterfacemodule(3dwt) [ultrix man page]

DwtFetchInterfaceModule(3Dwt)											     DwtFetchInterfaceModule(3Dwt)

Name
       DwtFetchInterfaceModule - Fetches all the widgets defined in an interface module in the UID hierarchy.

Syntax
       #include <X11/DwtAppl.h>
       Cardinal DwtFetchInterfaceModule(hierarchy_id, module_name,
					parent_widget, widget_return)
	    DRMHierarchy hierarchy_id;
	    char *module_name;
	    Widget parent_widget;
	    Widget *widget_return;

Arguments
       hierarchy_id
		 Specifies  the  ID of the UID hierarchy that contains the interface definition.  The hierarchy_id was returned in a previous call
		 to DwtOpenHierarchy.

       module_name
		 Specifies the name of the interface module, which you specified in the UIL module header.  By convention,  this  is  usually  the
		 generic name of the application.

       parent_widget
		 Specifies the parent widget ID for the topmost widgets being fetched from the module.	The topmost widgets are those that have no
		 parents specified in the UIL module.  The parent widget is usually the top-level widget returned by XtInitialize.

       widget_return
		 Returns the widget ID for the last main window widget encountered in the UIL module, or NULL if no main window widget is found.

Description
       The DwtFetchInterfaceModule function fetches all the widgets defined in a UIL module in the UID hierarchy.  Typically, each application has
       one  or	more  modules  that  define  its interface.  Each must be fetched in order to initialize all the widgets the application requires.
       Applications do not need to define all their widgets in a single module.

       If the module defines a main window widget, DwtFetchInterfaceModule returns its widget ID.  If no main window widget is	contained  in  the
       module, DwtFetchInterfaceModule returns NULL and no widgets are realized.

       The application can obtain the IDs of widgets other than the main window widget by using creation callbacks.

Return Values
       This function returns one of these status return constants:

       DRMSuccess	 The   function   executed
			 successfully.
       DRMFailure	 The function failed.
       DRMNotFound	 The interface	module	or
			 topmost widget not found.

														     DwtFetchInterfaceModule(3Dwt)

Check Out this Related Man Page

MrmFetchWidget(3X)														MrmFetchWidget(3X)

NAME
MrmFetchWidget - Fetches and creates any indexed (UIL named) application widgets and its children SYNOPSIS
#include <Mrm/MrmPublic.h> Cardinal MrmFetchWidget(hierarchy_id, index, parent_widget, widget, class) MrmHierarchy hierarchy_id; String index; Widget parent_widget; Widget *widget; MrmType *class; DESCRIPTION
The MrmFetchWidget function fetches and creates an indexed application widget and its children. The indexed application widget is any wid- get that is named in UIL. In fetch operations, the fetched widget's subtree is also fetched and created. This widget must not appear as the child of a widget within its own subtree. MrmFetchWidget does not execute XtManageChild for the newly created widget. Specifies the ID of the uid hierarchy that contains the interface definition. The hierarchy_id was returned in a previous call to MrmOpenHierarchyPerDisplay. Specifies the UIL name of the widget to fetch. Specifies the parent widget ID. Returns the widget ID of the created widget. Returns the class code identifying MRM's widget class. The widget class code for the main window widget, for example, is MRMwcMainWindow. Literals identifying MRM widget class codes are defined in <Mrm.h>. An application can fetch any named widget in the uid hierarchy using MrmFetchWidget. MrmFetchWidget can be called at any time to fetch a widget that was not fetched at application startup. MrmFetchWidget can be used to defer fetching pop-up widgets until they are first refer- enced (presumably in a callback), and then used to fetch them once. MrmFetchWidget can also create multiple instances of a widget (and its subtree). In this case, the uid definition functions as a template; a widget definition can be fetched any number of times. An application can use this to make multiple instances of a widget, for example, in a dialog box box or menu. The index (UIL name) that identifies the widget must be known to the application. RETURN VALUE
This function returns one of these status return constants: The function executed successfully. The hierarchy ID was invalid. The widget was not found in UID hierarchy. The function failed. SEE ALSO
MrmOpenHierarchyPerDisplay(3X), MrmFetchWidgetOverride(3X) MrmFetchWidget(3X)
Man Page