[xorg-commit-diffs] xc/programs/xphelloworld/xpxthelloworld
Imakefile, NONE, 1.1.2.1 xpxthelloworld.c, NONE,
1.1.2.1 xpxthelloworld.html, NONE, 1.1.2.1 xpxthelloworld.man,
NONE, 1.1.2.1 xpxthelloworld.sgml, NONE, 1.1.2.1
Roland Mainz
xorg-commit at pdx.freedesktop.org
Mon Apr 12 20:16:54 PDT 2004
- Previous message: [xorg-commit-diffs] xc/programs/xphelloworld/xpxmhelloworld
Imakefile, NONE, 1.1.2.1 xpxmhelloworld.c, NONE,
1.1.2.1 xpxmhelloworld.html, NONE, 1.1.2.1 xpxmhelloworld.man,
NONE, 1.1.2.1 xpxmhelloworld.sgml, NONE, 1.1.2.1
- Next message: [xorg-commit-diffs] xc/programs/xplsprinters Imakefile, NONE,
1.1.2.1 xplsprinters.c, NONE, 1.1.2.1 xplsprinters.html, NONE,
1.1.2.1 xplsprinters.man, NONE, 1.1.2.1 xplsprinters.sgml,
NONE, 1.1.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: gisburn
Update of /cvs/xorg/xc/programs/xphelloworld/xpxthelloworld
In directory pdx:/tmp/cvs-serv9732/xc/programs/xphelloworld/xpxthelloworld
Added Files:
Tag: XPRINT
Imakefile xpxthelloworld.c xpxthelloworld.html
xpxthelloworld.man xpxthelloworld.sgml
Log Message:
Fix for http://xprint.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=462 - RFE: Merge xprint.mozdev.org Xprint enhancements into Xorg XPRINT branch
--- NEW FILE: Imakefile ---
XCOMM $Xorg: Imakefile,v 1.1 2003/07/26 21:32:21 gisburn Exp $
LOCAL_LIBRARIES = $(XLIB) XawClientLibs -lXp -lXprintUtil
SYS_LIBRARIES = MathLibrary
DEPLIBS = $(DEPXLIB) XawClientDepLibs
DEFINES =
SRCS = xpxthelloworld.c
OBJS = xpxthelloworld.o
ComplexProgramTarget(xpxthelloworld)
#ifdef HasDocBookTools
all:: xpxthelloworld.man xpxthelloworld.html
ConvertDocBookToManPage(xpxthelloworld.sgml, xpxthelloworld.man)
ConvertDocBookToHTML(xpxthelloworld.sgml, xpxthelloworld.html)
#endif /* HasDocBookTools */
--- NEW FILE: xpxthelloworld.c ---
/*
* $Xorg: xpxthelloworld.c,v 1.1 2002/07/28 08:44:26 gisburn Exp $
*
* xpxthelloworld - Xprint version of hello world using Athena widgets
*
*
Copyright 2002-2004 Roland Mainz <roland.mainz at nrubsig.org>
All Rights Reserved.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP 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 SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*
* Author: Roland Mainz <roland.mainz at nrubsig.org>
*/
#include <X11/IntrinsicP.h>
#include <X11/ShellP.h>
#include <X11/StringDefs.h>
#include <X11/Xaw/Label.h>
#include <X11/XprintUtil/xprintutil.h>
#include <stdlib.h>
#include <stdio.h>
/* Turn a NULL pointer string into an empty string */
#define NULLSTR(x) (((x)!=NULL)?(x):(""))
#define Error(x) { printf x ; exit(EXIT_FAILURE); }
#define Log(x) { if(verbose) printf x; }
/* Prototypes */
static void redisplayWidget(Widget widget);
static void MyAppMainLoop(XtAppContext app, Widget printwidget);
static int do_hello_world( int argc, char *argv[], const char *printername, const char *toFile );
/* Global vars */
const char *ProgramName; /* program name (from argv[0]) */
Bool verbose = False; /* verbose output what the program is doing */
Bool done = False; /* Done with printing ? */
Bool doPrint = False; /* Do we print on a printer ? */
int xp_eventbase, /* XpExtension event base */
xp_errorbase; /* XpExtension error base */
Display *pdpy = NULL; /* (Paper) display */
Screen *pscreen = NULL; /* (Paper) screen (DDX-specific!) */
XPContext pcontext = None; /* Xprint context */
void *printtofile_handle = NULL; /* XprintUtil "context" when printing to file */
Drawable pdrawable = None; /* paper drawable */
int numpages = 0; /* pages being printed */
static
void MyAppMainLoop(XtAppContext app, Widget printwidget)
{
XEvent xevent;
/* process events. */
while( !done )
{
XtAppNextEvent(app, &xevent);
if( XtDispatchEvent(&xevent) == False )
{
/* XpExtension event ? */
if( xevent.type == xp_eventbase+XPPrintNotify )
{
XPPrintEvent *pev = (XPPrintEvent *)&xevent;
Log(("--> got XPPrintEvent\n"));
switch( pev->detail )
{
case XPStartJobNotify:
Log(("Starting page...\n"));
XpStartPage(pdpy, pdrawable);
break;
case XPEndJobNotify:
/* Job done... */
done = True;
break;
case XPStartPageNotify:
Log(("Rendering page...\n"));
redisplayWidget(printwidget);
Log(("Page end reached.\n"));
XpEndPage(pdpy);
break;
case XPEndPageNotify:
/* next page or exit */
numpages++;
if( numpages >= 1 )
{
Log(("Finishing job...\n"));
XpEndJob(pdpy);
}
break;
default:
Log(("--> other XPPrintEvent event\n"));
break;
}
}
else
{
Log(("--> other event\n"));
}
}
}
}
/* Code from the OpenMotif sources (XmRedisplayWidget) */
static
void redisplayWidget(Widget widget)
{
XExposeEvent xev ;
Region region ;
xev.type = Expose ;
/* is this better than 0 ? shouldn't make much difference
* unless the expose method is very tricky... */
xev.serial = LastKnownRequestProcessed(XtDisplay(widget)) ;
xev.send_event = False ;
xev.display = XtDisplay(widget);
xev.window = XtWindowOfObject(widget); /* work with gadget too */
xev.x = 0 ;
xev.y = 0 ;
xev.width = widget->core.width ;
xev.height = widget->core.height ;
xev.count = 0 ;
region = XCreateRegion();
XtAddExposureToRegion((XEvent*)&xev, region);
if (widget->core.widget_class->core_class.expose)
(*(widget->core.widget_class->core_class.expose))
(widget, (XEvent*)&xev, region);
XDestroyRegion(region);
}
static
void usage( void )
{
fprintf (stderr, "usage: %s [options]\n", ProgramName);
fprintf (stderr, "-print\tPrint via Xprint instead of displaying on the Xserver\n");
fprintf (stderr, "-printer printernname\tprinter to use\n");
fprintf (stderr, "-printfile file\tprint to file instead of printer\n");
fprintf (stderr, "-v\tverbose output\n");
fprintf (stderr, "\n");
exit(EXIT_FAILURE);
}
int main( int argc, char *argv[] )
{
const char *printername = NULL; /* printer to query */
const char *toFile = NULL; /* output file (instead of printer) */
XPPrinterList plist; /* list of printers */
int plist_count; /* number of entries in |plist|-array */
int i;
int retval;
ProgramName = argv[0];
for( i = 1 ; i < argc ; i++ )
{
char *arg = argv[i];
int len = strlen(arg);
if (!strncmp("-print", arg, len))
{
doPrint = True;
}
else if (!strncmp("-printer", arg, len))
{
if (++i >= argc)
usage();
printername = argv[i];
doPrint = True;
}
else if (!strncmp("-printfile", arg, len))
{
if (++i >= argc)
usage();
toFile = argv[i];
doPrint = True;
}
else if (!strncmp("-v", arg, len))
{
verbose = True;
}
else
{
usage();
}
}
if( doPrint )
{
plist = XpuGetPrinterList(printername, &plist_count);
if (!plist) {
fprintf(stderr, "%s: no printers found for printer spec \"%s\".\n",
ProgramName, NULLSTR(printername));
exit(EXIT_FAILURE);
}
Log(("Using printer '%s'\n", plist[0].name));
retval = do_hello_world(argc, argv, plist[0].name, toFile);
XpuFreePrinterList(plist);
}
else
{
Log(("Displaying on framebuffer Xserver\n"));
retval = do_hello_world(argc, argv, NULL, NULL);
}
return(retval);
}
/* xt_xp_openapplication() - mainly identical to XtOpenApplication() but
* takes a |Display *| and |Screen *| as arguments, too... */
static
Widget xt_xp_openapplication(XtAppContext *app_context_return,
Display *dpy,
Screen *screen,
String application_name,
String application_class,
WidgetClass widget_class,
int *argc,
String *argv)
{
Widget toplevel;
Cardinal n;
Arg args[2];
XtToolkitInitialize();
*app_context_return = XtCreateApplicationContext();
if( *app_context_return == NULL )
return NULL;
XtDisplayInitialize(*app_context_return, dpy,
application_name, application_class,
NULL, 0,
argc, argv);
n = 0;
XtSetArg(args[n], XtNscreen, screen); n++;
toplevel = XtAppCreateShell(application_name,
application_class,
widget_class,
dpy,
args, n);
return toplevel;
}
int do_hello_world( int argc, char *argv[], const char *printername, const char *toFile )
{
XtAppContext app;
Widget toplevel,
hello;
long dpi;
char fontname[256]; /* BUG: is this really big enougth ? */
XFontStruct *labelFont;
Cardinal n;
Arg args[10];
if( doPrint )
{
/* Get printer, either by "name" (foobar) or "name at display" (foobar at gaja:5) */
if( XpuGetPrinter(printername, &pdpy, &pcontext) != 1 )
Error(("XpuGetPrinter failure.\n"));
if( XpQueryExtension(pdpy, &xp_eventbase, &xp_errorbase) == False )
Error(("XpQueryExtension failure.\n"));
XpSelectInput(pdpy, pcontext, XPPrintMask);
/* Configure the print context (paper size, title etc.)
* We must do this before creating any Xt widgets - otherwise they will
* make wrong assuptions about fonts, resultions etc. ...
*/
XpuSetJobTitle(pdpy, pcontext, "Simple Xprint Athena widget demo");
/* Configuration done, set the context */
XpSetContext(pdpy, pcontext);
/* Get default printer resolution */
if( XpuGetResolution(pdpy, pcontext, &dpi) != 1 )
{
fprintf(stderr, "No default resolution for printer '%s'\n", printername);
XpuClosePrinterDisplay(pdpy, pcontext);
return(EXIT_FAILURE);
}
pscreen = XpGetScreenOfContext(pdpy, pcontext);
}
else
{
pdpy = XOpenDisplay(NULL);
if( !pdpy )
Error(("XOpenDisplay failure.\n"));
dpi = 0;
pscreen = XDefaultScreenOfDisplay(pdpy);
}
toplevel = xt_xp_openapplication(&app,
pdpy, pscreen,
"xpxtawhenademo", "XpXtAthenaDemo",
applicationShellWidgetClass,
&argc, argv);
if( !toplevel )
Error(("xt_xp_openapplication failure.\n"));
sprintf(fontname, "-*-*-*-*-*-*-*-180-%ld-%ld-*-*-iso8859-1", dpi, dpi);
labelFont = XLoadQueryFont(pdpy, fontname);
if( !labelFont )
Error(("XLoadQueryFont failure.\n"));
n = 0;
XtSetArg(args[n], XtNlabel, "Hello world\n"
"(Xprint/Athena widget version)"); n++;
XtSetArg(args[n], XtNfont, labelFont); n++;
hello = XtCreateManagedWidget(
"hello", /* arbitrary widget name */
labelWidgetClass, /* widget class from Label.h */
toplevel, /* parent widget*/
args, /* argument list */
n /* arg list size */
);
if( !hello )
Error(("XtCreateManagedWidget failure.\n"));
XtRealizeWidget(toplevel);
if( doPrint )
{
unsigned short pwidth, pheight;
XRectangle pagerect;
pdpy = XtDisplay(toplevel);
pdrawable = XtWindow(toplevel);
if( !pdpy || !pdrawable )
Error(("No display.\n"));
/* Make sure that the Xt machinery is really using the right screen (assertion) ... */
if( XpGetScreenOfContext(XtDisplay(toplevel), pcontext) != XtScreen(toplevel) )
Error(("Widget's screen != print screen. BAD.\n"));
/* Get the page dimensions and resize the widget based on that info ... */
XpGetPageDimensions(pdpy, pcontext, &pwidth, &pheight, &pagerect);
XMoveResizeWindow(pdpy, pdrawable, pagerect.x, pagerect.y, pagerect.width, pagerect.height);
/* ... and then start the print job. */
if( toFile )
{
printtofile_handle = XpuStartJobToFile(pdpy, pcontext, toFile);
if( !printtofile_handle )
{
perror("XpuStartJobToFile failure");
Error(("XpuStartJobToFile failure."));
}
}
else
{
XpuStartJobToSpooler(pdpy);
}
numpages = 0;
}
MyAppMainLoop(app, toplevel);
if( doPrint )
{
if( toFile )
{
if( XpuWaitForPrintFileChild(printtofile_handle) != XPGetDocFinished )
{
fprintf(stderr, "%s: Error while printing to file.\n", ProgramName);
}
}
/* We have to use XpDestroyContext() and XtCloseDisplay() instead
* of XpuClosePrinterDisplay() to make libXt happy... */
if( pcontext != None )
XpDestroyContext(pdpy, pcontext);
XtCloseDisplay(pdpy);
}
return EXIT_SUCCESS;
}
--- NEW FILE: xpxthelloworld.html ---
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>xpxthelloworld</title><meta name="generator" content="DocBook XSL Stylesheets V1.62.4"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"><a name="id2590201"></a><div class="titlepage"><div></div><div></div></div><div class="refnamediv"><h2>Name</h2><p>xpxthelloworld — "Hello World"-like Xprint sample utility based on the Xt toolkit</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="cmdsynopsis"><p><tt class="command">xpxthelloworld</tt> [<tt class="option">-print</tt>] [<tt class="option">-printer <i class="replaceable"><tt>printernname</tt></i></tt>] [<tt class="option">-v</tt>] [<tt class="option">-h</tt>]</p></div></div><div class="refsect1" lang="en"><a name="id2802567"></a><h2>DESCRIPTION</h2><p><span><b class="command">xpxthelloworld</b></span> is a sample utility for Xprint, the
printing system for the X Window system. It demonstrates how to send a test page to
the specified printer (or the default printer, if none is specified) based on
the Xt toolkit without using one of the special print shell widget classes
(such as
<span class="citerefentry"><span class="refentrytitle">XmPrintShell</span>(3x)</span>
or
<span class="citerefentry"><span class="refentrytitle">XawPrintShell</span>(3x)</span>).
</p></div><div class="refsect1" lang="en"><a name="id2804972"></a><h2>OPTIONS</h2><div class="variablelist"><dl><dt><span class="term"><tt class="option">-print</tt></span></dt><dd><p>Print (default is to display on the video Xserver)</p></dd><dt><span class="term"><tt class="option">-printer <i class="replaceable"><tt>printernname</tt></i></tt></span></dt><dd><p>printer to use</p></dd><dt><span class="term"><tt class="option">-v</tt></span></dt><dd><p>verbose output</p></dd><dt><span class="term"><tt class="option">-h</tt></span></dt><dd><p>print usage</p></dd></dl></div></div><div class="refsect1" lang="en"><a name="id2805011"></a><h2>ENVIRONMENT</h2><div class="variablelist"><dl><dt><span class="term"><tt class="envar">XPSERVERLIST</tt></span></dt><dd><p><tt class="envar">${XPSERVERLIST}</tt> must be set,
identifying the available Xprint servers.
See <span class="citerefentry"><span class="refentrytitle">Xprint</span>(7)</span>
for more details.
</p></dd></dl></div></div><div class="refsect1" lang="en"><a name="id2805043"></a><h2>KNOWN BUGS</h2><p>
A full list of bugs can be obtained from the Xprint.org bug database (<a href="http://xprint.mozdev.org/xprint_bugs.html" target="_top">http://xprint.mozdev.org/xprint_bugs.html</a>).
</p></div><div class="refsect1" lang="en"><a name="id2805052"></a><h2>SEE ALSO</h2><p><span class="simplelist"><span class="citerefentry"><span class="refentrytitle">Xprint</span>(7)</span>, <span class="citerefentry"><span class="refentrytitle">X11</span>(7)</span>, <span class="citerefentry"><span class="refentrytitle">xplsprinters</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">xphelloworld</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">xpxmhelloworld</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">xpawhelloworld</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">xpsimplehelloworld</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">Xserver</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">Xprt</span>(1x)</span>, <span class="citerefentry"><span class="refentrytitle">libXp</span>(3x)</span>, <span class="citerefentry"><span class="refentrytitle">libXprintUtils</span>(3x)</span>, <span class="citerefentry"><span class="refentrytitle">libXprintAppUtils</span>(3x)</span>, <span class="citerefentry"><span class="refentrytitle">XmPrintShell</span>(3x)</span>, <span class="citerefentry"><span class="refentrytitle">XawPrintShell</span>(3x)</span>, Xprint FAQ (<a href="http://xprint.mozdev.org/docs/Xprint_FAQ.html" target="_top">http://xprint.mozdev.org/docs/Xprint_FAQ.html</a>), Xprint main site (<a href="http://xprint.mozdev.org/" target="_top">http://xprint.mozdev.org/</a>)</span></p></div></div></body></html>
--- NEW FILE: xpxthelloworld.man ---
.\" This manpage has been automatically generated by docbook2man
.\" from a DocBook document. This tool can be found at:
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng <steve at ggi-project.org>.
.TH "XPXTHELLOWORLD" "__mansuffix__" "13 February 2004" "" ""
.SH NAME
xpxthelloworld \- \&"Hello World\&"-like Xprint sample utility based on the Xt toolkit
.SH SYNOPSIS
\fBxpxthelloworld\fR [ \fB-print\fR] [ \fB-printer \fIprinternname\fB\fR] [ \fB-v\fR] [ \fB-h\fR]
.SH "DESCRIPTION"
.PP
\fBxpxthelloworld\fR is a sample utility for Xprint, the
printing system for the X Window system. It demonstrates how to send a test page to
the specified printer (or the default printer, if none is specified) based on
the Xt toolkit without using one of the special print shell widget classes
(such as
\fBXmPrintShell\fR(__libmansuffix__)
or
\fBXawPrintShell\fR(__libmansuffix__)).
.SH "OPTIONS"
.TP
\fB-print \fR
Print (default is to display on the video Xserver)
.TP
\fB-printer \fIprinternname\fB \fR
printer to use
.TP
\fB-v \fR
verbose output
.TP
\fB-h \fR
print usage
.SH "ENVIRONMENT"
.TP
\fBXPSERVERLIST \fR
\fB${XPSERVERLIST}\fR must be set,
identifying the available Xprint servers.
See \fBXprint\fR(__miscmansuffix__)
for more details.
.SH "KNOWN BUGS"
.PP
A full list of bugs can be obtained from the Xprint.org bug database (http://xprint.mozdev.org/xprint_bugs.html <URL:http://xprint.mozdev.org/xprint_bugs.html>).
.SH "SEE ALSO"
.PP
\fBXprint\fR(__miscmansuffix__), \fBX11\fR(__miscmansuffix__), \fBxplsprinters\fR(__mansuffix__), \fBxphelloworld\fR(__mansuffix__), \fBxpxmhelloworld\fR(__mansuffix__), \fBxpawhelloworld\fR(__mansuffix__), \fBxpsimplehelloworld\fR(__mansuffix__), \fBXserver\fR(__mansuffix__), \fBXprt\fR(__mansuffix__), \fBlibXp\fR(__libmansuffix__), \fBlibXprintUtils\fR(__libmansuffix__), \fBlibXprintAppUtils\fR(__libmansuffix__), \fBXmPrintShell\fR(__libmansuffix__), \fBXawPrintShell\fR(__libmansuffix__), Xprint FAQ (http://xprint.mozdev.org/docs/Xprint_FAQ.html <URL:http://xprint.mozdev.org/docs/Xprint_FAQ.html>), Xprint main site (http://xprint.mozdev.org/ <URL:http://xprint.mozdev.org/>)
--- NEW FILE: xpxthelloworld.sgml ---
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.2//EN" '/usr/share/sgml/docbook_4.2/docbook.dtd'>
<!-- Process this file with DocBook tools to generate the output format
(such as manual pages or HTML documents).
Note that strings like __mansuffix__, __filemansuffix__, __libmansuffix__,
__miscmansuffix__ etc. have to be replaced first (in theory that's the
job of ENTITIES but some XML tools are highly allergic to such stuff... ;-().
A quick way to do that is to filter this document via
/usr/bin/sed "s/__mansuffix__/${MANSUFFIX}/g;s/__filemansuffix__/${FILEMANSUFFIX}/g;s/__libmansuffix__/${LIBMANSUFFIX}/g;s/__miscmansuffix__/${MISCMANSUFFIX}/g"
assuming that env vars like MANSUFFIX etc. have been set to the matching
manual volume numbers.
-->
<refentry>
<refmeta>
<refentrytitle>xpxthelloworld</refentrytitle>
<manvolnum>__mansuffix__</manvolnum>
</refmeta>
<refnamediv>
<refname>xpxthelloworld</refname>
<refpurpose>"Hello World"-like Xprint sample utility based on the Xt toolkit</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>xpxthelloworld</command>
<arg><option>-print</option></arg>
<arg><option>-printer <replaceable>printernname</replaceable></option></arg>
<arg><option>-v</option></arg>
<arg><option>-h</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para><command>xpxthelloworld</command> is a sample utility for Xprint, the
printing system for the X Window system. It demonstrates how to send a test page to
the specified printer (or the default printer, if none is specified) based on
the Xt toolkit without using one of the special print shell widget classes
(such as
<citerefentry><refentrytitle>XmPrintShell</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry>
or
<citerefentry><refentrytitle>XawPrintShell</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry>).
</para>
</refsect1>
<refsect1>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-print</option>
</term>
<listitem>
<para>Print (default is to display on the video Xserver)</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-printer <replaceable>printernname</replaceable></option>
</term>
<listitem>
<para>printer to use</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-v</option>
</term>
<listitem>
<para>verbose output</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-h</option>
</term>
<listitem>
<para>print usage</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>ENVIRONMENT</title>
<variablelist>
<varlistentry>
<term><envar>XPSERVERLIST</envar>
</term>
<listitem>
<para>
<envar>${XPSERVERLIST}</envar> must be set,
identifying the available Xprint servers.
See <citerefentry><refentrytitle>Xprint</refentrytitle><manvolnum>__miscmansuffix__</manvolnum></citerefentry>
for more details.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>KNOWN BUGS</title>
<para>
A full list of bugs can be obtained from the Xprint.org bug database (<ulink url="http://xprint.mozdev.org/xprint_bugs.html">http://xprint.mozdev.org/xprint_bugs.html</ulink>).
</para>
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para>
<simplelist type="inline">
<!-- specific references -->
<!-- none -->
<!-- Xprint general references -->
<member><citerefentry><refentrytitle>Xprint</refentrytitle><manvolnum>__miscmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>X11</refentrytitle><manvolnum>__miscmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>xplsprinters</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>xphelloworld</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>xpxmhelloworld</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>xpawhelloworld</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<!--
<member><citerefentry><refentrytitle>xpxthelloworld</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
-->
<member><citerefentry><refentrytitle>xpsimplehelloworld</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>Xserver</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>Xprt</refentrytitle><manvolnum>__mansuffix__</manvolnum></citerefentry></member>
<!-- ToDO: Add manual pages for the single Xprint DDX implementations (PostScript/PDF/PCL/PCL-MONO/Raster/etc.) -->
<member><citerefentry><refentrytitle>libXp</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>libXprintUtils</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>libXprintAppUtils</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>XmPrintShell</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry></member>
<member><citerefentry><refentrytitle>XawPrintShell</refentrytitle><manvolnum>__libmansuffix__</manvolnum></citerefentry></member>
<member>Xprint FAQ (<ulink url="http://xprint.mozdev.org/docs/Xprint_FAQ.html">http://xprint.mozdev.org/docs/Xprint_FAQ.html</ulink>)</member>
<member>Xprint main site (<ulink url="http://xprint.mozdev.org/">http://xprint.mozdev.org/</ulink>)</member>
</simplelist>
</para>
</refsect1>
</refentry>
- Previous message: [xorg-commit-diffs] xc/programs/xphelloworld/xpxmhelloworld
Imakefile, NONE, 1.1.2.1 xpxmhelloworld.c, NONE,
1.1.2.1 xpxmhelloworld.html, NONE, 1.1.2.1 xpxmhelloworld.man,
NONE, 1.1.2.1 xpxmhelloworld.sgml, NONE, 1.1.2.1
- Next message: [xorg-commit-diffs] xc/programs/xplsprinters Imakefile, NONE,
1.1.2.1 xplsprinters.c, NONE, 1.1.2.1 xplsprinters.html, NONE,
1.1.2.1 xplsprinters.man, NONE, 1.1.2.1 xplsprinters.sgml,
NONE, 1.1.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xorg-commit-diffs
mailing list