/* Copyright 1989, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. 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. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include "xlogo.h" #include "Logo.h" #include #ifdef XKB #include #endif #include #include /* Global vars*/ const char *ProgramName; /* program name (from argv[0]) */ static void quit(Widget w, XEvent *event, String *params, Cardinal *num_params); static XrmOptionDescRec options[] = { { "-shape", "*shapeWindow", XrmoptionNoArg, (XPointer) "on" }, #ifdef XRENDER {"-render", "*render",XrmoptionNoArg, "TRUE"}, {"-sharp", "*sharp", XrmoptionNoArg, "TRUE"}, #endif {"-v", "Verbose", XrmoptionNoArg, "TRUE"}, {"-q", "Quiet", XrmoptionNoArg, "TRUE"}, }; static XtActionsRec actions[] = { {"quit", quit }, }; static Atom wm_delete_window; /* See xlogo.h */ XLogoResourceData userOptions; #define Offset(field) XtOffsetOf(XLogoResourceData, field) static XtResource resources[] = { {"verbose", "Verbose", XtRBoolean, sizeof(Boolean), Offset(verbose), XtRImmediate, (XtPointer)False}, {"quiet", "Quiet", XtRBoolean, sizeof(Boolean), Offset(quiet), XtRImmediate, (XtPointer)False}, }; static String fallback_resources[] = { "*iconPixmap: xlogo32", "*iconMask: xlogo32", "*baseTranslations: #override \\" "\tq: quit()", NULL, }; static void die(Widget w, XtPointer client_data, XtPointer call_data) { XtAppSetExitFlag(XtWidgetToApplicationContext(w)); } static void save(Widget w, XtPointer client_data, XtPointer call_data) { return; } /* * Report the syntax for calling xlogo. */ static void Syntax(Widget toplevel) { Arg arg; SmcConn connection; String reasons[10]; int i, n = 0; reasons[n++] = "Usage: "; reasons[n++] = (String)ProgramName; reasons[n++] = " [-fg ] [-bg ] [-rv] [-bw ] [-bd ]\n"; reasons[n++] = " [-v] [-q]\n"; reasons[n++] = " [-d []:[]]\n"; reasons[n++] = " [-g [][x][<+->[<+->]]]\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, n, reasons); else { for (i=0; i < n; i++) printf("%s", reasons[i]); } exit(EXIT_FAILURE); } int 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); XtGetApplicationResources(toplevel, (XtPointer)&userOptions, resources, XtNumber(resources), NULL, 0); XtAppAddActions(app_con, actions, XtNumber(actions)); XtAddCallback(toplevel, XtNsaveCallback, save, NULL); XtAddCallback(toplevel, XtNdieCallback, die, NULL); XtOverrideTranslations (toplevel, XtParseTranslationTable ("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); return EXIT_SUCCESS; } /*ARGSUSED*/ static void quit(Widget w, XEvent *event, String *params, Cardinal *num_params) { Arg arg; if (event->type == ClientMessage && (Atom)event->xclient.data.l[0] != wm_delete_window) { #ifdef XKB XkbStdBell(XtDisplay(w), XtWindow(w), 0, XkbBI_BadValue); #else XBell(XtDisplay(w), 0); #endif } else { /* resign from the session */ XtSetArg(arg, XtNjoinSession, False); XtSetValues(w, &arg, ONE); die(w, NULL, NULL); } }