diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:49:22 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:49:22 +0000 |
commit | dfc0320568e5237fff45b3f7fb6f332d1bf5e9bf (patch) | |
tree | 5cf2915b722b8c0d9d570a5bf0874ea406f9ac95 /xeyes.c |
Initial revisionXORG-STABLE
Diffstat (limited to 'xeyes.c')
-rw-r--r-- | xeyes.c | 132 |
1 files changed, 132 insertions, 0 deletions
@@ -0,0 +1,132 @@ +/* $XConsortium: xeyes.c,v 1.16 94/04/17 20:45:23 rws Exp $ */ +/* + +Copyright (c) 1991 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining +a 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 Software is furnished to do so, subject to +the following conditions: + +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 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 SOFTWARE. + +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 dealings in this Software without prior written authorization +from the X Consortium. + +*/ +/* $XFree86: xc/programs/xeyes/xeyes.c,v 1.4 2001/08/27 23:35:13 dawes Exp $ */ + +#include <X11/Intrinsic.h> +#include <X11/StringDefs.h> +#include <X11/Shell.h> +#include "Eyes.h" +#include <stdio.h> +#include <stdlib.h> +#include "eyes.bit" +#include "eyesmask.bit" + +/* Exit with message describing command line format */ + +static void +usage(void) +{ + fprintf(stderr, +"usage: xeyes\n"); + fprintf (stderr, +" [-geometry [{width}][x{height}][{+-}{xoff}[{+-}{yoff}]]] [-display [{host}]:[{vs}]]\n"); + fprintf(stderr, +" [-fg {color}] [-bg {color}] [-bd {color}] [-bw {pixels}]"); + fprintf(stderr, " [-shape | +shape]"); + fprintf(stderr, "\n"); + fprintf(stderr, +" [-outline {color}] [-center {color}] [-backing {backing-store}]\n"); + exit(1); +} + +/* Command line options table. Only resources are entered here...there is a + pass over the remaining options after XtParseCommand is let loose. */ + +static XrmOptionDescRec options[] = { +{"-outline", "*eyes.outline", XrmoptionSepArg, NULL}, +{"-center", "*eyes.center", XrmoptionSepArg, NULL}, +{"-backing", "*eyes.backingStore", XrmoptionSepArg, NULL}, +{"-shape", "*eyes.shapeWindow", XrmoptionNoArg, "TRUE"}, +{"+shape", "*eyes.shapeWindow", XrmoptionNoArg, "FALSE"}, +}; + +static Atom wm_delete_window; + +/*ARGSUSED*/ +static void +quit(Widget w, XEvent *event, String *params, Cardinal *num_params) +{ + if (event->type == ClientMessage && + event->xclient.data.l[0] != wm_delete_window) { + XBell(XtDisplay(w), 0); + } else { + XtDestroyApplicationContext(XtWidgetToApplicationContext(w)); + exit(0); + } +} + +static XtActionsRec actions[] = { + {"quit", quit} +}; + +int +main(int argc, char **argv) +{ + XtAppContext app_context; + Widget toplevel; + Arg arg[2]; + Cardinal i; + + XtSetLanguageProc(NULL, (XtLanguageProc) NULL, NULL); + + toplevel = XtAppInitialize(&app_context, "XEyes", + options, XtNumber(options), &argc, argv, + NULL, arg, (Cardinal) 0); + if (argc != 1) usage(); + + wm_delete_window = XInternAtom(XtDisplay(toplevel), "WM_DELETE_WINDOW", + False); + XtAppAddActions(app_context, actions, XtNumber(actions)); + XtOverrideTranslations + (toplevel, XtParseTranslationTable ("<Message>WM_PROTOCOLS: quit()")); + + i = 0; + XtSetArg (arg[i], XtNiconPixmap, + XCreateBitmapFromData (XtDisplay(toplevel), + XtScreen(toplevel)->root, + (char *)eyes_bits, eyes_width, eyes_height)); + i++; + XtSetArg (arg[i], XtNiconMask, + XCreateBitmapFromData (XtDisplay(toplevel), + XtScreen(toplevel)->root, + (char *)eyesmask_bits, + eyesmask_width, eyesmask_height)); + i++; + XtSetValues (toplevel, arg, i); + + (void) XtCreateManagedWidget ("eyes", eyesWidgetClass, toplevel, NULL, 0); + XtRealizeWidget (toplevel); + (void) XSetWMProtocols (XtDisplay(toplevel), XtWindow(toplevel), + &wm_delete_window, 1); + XtAppMainLoop(app_context); + + return 0; +} |