xenocara/lib/libXt/man/XtDisplayInitialize.man

185 lines
6.3 KiB
Groff
Raw Normal View History

2006-11-25 11:01:46 -07:00
.\" Copyright (c) 1993, 1994 X Consortium
2012-03-10 09:45:48 -07:00
.\"
2006-11-25 11:01:46 -07:00
.\" Permission is hereby granted, free of charge, to any person obtaining a
2012-03-10 09:45:48 -07:00
.\" copy of this software and associated documentation files (the "Software"),
.\" to deal in the Software without restriction, including without limitation
.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
.\" and/or sell copies of the Software, and to permit persons to whom the
2006-11-25 11:01:46 -07:00
.\" Software furnished to do so, subject to the following conditions:
2012-03-10 09:45:48 -07:00
.\"
2006-11-25 11:01:46 -07:00
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
2012-03-10 09:45:48 -07:00
.\"
2006-11-25 11:01:46 -07:00
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2012-03-10 09:45:48 -07:00
.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2006-11-25 11:01:46 -07:00
.\" SOFTWARE.
2012-03-10 09:45:48 -07:00
.\"
.\" Except as contained in this notice, the name of the X Consortium shall not
.\" be used in advertising or otherwise to promote the sale, use or other
.\" dealing in this Software without prior written authorization from the
2006-11-25 11:01:46 -07:00
.\" X Consortium.
.\"
.ds tk X Toolkit
.ds xT X Toolkit Intrinsics \- C Language Interface
.ds xI Intrinsics
.ds xW X Toolkit Athena Widgets \- C Language Interface
.ds xL Xlib \- C Language X Interface
.ds xC Inter-Client Communication Conventions Manual
.ds Rn 3
.ds Vn 2.2
2020-01-14 13:48:59 -07:00
.hw XtDisplay-Initialize XtOpen-Display XtClose-Display XtDatabase
.hw XtScreen-Database wid-get
2006-11-25 11:01:46 -07:00
.na
.TH XtDisplayInitialize __libmansuffix__ __xorgversion__ "XT FUNCTIONS"
.SH NAME
XtDisplayInitialize, XtOpenDisplay, XtDatabase, XtScreenDatabase, XtCloseDisplay \- initialize, open, or close a display
.SH SYNTAX
2020-01-14 13:48:59 -07:00
#include <X11/Intrinsic.h>
2006-11-25 11:01:46 -07:00
.HP
2020-01-14 13:48:59 -07:00
void XtDisplayInitialize(XtAppContext \fIapp_context\fP,
Display *\fIdisplay\fP,
const char *\fIapplication_name\fP,
const char *\fIapplication_class\fP,
XrmOptionDescRec *\fIoptions\fP, Cardinal \fInum_options\fP,
int *\fIargc\fP, char **\fIargv\fP);
2006-11-25 11:01:46 -07:00
.HP
2020-01-14 13:48:59 -07:00
Display *XtOpenDisplay(XtAppContext \fIapp_context\fP,
const char *\fIdisplay_string\fP,
const char *\fIapplication_name\fP,
const char *\fIapplication_class\fP,
XrmOptionDescRec *\fIoptions\fP, Cardinal \fInum_options\fP,
int *\fIargc\fP, char **\fIargv\fP);
2006-11-25 11:01:46 -07:00
.HP
2012-03-10 09:45:48 -07:00
void XtCloseDisplay(Display *\fIdisplay\fP);
2006-11-25 11:01:46 -07:00
.HP
XrmDatabase XtDatabase(Display *\fIdisplay\fP);
.HP
2012-03-10 09:45:48 -07:00
XrmDatabase XtScreenDatabase(Screen* \fIscreen\fP);
2006-11-25 11:01:46 -07:00
.SH ARGUMENTS
.IP \fIargc\fP 1i
Specifies a pointer to the number of command line parameters.
.IP \fIargv\fP 1i
Specifies the command line parameters.
.IP \fIapp_context\fP 1i
Specifies the application context.
.IP \fIapplication_class\fP 1i
2020-01-14 13:48:59 -07:00
Specifies the class name of this application, which usually is the generic name for all instances of this application.
2006-11-25 11:01:46 -07:00
.IP \fIapplication_name\fP 1i
Specifies the name of the application instance.
.IP \fIdisplay\fP 1i
2020-01-14 13:48:59 -07:00
Specifies the display.
2006-11-25 11:01:46 -07:00
Note that a display can be in at most one application context.
.IP \fInum_options\fP 1i
Specifies the number of entries in the options list.
.IP \fIoptions\fP 1i
Specifies how to parse the command line for any application-specific resources.
The options argument is passed as a parameter to
2020-01-14 13:48:59 -07:00
.BR XrmParseCommand .
2006-11-25 11:01:46 -07:00
For further information,
see \fI\*(xL\fP.
.IP \fIscreen\fP 1i
Specifies the screen whose resource database is to be returned.
.SH DESCRIPTION
The
2020-01-14 13:48:59 -07:00
.B XtDisplayInitialize
2006-11-25 11:01:46 -07:00
function builds the resource database, calls the Xlib
2020-01-14 13:48:59 -07:00
.B XrmParseCommand
2012-03-10 09:45:48 -07:00
function to parse the command line,
2006-11-25 11:01:46 -07:00
and performs other per display initialization.
2012-03-10 09:45:48 -07:00
After
2020-01-14 13:48:59 -07:00
.B XrmParseCommand
2006-11-25 11:01:46 -07:00
has been called,
argc and argv contain only those parameters that
were not in the standard option table or in the table specified by the
options argument.
If the modified argc is not zero,
most applications simply print out the modified argv along with a message
listing the allowable options.
On UNIX-based systems,
the application name is usually the final component of argv[0].
If the synchronize resource is
2020-01-14 13:48:59 -07:00
.B True
2006-11-25 11:01:46 -07:00
for the specified application,
2020-01-14 13:48:59 -07:00
.B XtDisplayInitialize
2006-11-25 11:01:46 -07:00
calls the Xlib
2020-01-14 13:48:59 -07:00
.B XSynchronize
2006-11-25 11:01:46 -07:00
function to put Xlib into synchronous mode for this display connection.
If the reverseVideo resource is
2020-01-14 13:48:59 -07:00
.BR True ,
2006-11-25 11:01:46 -07:00
the \*(xI exchange
2020-01-14 13:48:59 -07:00
.B XtDefaultForeground
2006-11-25 11:01:46 -07:00
and
2020-01-14 13:48:59 -07:00
.B XtDefaultBackground
2006-11-25 11:01:46 -07:00
for widgets created on this display.
(See Section 9.6.1).
.LP
The
2020-01-14 13:48:59 -07:00
.B XtOpenDisplay
2006-11-25 11:01:46 -07:00
function calls
2020-01-14 13:48:59 -07:00
.B XOpenDisplay
2006-11-25 11:01:46 -07:00
the specified display name.
If display_string is NULL,
2020-01-14 13:48:59 -07:00
.B XtOpenDisplay
2012-03-10 09:45:48 -07:00
uses the current value of the \-display option specified in argv
2006-11-25 11:01:46 -07:00
and if no display is specified in argv,
2012-03-10 09:45:48 -07:00
uses the user's default display (on UNIX-based systems,
2006-11-25 11:01:46 -07:00
this is the value of the DISPLAY environment variable).
.LP
If this succeeds, it then calls
2020-01-14 13:48:59 -07:00
.B XtDisplayInitialize
2006-11-25 11:01:46 -07:00
and pass it the opened display and
the value of the \-name option specified in argv as the application name.
If no name option is specified,
it uses the application name passed to
2020-01-14 13:48:59 -07:00
.BR XtOpenDisplay .
2006-11-25 11:01:46 -07:00
If the application name is NULL,
it uses the last component of argv[0].
2020-01-14 13:48:59 -07:00
.B XtOpenDisplay
2006-11-25 11:01:46 -07:00
returns the newly opened display or NULL if it failed.
.LP
2020-01-14 13:48:59 -07:00
.B XtOpenDisplay
2006-11-25 11:01:46 -07:00
is provided as a convenience to the application programmer.
.LP
The
2020-01-14 13:48:59 -07:00
.B XtCloseDisplay
2006-11-25 11:01:46 -07:00
function closes the specified display as soon as it is safe to do so.
If called from within an event dispatch (for example, a callback procedure),
2020-01-14 13:48:59 -07:00
.B XtCloseDisplay
2006-11-25 11:01:46 -07:00
does not close the display until the dispatch is complete.
Note that applications need only call
2020-01-14 13:48:59 -07:00
.B XtCloseDisplay
2012-03-10 09:45:48 -07:00
if they are to continue executing after closing the display;
2006-11-25 11:01:46 -07:00
otherwise, they should call
2020-01-14 13:48:59 -07:00
.B XtDestroyApplicationContext
2006-11-25 11:01:46 -07:00
or just exit.
.LP
The
2020-01-14 13:48:59 -07:00
.B XtDatabase
2006-11-25 11:01:46 -07:00
function returns the fully merged resource database that was built by
2020-01-14 13:48:59 -07:00
.B XtDisplayInitialize
2006-11-25 11:01:46 -07:00
associated with the display that was passed in.
If this display has not been initialized by
2020-01-14 13:48:59 -07:00
.BR XtDisplayInitialize ,
2006-11-25 11:01:46 -07:00
the results are not defined.
.LP
The
2020-01-14 13:48:59 -07:00
.B XtScreenDatabase
2006-11-25 11:01:46 -07:00
function returns the fully merged resource database associated with the
2020-01-14 13:48:59 -07:00
specified screen.
If the \fIscreen\fP does not belong to a
.B Display
2006-11-25 11:01:46 -07:00
initialized by
2020-01-14 13:48:59 -07:00
.BR XtDisplayInitialize ,
2006-11-25 11:01:46 -07:00
the results are undefined.
.SH "SEE ALSO"
2011-09-10 03:36:19 -06:00
XtAppCreateShell(__libmansuffix__),
XtCreateApplicationContext(__libmansuffix__)
2006-11-25 11:01:46 -07:00
.br
\fI\*(xT\fP
.br
\fI\*(xL\fP