summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--XLogo.ad5
-rw-r--r--xlogo.c144
2 files changed, 108 insertions, 41 deletions
diff --git a/XLogo.ad b/XLogo.ad
index 202a098..a70ff3c 100644
--- a/XLogo.ad
+++ b/XLogo.ad
@@ -1 +1,4 @@
-XLogo.input: false
+XLogo*iconPixmap: xlogo32
+XLogo*iconMask: xlogo32
+XLogo*baseTranslations: #override \
+<Key>q,<Key>Escape: quit()
diff --git a/xlogo.c b/xlogo.c
index 49cf369..f6bafc8 100644
--- a/xlogo.c
+++ b/xlogo.c
@@ -27,18 +27,28 @@ in this Software without prior written authorization from The Open Group.
/* $XFree86: xc/programs/xlogo/xlogo.c,v 3.7 2001/07/25 15:05:26 dawes Exp $ */
-#include <stdio.h>
#include <X11/Intrinsic.h>
+#include <X11/StringDefs.h>
#include <X11/Shell.h>
+#include "xlogo.h"
#include "Logo.h"
#include <X11/Xaw/Cardinals.h>
+#ifdef XPRINT
+#include "print.h"
+#endif
#ifdef XKB
#include <X11/extensions/XKBbells.h>
#endif
+#include <stdio.h>
#include <stdlib.h>
-static void quit(Widget w, XEvent *event, String *params,
- Cardinal *num_params);
+/* Global vars*/
+const char *ProgramName; /* program name (from argv[0]) */
+
+static void quit(Widget w, XEvent *event, String *params, Cardinal *num_params);
+#ifdef XPRINT
+static void print(Widget w, XEvent *event, String *params, Cardinal *num_params);
+#endif
static XrmOptionDescRec options[] = {
{ "-shape", "*shapeWindow", XrmoptionNoArg, (XPointer) "on" },
@@ -46,25 +56,55 @@ static XrmOptionDescRec options[] = {
{"-render", "*render",XrmoptionNoArg, "TRUE"},
{"-sharp", "*sharp", XrmoptionNoArg, "TRUE"},
#endif
+{"-v", "Verbose", XrmoptionNoArg, "TRUE"},
+#ifdef XPRINT
+{"-print", "Print", XrmoptionNoArg, "TRUE"},
+{"-printer", "printer", XrmoptionSepArg, NULL},
+{"-printfile", "printFile", XrmoptionSepArg, NULL},
+#endif
};
static XtActionsRec actions[] = {
- {"quit", quit}
+ {"quit", quit },
+#ifdef XPRINT
+ {"print", print}
+#endif
};
static Atom wm_delete_window;
+/* See xlogo.h */
+XLogoResourceData userOptions;
+
+#define Offset(field) XtOffsetOf(XLogoResourceData, field)
+
+XtResource resources[] = {
+ {"verbose", "Verbose", XtRBoolean, sizeof(Boolean), Offset(verbose), XtRImmediate, (XtPointer)False},
+#ifdef XPRINT
+ {"print", "Print", XtRBoolean, sizeof(Boolean), Offset(printAndExit), XtRImmediate, (XtPointer)False},
+ {"printer", "Printer", XtRString, sizeof(String), Offset(printername), XtRImmediate, (XtPointer)NULL},
+ {"printFile", "PrintFile", XtRString, sizeof(String), Offset(printfile), XtRImmediate, (XtPointer)NULL}
+#endif
+};
+
+
String fallback_resources[] = {
"*iconPixmap: xlogo32",
"*iconMask: xlogo32",
+ "*baseTranslations: #override \\"
+#ifdef XPRINT
+ "\t<Key>q: quit()\\n\\"
+ "\t<Key>p: print()",
+#else
+ "\t<Key>q: quit()",
+#endif
NULL,
};
static void
die(Widget w, XtPointer client_data, XtPointer call_data)
{
- XCloseDisplay(XtDisplay(w));
- exit(0);
+ XtAppSetExitFlag(XtWidgetToApplicationContext(w));
}
static void
@@ -78,34 +118,35 @@ save(Widget w, XtPointer client_data, XtPointer call_data)
*/
static void
-Syntax(Widget toplevel, char *call)
+Syntax(Widget toplevel)
{
Arg arg;
SmcConn connection;
- String reasons[7];
- int i, num_reasons = 7;
-
- reasons[0] = "Usage: ";
- reasons[1] = call;
- reasons[2] = " [-fg <color>] [-bg <color>] [-rv] [-bw <pixels>] [-bd <color>]\n";
- reasons[3] = " [-d [<host>]:[<vs>]]\n";
- reasons[4] = " [-g [<width>][x<height>][<+-><xoff>[<+-><yoff>]]]\n";
-#ifdef XRENDER
- reasons[5] = " [-render] [-sharp]\n";
-#else
- reasons[5] = "";
+ String reasons[10];
+ int i, n = 0;
+
+ reasons[n++] = "Usage: ";
+ reasons[n++] = (String)ProgramName;
+ reasons[n++] = " [-fg <color>] [-bg <color>] [-rv] [-bw <pixels>] [-bd <color>]\n";
+ reasons[n++] = " [-d [<host>]:[<vs>]]\n";
+ reasons[n++] = " [-g [<width>][x<height>][<+-><xoff>[<+-><yoff>]]]\n";
+#ifdef XPRINT
+ reasons[n++] = " [-print] [-printname <name>] [-printfile <file>]\n";
#endif
- reasons[6] = " [-shape]\n\n";
+#ifdef XRENDER
+ reasons[n++] = " [-render] [-sharp]\n";
+#endif /* XRENDER */
+ reasons[n++] = " [-shape]\n\n";
XtSetArg(arg, XtNconnection, &connection);
XtGetValues(toplevel, &arg, (Cardinal)1);
if (connection)
- SmcCloseConnection(connection, num_reasons, reasons);
+ SmcCloseConnection(connection, n, reasons);
else {
- for (i=0; i < num_reasons; i++)
+ for (i=0; i < n; i++)
printf(reasons[i]);
}
- exit(1);
+ exit(EXIT_FAILURE);
}
int
@@ -114,27 +155,42 @@ main(int argc, char *argv[])
Widget toplevel;
XtAppContext app_con;
+ ProgramName = argv[0];
+
toplevel = XtOpenApplication(&app_con, "XLogo",
options, XtNumber(options),
&argc, argv, fallback_resources,
sessionShellWidgetClass, NULL, ZERO);
if (argc != 1)
- Syntax(toplevel, argv[0]);
-
- XtAddCallback(toplevel, XtNsaveCallback, save, NULL);
- XtAddCallback(toplevel, XtNdieCallback, die, NULL);
- XtAppAddActions
- (XtWidgetToApplicationContext(toplevel), actions, XtNumber(actions));
- XtOverrideTranslations
- (toplevel, XtParseTranslationTable ("<Message>WM_PROTOCOLS: quit()"));
- XtCreateManagedWidget("xlogo", logoWidgetClass, toplevel, NULL, ZERO);
- XtRealizeWidget(toplevel);
- wm_delete_window = XInternAtom(XtDisplay(toplevel), "WM_DELETE_WINDOW",
- False);
- (void) XSetWMProtocols (XtDisplay(toplevel), XtWindow(toplevel),
- &wm_delete_window, 1);
+ Syntax(toplevel);
+
+ XtGetApplicationResources(toplevel, (XtPointer)&userOptions, resources,
+ XtNumber(resources), NULL, 0);
+
+ XtAppAddActions(app_con, actions, XtNumber(actions));
+
+#ifdef XPRINT
+ if (userOptions.printAndExit) {
+ XtCallActionProc(toplevel, "print", NULL, NULL, 0);
+ }
+ else
+#endif
+ {
+ XtAddCallback(toplevel, XtNsaveCallback, save, NULL);
+ XtAddCallback(toplevel, XtNdieCallback, die, NULL);
+ XtOverrideTranslations
+ (toplevel, XtParseTranslationTable ("<Message>WM_PROTOCOLS: quit()"));
+ XtCreateManagedWidget("xlogo", logoWidgetClass, toplevel, NULL, ZERO);
+ XtRealizeWidget(toplevel);
+ wm_delete_window = XInternAtom(XtDisplay(toplevel), "WM_DELETE_WINDOW",
+ False);
+ (void) XSetWMProtocols (XtDisplay(toplevel), XtWindow(toplevel),
+ &wm_delete_window, 1);
+ }
+
XtAppMainLoop(app_con);
- exit(0);
+
+ return EXIT_SUCCESS;
}
/*ARGSUSED*/
@@ -142,9 +198,9 @@ static void
quit(Widget w, XEvent *event, String *params, Cardinal *num_params)
{
Arg arg;
-
+
if (event->type == ClientMessage &&
- event->xclient.data.l[0] != wm_delete_window) {
+ (Atom)event->xclient.data.l[0] != wm_delete_window) {
#ifdef XKB
XkbStdBell(XtDisplay(w), XtWindow(w), 0, XkbBI_BadValue);
#else
@@ -158,3 +214,11 @@ quit(Widget w, XEvent *event, String *params, Cardinal *num_params)
}
}
+#ifdef XPRINT
+/*ARGSUSED*/
+static void
+print(Widget w, XEvent *event, String *params, Cardinal *num_params)
+{
+ DoPrint(w, userOptions.printername, userOptions.printfile);
+}
+#endif