#include #include #include #include #include "Net.h" #include extern void exit(); static void quit(); char *ProgramName; static XrmOptionDescRec options[] = { { "-update", "*netstat.update", XrmoptionSepArg, (caddr_t) NULL }, { "-file", "*netstat.file", XrmoptionSepArg, (caddr_t) NULL }, { "-shape", "*netstat.shapeWindow", XrmoptionNoArg, (caddr_t) "on" }, { "-volume", "*netstat.volume", XrmoptionSepArg, (caddr_t) NULL }, }; static XtActionsRec xmonisdn_actions[] = { { "quit", quit }, }; static Atom wm_delete_window; static void Usage () { static char *help_message[] = { "where options include:", " -display host:dpy X server to contact", " -geometry geom size of Netstat", " -file file isdninfo-file to watch", " -update 1/10 of a second how often to check", " -bg color background color", " -fg color foreground color", " -rv reverse video", " -volume percentage how loud to ring the bell", " -shape shape the window", NULL}; char **cpp; fprintf (stderr, "usage: %s [-options ...]\n", ProgramName); for (cpp = help_message; *cpp; cpp++) { fprintf (stderr, "%s\n", *cpp); } fprintf (stderr, "\n"); exit (1); } int main (argc, argv) int argc; char **argv; { XtAppContext xtcontext; Widget toplevel, w; ProgramName = argv[0]; toplevel = XtAppInitialize(&xtcontext, "xmonisdn", options, XtNumber (options), &argc, argv, NULL, NULL, 0); if (argc != 1) Usage (); /* * This is a hack so that f.delete will do something useful in this * single-window application. */ XtAppAddActions (xtcontext, xmonisdn_actions, XtNumber(xmonisdn_actions)); XtOverrideTranslations(toplevel, XtParseTranslationTable ("WM_PROTOCOLS: quit()")); w = XtCreateManagedWidget ("netstat", netstatWidgetClass, toplevel, NULL, 0); XtRealizeWidget (toplevel); wm_delete_window = XInternAtom (XtDisplay(toplevel), "WM_DELETE_WINDOW", False); (void) XSetWMProtocols (XtDisplay(toplevel), XtWindow(toplevel), &wm_delete_window, 1); XtAppMainLoop (xtcontext); return 0; } static void quit (w, event, params, num_params) 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); return; } XCloseDisplay (XtDisplay(w)); exit (0); }