|
NAMEXmtInitialize() - initialize an Xmt application.SYNOPSIS#include <Xmt/Xmt.h>
Widget XmtInitialize(XtAppContext *app_context_return, String application_class, XrmOptionDescList options, Cardinal num_options, int *argc_in_out, String *argv_in_out, String *fallback_resources, ArgList args, Cardinal num_args) ARGUMENTSINPUTS
OUTPUTS
RETURNS A newly created ApplicationShell widget at the root of a widget hierarchy. DESCRIPTIONXmtInitialize() is a convenience function for initializing Xmt applications. It is a wrapper around XtAppInitialize(), which is the standard Xt initialization function, and has an identical argument list and return value to that function. As part of its initialization sequence, XtAppInitialize() registers standard Xt resource converters, parses standard Xt command-line arguments, and reads standard Xt application resources. XmtInitialize() extends this initialization by registering Xmt resource converters, parsing Xmt-specific command-line arguments and reading Xmt-specific application resources.After calling XtAppInitialize(), XmtInitialize() calls XmtParseCommandLine() to read Xmt-specific arguments from the command-line, registers all of the major Xmt resource converters, and then calls XmtInitializeApplicationShell() to read the Xmt-specific application resources. See Chapter 8, Application Resources and Command-Line Arguments, for a list of application resource, command-line arguments, and resource converters. See XtAppInitialize() for more details on the arguments to this function. SEE ALSOChapter 7, Application Resources and Command-Line Arguments, XmtInitializeApplicationShell(), XmtParseCommandLine(), XmtRegisterAll(), XtAppInitialize().
Visit the GSP FreeBSD Man Page Interface. |