home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / Other / Coherent / DemonArchives / docs / x-faq.5.z / x-faq.5
Text File  |  1993-10-25  |  47KB  |  983 lines

  1. Archive-name: x-faq/part5
  2. Last-modified: 1993/10/11
  3.  
  4. ----------------------------------------------------------------------
  5. Subject: 121)  Why isn't there an XtReparentWidget call like XReparentWindow?
  6.  
  7.     Although there are various details of the current implementation of
  8. the Xt internals which make reparenting difficult, the major reason that no
  9. such call exists is that it remains undefined what the set of resources for
  10. the "new" widget should be. Resources are typically set based on the location
  11. in the instance hierarchy; what resources should change if the instance moves?
  12. What should happen to the widget's children? And by the time such semantics are
  13. defined, there would probably be little advantage over destroying the old 
  14. widget and creating a new widget in the correct location with the desired 
  15. resources, as setting the resources correctly is the majority of work in 
  16. creating a new widget.
  17.  
  18.     Note that reparenting is possible in the OI toolkit.
  19.  
  20. ----------------------------------------------------------------------
  21. Subject: 122)  I'm writing a widget and can't use a float as a resource value.
  22.  
  23. Float resources are not portable; the size of the value may be larger than
  24. the size of an XtPointer. Try using a pointer to a float instead; the Xaw
  25. Scrollbar float resources are handled in this way. 
  26.  
  27. ----------------------------------------------------------------------
  28. Subject: 123)  Is this a memory leak in the X11R4 XtDestroyWidget()?!
  29.  
  30. Yes. This is the "unofficial" fix-19 for the X11R4 Destroy.c:
  31.  
  32. *** Destroy.c.1.37    Thu Jul 11 15:41:25 1991
  33. --- lib/Xt/Destroy.c    Thu Jul 11 15:42:23 1991
  34. ***************
  35. *** 1,4 ****
  36. --- 1,5 ----
  37.   /* $XConsortium: Destroy.c,v 1.37 90/09/28 10:21:32 swick Exp $ */
  38. + /* Plus unofficial patches in revisions 1.40 and 1.41 */
  39.   
  40.   /***********************************************************
  41.   Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  42. ***************
  43. *** 221,239 ****
  44.        */
  45.   
  46.       int i = 0;
  47. !     DestroyRec* dr = app->destroy_list;
  48.       while (i < app->destroy_count) {
  49.       if (dr->dispatch_level >= dispatch_level)  {
  50.           Widget w = dr->widget;
  51.           if (--app->destroy_count)
  52.           bcopy( (char*)(dr+1), (char*)dr,
  53. !                app->destroy_count*sizeof(DestroyRec)
  54.                 );
  55.           XtPhase2Destroy(w);
  56.       }
  57.       else {
  58.           i++;
  59. -         dr++;
  60.       }
  61.       }
  62.   }
  63. --- 222,245 ----
  64.        */
  65.   
  66.       int i = 0;
  67. !     DestroyRec* dr;
  68.       while (i < app->destroy_count) {
  69. +     /* XtPhase2Destroy can result in calls to XtDestroyWidget,
  70. +      * and these could cause app->destroy_list to be reallocated.
  71. +      */
  72. +     dr = app->destroy_list + i;
  73.       if (dr->dispatch_level >= dispatch_level)  {
  74.           Widget w = dr->widget;
  75.           if (--app->destroy_count)
  76.           bcopy( (char*)(dr+1), (char*)dr,
  77. !                (app->destroy_count - i) * sizeof(DestroyRec)
  78.                 );
  79.           XtPhase2Destroy(w);
  80.       }
  81.       else {
  82.           i++;
  83.       }
  84.       }
  85.   }
  86.  
  87. [from Donna Converse, converse@x.org]
  88.  
  89. ----------------------------------------------------------------------
  90. Subject: 124)  Is this a memory leak in the X11R4 deletion of work procs?!
  91.  
  92. Apparently the X11R4 NextEvent.c`CallWorkProc fails to properly replace
  93. the work proc record back on the free list correctly.
  94.  
  95.         if (delete) {
  96.             w->next = freeWorkRecs;
  97.             freeWorkRecs = w->next;    /* should be  =w; */
  98.         }
  99.  
  100. ----------------------------------------------------------------------
  101. Subject: 125)  Are callbacks guaranteed to be called in the order registered?
  102.  
  103.     Although some books demonstrate that the current implementation of Xt
  104. happens to call callback procedures in the order in which they are registered, 
  105. the specification does not guarantee such a sequence, and supplemental 
  106. authoritative documents (i.e. the Asente/Swick volume) do say that the order is
  107. undefined.  Because the callback list can be manipulated by both the widget and
  108. the application, Xt cannot guarantee the order of execution.
  109.     In general, the callback procedures should be thought of as operating 
  110. independently of one another and should not depend on side-effects of other
  111. callbacks operating; if a seqence is needed, then the single callback to be 
  112. registered can explicitly call other functions necessary.
  113.  
  114. [4/92; thanks to converse@x.org]
  115.  
  116. ----------------------------------------------------------------------
  117. Subject: 126)  Why doesn't XtDestroyWidget() actually destroy the widget?
  118.  
  119.     XtDestroyWidget() operates in two passes, in order to avoid leaving
  120. dangling data structures; the function-call marks the widget, which is not 
  121. actually destroyed until your program returns to its event-loop. 
  122.  
  123. ----------------------------------------------------------------------
  124. Subject: 127)  How do I query the user synchronously using Xt?
  125.     
  126.     It is possible to have code which looks like this trivial callback,
  127. which has a clear flow of control. The calls to AskUser() block until answer
  128. is set to one of the valid values. If it is not a "yes" answer, the code drops
  129. out of the callback and back to an event-processing loop: 
  130.  
  131.     void quit(Widget w, XtPointer client, XtPointer call)
  132.     {
  133.         int             answer;
  134.         answer = AskUser(w, "Really Quit?");
  135.         if (RET_YES == answer)
  136.             {
  137.             answer = AskUser(w, "Are You Really Positive?");
  138.             if (RET_YES == answer)
  139.                 exit(0);
  140.                 }
  141.     }
  142.  
  143.     A more realistic example might ask whether to create a file or whether 
  144. to overwrite it.
  145.     This is accomplished by entering a second event-processing loop and
  146. waiting until the user answers the question; the answer is returned to the
  147. calling function. That function AskUser() looks something like this, where the 
  148. Motif can be replaced with widget-set-specific code to create some sort of 
  149. dialog-box displaying the question string and buttons for "OK", "Cancel" and 
  150. "Help" or equivalents:
  151.  
  152.   int AskUser(w, string)
  153.         Widget          w;
  154.         char           *string;
  155.   {
  156.         int             answer=RET_NONE;    /* some not-used marker */
  157.         Widget          dialog;            /* could cache&carry, but ...*/
  158.         Arg             args[3];
  159.         int             n = 0;
  160.         XtAppContext    context;
  161.  
  162.         n=0;
  163.         XtSetArg(args[n], XmNmessageString, XmStringCreateLtoR(string,
  164.                 XmSTRING_DEFAULT_CHARSET)); n++;
  165.         XtSetArg(args[n], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); n++;
  166.         dialog = XmCreateQuestionDialog(XtParent(w), string, args, n);
  167.         XtAddCallback(dialog, XmNokCallback, response, &answer);
  168.         XtAddCallback(dialog, XmNcancelCallback, response, &answer);
  169.         XtAddCallback(dialog, XmNhelpCallback, response, &answer);
  170.         XtManageChild(dialog);
  171.  
  172.         context = XtWidgetToApplicationContext (w);
  173.         while (answer == RET_NONE || XtAppPending(context)) {
  174.                 XtAppProcessEvent (context, XtIMAll);
  175.         }
  176.         XtDestroyWidget(dialog);  /* blow away the dialog box and shell */
  177.         return answer;
  178.   }
  179.  
  180.     The dialog supports three buttons, which are set to call the same 
  181. function when tickled by the user.  The variable answer is set when the user 
  182. finally selects one of those choices:
  183.  
  184.   void response(w, client, call)
  185.         Widget          w;
  186.         XtPointer client;
  187.         XtPointer call;
  188.   {
  189.   int *answer = (int *) client;
  190.   XmAnyCallbackStruct *reason = (XmAnyCallbackStruct *) call;
  191.         switch (reason->reason) {
  192.         case XmCR_OK:
  193.                 *answer = RET_YES;    /* some #define value */
  194.                 break;
  195.         case XmCR_CANCEL:
  196.                 *answer = RET_NO; 
  197.         break;
  198.         case XmCR_HELP:
  199.                 *answer = RET_HELP;
  200.                 break;
  201.         default:
  202.                 return;
  203.         }
  204. }
  205.  
  206. and the code unwraps back to the point at which an answer was needed and
  207. continues from there.
  208.  
  209. [Thanks to Dan Heller (argv@sun.com); further code is in Dan's R3/contrib
  210. WidgetWrap library. 2/91]
  211.  
  212. ----------------------------------------------------------------------
  213. Subject: 128)  How do I determine the name of an existing widget?
  214. I have a widget ID and need to know what the name of that widget is.
  215.  
  216.     Users of R4 and later are best off using the XtName() function, which 
  217. will work on both widgets and non-widget objects.
  218.  
  219.     If you are still using R3, you can use this simple bit of code to do 
  220. what you want. Note that it depends on the widget's internal data structures 
  221. and is not necessarily portable to future versions of Xt, including R4.
  222.  
  223.     #include <X11/CoreP.h>
  224.     #include <X11/Xresource.h>
  225.     String XtName (widget)
  226.     Widget widget;    /* WILL work with non-widget objects */
  227.     {
  228.     return XrmNameToString(widget->core.xrm_name);
  229.     }
  230.  
  231. [7/90; modified with suggestion by Larry Rogers (larry@boris.webo.dg.com) 9/91]
  232.  
  233. ----------------------------------------------------------------------
  234. Subject: 129)  Why do I get a BadDrawable error drawing to XtWindow(widget)?
  235. I'm doing this in order to get a window into which I can do Xlib graphics
  236. within my Xt-based program:
  237.  
  238. > canvas = XtCreateManagedWidget ( ...,widgetClass,...) /* drawing area */
  239. > ...
  240. > window = XtWindow(canvas);    /* get the window associated with the widget */
  241. > ...
  242. > XDrawLine (...,window,...);    /* produces error */
  243.  
  244.     The window associated with the widget is created as a part of the 
  245. realization of the widget.  Using a window id of NULL ("no window") could 
  246. create the error that you describe.  It is necessary to call XtRealizeWidget() 
  247. before attempting to use the window associated with a widget. 
  248.     Note that the window will be created after the XtRealizeWidget() call, 
  249. but that the server may not have actually mapped it yet, so you should also 
  250. wait for an Expose event on the window before drawing into it.
  251.  
  252. ----------------------------------------------------------------------
  253. Subject: 130)  Why do I get a BadMatch error when calling XGetImage?
  254.  
  255. The BadMatch error can occur if the specified rectangle goes off the edge of 
  256. the screen. If you don't want to catch the error and deal with it, you can take
  257. the following steps to avoid the error:
  258.  
  259. 1) Make a pixmap the same size as the rectangle you want to capture.
  260. 2) Clear the pixmap to background using XFillRectangle.
  261. 3) Use XCopyArea to copy the window to the pixmap.
  262. 4) If you get a NoExpose event, the copy was clean. Use XGetImage to grab the
  263. image from the pixmap.
  264. 5) If you get one or more GraphicsExpose events, the copy wasn't clean, and 
  265. the x/y/width/height members of the GraphicsExpose event structures tell you 
  266. the parts of the pixmap which aren't good.
  267. 6) Get rid of the pixmap; it probably takes a lot of memory.
  268.  
  269. [10/92; thanks to Oliver Jones (oj@pictel.com)]
  270.  
  271. ----------------------------------------------------------------------
  272. Subject: 131)  Where can I get documentation on Xaw, the Athena widget set?
  273.  
  274.     Check ftp.x.org in /pub/R5untarred/mit/hardcopy for the originals
  275. of documentation distributed with X11R5.
  276.  
  277. ----------------------------------------------------------------------
  278. Subject: 132)  How can my application tell if it is being run under X?
  279.  
  280.     A number of programs offer X modes but otherwise run in a straight
  281. character-only mode. The easiest way for an application to determine that it is
  282. running on an X display is to attempt to open a connection to the X server:
  283.     
  284.     display = XOpenDisplay(display_name);
  285.     if (display)
  286.         { do X stuff }
  287.     else
  288.         { do curses or something else }
  289. where display_name is either the string specified on the command-line following
  290. -display, by convention, or otherwise is (char*)NULL [in which case 
  291. XOpenDisplay uses the value of $DISPLAY, if set].
  292.  
  293. This is superior to simply checking for the existence a -display command-line 
  294. argument or checking for $DISPLAY set in the environment, neither of which is 
  295. adequate. [5/91]
  296.  
  297. ----------------------------------------------------------------------
  298. Subject: 133)  How do I make a "busy cursor" while my application is computing?
  299. Is it necessary to call XDefineCursor() for every window in my application?
  300.  
  301.     The easiest thing to do is to create a single InputOnly window that
  302. is as large as the largest possible screen; make it a child of your toplevel
  303. window (which must be realized) and it will be clipped to that window, so it
  304. won't affect any other application. (It needs to be as big as the largest
  305. possible screen in case the user enlarges the window while it is busy or
  306. moves elsewhere within a virtual desktop.) Substitute "toplevel" with your
  307. top-most widget here (similar code should work for Xlib-only applications;
  308. just use your top Window):
  309.  
  310.      unsigned long valuemask;
  311.      XSetWindowAttributes attributes;
  312.  
  313.      /* Ignore device events while the busy cursor is displayed. */
  314.      valuemask = CWDontPropagate | CWCursor;
  315.      attributes.do_not_propagate_mask =  (KeyPressMask | KeyReleaseMask |
  316.          ButtonPressMask | ButtonReleaseMask | PointerMotionMask);
  317.      attributes.cursor = XCreateFontCursor(XtDisplay(toplevel), XC_watch);
  318.  
  319.      /* The window will be as big as the display screen, and clipped by
  320.         its own parent window, so we never have to worry about resizing */
  321.      XCreateWindow(XtDisplay(toplevel), XtWindow(toplevel), 0, 0,
  322.          65535, 65535, (unsigned int) 0, 0, InputOnly,
  323.          CopyFromParent, valuemask, &attributes);
  324.  
  325. where the maximum size above could be replaced by the real size of the screen,
  326. particularly to avoid servers which have problems with windows larger than
  327. 32767.
  328.  
  329. When you want to use this busy cursor, map and raise this window; to go back to
  330. normal, unmap it. This will automatically keep you from getting extra mouse
  331. events; depending on precisely how the window manager works, it may or may not
  332. have a similar effect on keystrokes as well.
  333.  
  334. In addition, note also that most of the Xaw widgets support an XtNcursor 
  335. resource which can be temporarily reset, should you merely wish to change the
  336. cursor without blocking pointer events.
  337.  
  338. [thanks to Andrew Wason (aw@cellar.bae.bellcore.com), Dan Heller 
  339. (argv@sun.com), and mouse@larry.mcrcim.mcgill.edu; 11/90,5/91]
  340.  
  341. ----------------------------------------------------------------------
  342. Subject: 134)  How do I fork without hanging my parent X program?
  343.  
  344.     An X-based application which spawns off other Unix processes which 
  345. continue to run after it is closed typically does not vanish until all of its 
  346. children are terminated; the children inherit from the parent the open X 
  347. connection to the display. 
  348.     What you need to do is fork; then, immediately, in the child process, 
  349.         close (ConnectionNumber(XtDisplay(widget)));
  350. to close the file-descriptor in the display information. After this do your 
  351. exec. You will then be able to exit the parent.
  352.     Alternatively, before exec'ing make this call, which causes the file 
  353. descriptor to be closed on exec.
  354.         (void) fcntl(ConnectionNumber(XDisplay), F_SETFD, 1);
  355.  
  356. [Thanks to Janet Anstett (anstettj@tramp.Colorado.EDU), Gordon Freedman 
  357. (gjf00@duts.ccc.amdahl.com); 2/91. Greg Holmberg (holmberg@frame.com), 3/93.]
  358.  
  359. ----------------------------------------------------------------------
  360. Subject: 135)! Can I make Xt or Xlib calls from a signal handler?
  361.  
  362.     No. Xlib and Xt have no mutual exclusion for protecting critical 
  363. sections. If your signal handler makes such a call at the wrong time (which 
  364. might be while the function you are calling is already executing), it can leave
  365. the library in an inconsistent state. Note that the ANSI C standard points
  366. out that behavior of a signal handler is undefined if the signal handler calls
  367. any function other than signal() itself, so this is not a problem specific to
  368. Xlib and Xt; the POSIX specification mentions other functions which may be
  369. called safely but it may not be assumed that these functions are called by 
  370. Xlib or Xt functions.
  371.     You can work around the problem by setting a flag in the interrupt
  372. handler and later checking it with a work procedure or a timer event which
  373. has previously been added.
  374.     R6 Xt will have support for signal handlers; there will be a
  375. mechanism to set a flag in a signal handler and XtAppNextEvent will notice
  376. that the flag has been set, and call the associated callbacks.
  377.  
  378.     Note: the article in The X Journal 1:4 and the example in O'Reilly 
  379. Volume 6 are in error.
  380.  
  381. [Thanks to Pete Ware (ware@cis.ohio-state.edu) and Donna Converse 
  382. (converse@x.org), 5/92]
  383.  
  384. ----------------------------------------------------------------------
  385. Subject: 136)  What are these "Xlib sequence lost" errors?
  386.  
  387.     You may see these errors if you issue Xlib requests from an Xlib error 
  388. handler, or, more likely, if you make calls which generate X requests to Xt or 
  389. Xlib from a signal handler, which you shouldn't be doing in any case. 
  390.  
  391. ----------------------------------------------------------------------
  392. Subject: 137)  How can my Xt program handle socket, pipe, or file input?
  393.  
  394.     It's very common to need to write an Xt program that can accept input 
  395. both from a user via the X connection and from some other file descriptor, but 
  396. which operates efficiently and without blocking on either the X connection or 
  397. the other file descriptor.
  398.     A solution is use XtAppAddInput(). After you open your file descriptor,
  399. use XtAppAddInput() to register an input handler. The input handler will be 
  400. called every time there is something on the file descriptor requiring your 
  401. program's attention. Write the input handler like you would any other Xt 
  402. callback, so it does its work quickly and returns.  It is important to use only
  403. non-blocking I/O system calls in your input handlers.
  404.     Most input handlers read the file descriptor, although you can have an 
  405. input handler write or handle exception conditions if you wish.
  406.     Be careful when you register an input handler to read from a disk file.
  407. You will find that the function is called even when there isn't input pending.
  408. XtAppAddInput() is actually working as it is supposed to. The input handler is 
  409. called whenever the file descriptor is READY to be read, not only when there is
  410. new data to be read. A disk file (unlike a pipe or socket) is almost always 
  411. ready to be read, however, if only because you can spin back to the beginning
  412. and read data you've read before.  The result is that your function will almost
  413. always be called every time around XtAppMainLoop(). There is a way to get the 
  414. type of interaction you are expecting; add this line to the beginning of your 
  415. function to test whether there is new data:
  416.          if (ioctl(fd, FIONREAD, &n) == -1 || n == 0) return;
  417. But, because this is called frequently, your application is effectively in a 
  418. busy-wait; you may be better off not using XtAppAddInput() and instead setting 
  419. a timer and in the timer procedure checking the file for input.
  420.  
  421. [courtesy Dan Heller (argv@ora.com), 8/90; mouse@larry.mcrcim.mcgill.edu 5/91;
  422. Ollie Jones (oj@pictel.com) 6/92]
  423.  
  424. ----------------------------------------------------------------------
  425. Subject: 138)  How do I simulate a button press/release event for a widget?
  426.  
  427.     You can do this using XSendEvent(); it's likely that you're not setting
  428. the window field in the event, which Xt needs in order to match to the widget
  429. which should receive the event.
  430.      If you're sending events to your own application, then you can use 
  431. XtDispatchEvent() instead. This is more efficient than XSendEvent() in that you
  432. avoid a round-trip to the server.
  433.     Depending on how well the widget was written, you may be able to call
  434. its action procedures in order to get the effects you want.
  435.  
  436. [courtesy Mark A. Horstman (mh2620@sarek.sbc.com), 11/90]
  437.  
  438. ----------------------------------------------------------------------
  439. Subject: 139)  Why doesn't anything appear when I run this simple program?
  440.  
  441. > ...
  442. > the_window = XCreateSimpleWindow(the_display,
  443. >      root_window,size_hints.x,size_hints.y,
  444. >      size_hints.width,size_hints.height,BORDER_WIDTH,
  445. >      BlackPixel(the_display,the_screen),
  446. >      WhitePixel(the_display,the_screen));
  447. > ...
  448. > XSelectInput(the_display,the_window,ExposureMask|ButtonPressMask|
  449. >     ButtonReleaseMask);
  450. > XMapWindow(the_display,the_window);
  451. > ...
  452. > XDrawLine(the_display,the_window,the_GC,5,5,100,100);
  453. > ...
  454.  
  455.     You are right to map the window before drawing into it. However, the 
  456. window is not ready to be drawn into until it actually appears on the screen --
  457. until your application receives an Expose event. Drawing done before that will 
  458. generally not appear. You'll see code like this in many programs; this code 
  459. would appear after window was created and mapped:
  460.   while (!done)
  461.     {
  462.       XNextEvent(the_display,&the_event);
  463.       switch (the_event.type) {
  464.     case Expose:     /* On expose events, redraw */
  465.         XDrawLine(the_display,the_window,the_GC,5,5,100,100);
  466.         break;
  467.     ...
  468.     }
  469.     }
  470.  
  471.     Note that there is a second problem: some Xlib implementations don't 
  472. set up the default graphics context to have correct foreground/background 
  473. colors, so this program could previously include this code:
  474.   ...
  475.   the_GC_values.foreground=BlackPixel(the_display,the_screen);    /* e.g. */
  476.   the_GC_values.background=WhitePixel(the_display,the_screen);    /* e.g. */
  477.   the_GC = XCreateGC(the_display,the_window,
  478.                 GCForeground|GCBackground,&the_GC_values);
  479.   ...
  480.  
  481. Note: the code uses BlackPixel and WhitePixel to avoid assuming that 1 is 
  482. black and 0 is white or vice-versa.  The relationship between pixels 0 and 1 
  483. and the colors black and white is implementation-dependent.  They may be 
  484. reversed, or they may not even correspond to black and white at all.
  485.  
  486. Also note that actually using BlackPixel and WhitePixel is usually the wrong 
  487. thing to do in a finished program, as it ignores the user's preference for 
  488. foreground and background.
  489.  
  490. And also note that you can run into the same situation in an Xt-based program
  491. if you draw into the XtWindow(w) right after it has been realized; it may
  492. not yet have appeared.
  493.  
  494. ----------------------------------------------------------------------
  495. Subject: 140)+ Why do I get a BadWindow error manipulating Xt objects (sic)?
  496.  
  497.     If you are using the XtWindow() of an object in Xlib calls which use
  498. a Drawable, then you will get a BadWindow protocol error if the object has
  499. not been realized; it is only after a call to XtRealizeWidget() on the object
  500. or its ancestor that it has a window. If your program is using the default
  501. visual then you may be able to use the default root window in the call
  502. instead.
  503.  
  504. ----------------------------------------------------------------------
  505. Subject: 141)  What is the difference between a Screen and a screen?
  506.  
  507.     The 'Screen' is an Xlib structure which includes the information about
  508. one of the monitors or virtual monitors which a single X display supports. A 
  509. server can support several independent screens. They are numbered unix:0.0,
  510. unix:0.1, unix:0.2, etc; the 'screen' or 'screen_number' is the second digit --
  511. the 0, 1, 2 which can be thought of as an index into the array of available 
  512. Screens on this particular Display connection.
  513.     The macros which you can use to obtain information about the particular
  514. Screen on which your application is running typically have two forms -- one
  515. which takes a Screen and one with takes both the Display and the screen_number.
  516.     In Xt-based programs, you typically use XtScreen(widget) to determine 
  517. the Screen on which your application is running, if it uses a single screen.
  518.     (Part of the confusion may arise from the fact that some of the macros
  519. which return characteristics of the Screen have "Display" in the names -- 
  520. XDisplayWidth, XDisplayHeight, etc.)
  521.     
  522. ----------------------------------------------------------------------
  523. Subject: 142)  Can I use C++ with X11? Motif? XView?
  524.     
  525.     The X11R4/5 header files are compatible with C++. The Motif 1.1 header 
  526. files are usable as is inside extern "C" {...}. However, the definition of
  527. String in Intrinsic.h can conflict with the libg++ or other String class and
  528. needs to be worked around.
  529.  
  530.     Some other projects which can help:
  531.     WWL, a set of C++ classes by Jean-Daniel Fekete to wrap X Toolkit 
  532. widgets, available via anonymous FTP from ftp.x.org as contrib/WWL-1.2.tar.Z 
  533. [7/92] or lri.lri.fr (129.175.15.1) as pub/WWL-1.2.tar.Z.  It works by 
  534. building a set of C++ classes in parallel to the class tree of the widgets.
  535.     The C++ InterViews toolkit is obtainable via anonymous FTP from 
  536. interviews.stanford.edu. InterViews uses a box/glue model similar to that of 
  537. TeX for constructing user interfaces and supports multiple looks on the user 
  538. interfaces. Some of its sample applications include a WYSIWIG document editor 
  539. (doc), a MacDraw-like drawing program (idraw) and an interface builder 
  540. (ibuild).
  541.     THINGS,  a class library written at the Rome Air Force Base by the 
  542. Strategic Air Command, available as freeware on archive sites.
  543.  
  544.     Motif++ is a public-domain library that defines C++ class wrappers for
  545. Motif 1.1; it adds an "application" class for, e.g., initializing X, and also
  546. integrates WCL and the Xbae widget set. This work was developed by Ronald van 
  547. Loon <rvloon@cv.ruu.nl> based on X++, a set of bindings done by the University 
  548. of Lowell Graphics Research Laboratory. The current sources are available from 
  549. decuac.dec.com (192.5.214.1) in /pub/X11/.
  550.  
  551.     Xm++ is a user interface framework for C++ using the Motif and Athena
  552. toolkits.  Source is on ftp.x.org as contrib/Xm++.0.52.tar.Z; or email to 
  553. xmplus@ani.univie.ac.at.
  554.     
  555.     The source code examples for Doug Young's "Object-Oriented Programming 
  556. with C++ and OSF/Motif" [ISBN 0-13-630252-1] do not include "widget wrappers" 
  557. but do include a set of classes that encapsulates higher-level facilities 
  558. commonly needed by Motif- or other Xt-based applications; check ftp.x.org in
  559. ~ftp/contrib/young.c++.tar.Z.
  560.     Rogue Wave offers "View.h++" for C++ programmers using Motif; info:
  561. 1-800-487-3217 or +1 503 754 2311.
  562.     A product called "Commonview" by Glockenspiel Ltd, Ireland (??) 
  563. apparently is a C++-based toolkit for multiple window systems, including PM,
  564. Windows, and X/Motif.
  565.     Xv++ is sold by Qualix (415-572-0200; fax -1300); it implements an 
  566. interface from the GIL files that Sun's OpenWindows Developers Guide 3.0 
  567. produces to Xview wrapper classes in C++.
  568.  
  569.     UIT is a set of C++ classes embedding the XView toolkit; it is intended
  570. for use with Sun's OpenWindows Developers Guide 3.0 builder tool. Sources are 
  571. on ftp.x.org as UIT.tar.Z. Version 2 was released 5/28/92.
  572.     
  573.     Also of likely use is ObjectCenter (Saber-C++). And a reasonable
  574. alternative to all of the above is ParcPlace's (formerly Solbourne's) Object 
  575. Interface.
  576.  
  577. [Thanks to Douglas S. Rand (dsrand@mitre.org) and George Wu (gwu@tcs.com);2/91]
  578.  
  579. ----------------------------------------------------------------------
  580. Subject: 143)! Where can I obtain alternate language bindings to X/Xt/Motif?
  581.  
  582.     Versions of the CLX Lisp bindings are part of the X11 core source 
  583. distributions. A version of CLX is on the R5 tape [10/91]; version 5.0.2 [9/92]
  584. is on ftp.x.org in /contrib/CLX.R5.02.tar.Z.
  585.  
  586.     The SAIC Ada-X11 bindings are through anonymous ftp in /pub from
  587. stars.rosslyn.unisys.com (128.126.164.2) [perhaps
  588. falcon.stars.ballston.paramax.com (129.204.6.253)?]
  589.     There is an X/Ada study team sponsored by NASA JSC, which apparently is
  590. working out bindings. Information: xada@ghg.hou.tx.us.
  591.     GNU SmallTalk has a beta native SmallTalk binding to X called STIX (by
  592. Steven.Byrne@Eng.Sun.COM). It is still in its beginning stages, and 
  593. documentation is sparse outside the SmallTalk code itself. The sources are 
  594. available as /pub/gnu/smalltalk-1.1.1.tar.Z on prep.ai.mit.edu (18.71.0.38) or 
  595. ugle.unit.no (129.241.1.97).
  596.     Prolog bindings (called "XWIP") written by Ted Kim at UCLA while
  597. supported in part by DARPA are available by anonymous FTP from
  598. ftp.x.org:contrib/xwip.tar.Z or ftp.cs.ucla.edu:pub/xwip.tar.Z.
  599. These prolog language bindings depend on having a Quintus-type foreign function
  600. interface in your prolog. The developer has gotten it to work with Quintus and 
  601. SICStus prolog. Inquiries should go to xwip@cs.ucla.edu. [3/90]
  602.     Scheme bindings to Xlib, OSF/Motif, and Xaw are part of the Elk
  603. distribution; version 1.5a on ftp.x.org obsoletes the version on the R5 contrib
  604. tape. 
  605.     x-scm, a bolt-on accessory for Aubrey Jaffer's "scm" Scheme interpreter
  606. that provides an interface to Xlib, Motif, and OpenLook, is now available via 
  607. FTP from altdorf.ai.mit.edu:archive/scm/xscm1.05.tar.Z and 
  608. nexus.yorku.ca:pub/scheme/new/xscm1.05.tar.Z.
  609.  
  610.     Poplog V14.2 is offered by Integral Solutions Ltd. (Phone +44 (0)256
  611. 882028; Fax +44 (0)256 882182; Email isl@integ.uucp); it is an integrated
  612. programming environment consisting of the programming languages Pop-11,
  613. Prolog, Standard ML, and Lisp which are compiled to machine code via a common
  614. virtual machine. Pop-11 provides an interface to the X Toolkit which can be
  615. accessed from all other Poplog languages. The OLIT, Motif, and Athena widget
  616. sets are supported, in addition to the custom Poplog (Xpw) widget set.
  617. High-level Pop-11 libraries allow graph drawing, turtle graphics, and the
  618. simple creation of basic button/menu based interfaces.
  619.  
  620.     Ada bindings to Motif, explicitly, will eventually be made available by
  621. the Jet Propulsion Laboratories, probably through the normal electronic
  622. means.  Advance information can be obtained from dsouleles@dsfvax.jpl.nasa.gov,
  623. who may respond as time permits.
  624.     AdaMotif is a complete binding to X and Motif for the Ada language, for
  625. many common systems; it is based in part upon the SAIC/Unisys bindings and also
  626. includes a UIL to Ada translator. Info: Systems Engineering Research 
  627. Corporation, 1-800-Ada-SERC (well!serc@apple.com).
  628.  
  629.     TCL bindings for Motif by Jan Newmarch (jan@pandonia.canberra.edu.au)
  630. are available from csc.canberra.edu.au and ftp.x.org.
  631.  
  632.     Also: the MIT Consortium, although not involved in producing Ada
  633. bindings for X, maintains a partial listing of people involved in X and Ada;
  634. information is available from Donna Converse, converse@x.org.
  635.  
  636. ----------------------------------------------------------------------
  637. Subject: 144)  Can XGetWindowAttributes get a window's background pixel/pixmap?
  638.  
  639.     No.  Once set, the background pixel or pixmap of a window cannot be 
  640. re-read by clients.  The reason for this is that a client can create a pixmap,
  641. set it to be the background pixmap of a window, and then free the pixmap. The 
  642. window keeps this background, but the pixmap itself is destroyed.  If you're 
  643. sure a window has a background pixel (not a pixmap), you can use XClearArea() 
  644. to clear a region to the background color and then use XGetImage() to read 
  645. back that pixel.  However, this action alters the contents of the window, and 
  646. it suffers from race conditions with exposures. [courtesy Dave Lemke of NCD 
  647. and Stuart Marks of Sun]
  648.  
  649.     Note that the same applies to the border pixel/pixmap. This is a 
  650. (mis)feature of the protocol which allows the server is free to manipulate the
  651. pixel/pixmap however it wants.  By not requiring the server to keep the 
  652. original pixel or pixmap, some (potentially a lot of) space can be saved. 
  653. [courtesy Jim Fulton, then of X Consortium]
  654.  
  655. ----------------------------------------------------------------------
  656. Subject: 145)  How do I create a transparent window?
  657.     
  658.     A completely transparent window is easy to get -- use an InputOnly
  659. window. In order to create a window which is *mostly* transparent, you have
  660. several choices:
  661.     - the SHAPE extension first released with X11R4 offers an easy way to
  662. make non-rectangular windows, so you can set the shape of the window to fit the
  663. areas where the window should be nontransparent; however, not all servers 
  664. support the extension.
  665.     - a machine-specific method of implementing transparent windows for
  666. particular servers is to use an overlay plane supported by the hardware.  Note 
  667. that there is no X notion of a "transparent color index".
  668.     - a generally portable solution is to use a large number of tiny 
  669. windows, but this makes operating on the application as a unit difficult.
  670.     - a final answer is to consider whether you really need a transparent
  671. window or if you would be satisfied with being able to overlay your application
  672. window with information; if so, you can draw into separate bitplanes in colors
  673. that will appear properly.
  674.  
  675. [thanks to der Mouse, mouse@lightning.McRCIM.McGill.EDU, 3/92; see also
  676. The X Journal 1:4 for a more complete answer, including code samples for this
  677. last option]
  678.  
  679. ----------------------------------------------------------------------
  680. Subject: 146)  Why doesn't GXxor produce mathematically-correct color values?
  681.  
  682.     When using GXxor you may expect that drawing with a value of black on a
  683. background of black, for example, should produce white. However, the drawing
  684. operation does not work on RGB values but on colormap indices. The color that
  685. the resulting colormap index actually points to is undefined and visually
  686. random unless you have actually filled it in yourself. [On many X servers Black
  687. and White often 0/1 or 1/0; programs taking advantage of this mathematical
  688. coincidence will break.]
  689.     If you want to be combining colors with GXxor, then you should be 
  690. allocating a number of your own color cells and filling them with your chosen
  691. pre-computed values.
  692.     If you want to use GXxor simply to switch between two colors, then you 
  693. can take the shortcut of setting the background color in the GC (graphics 
  694. context) to 0 and the foreground color to a value such that when it draws over 
  695. red, say, the result is blue, and when it draws over blue the result is red. 
  696. This foreground value is itself the XOR of the colormap indices of red and 
  697. blue.
  698.  
  699. [Thanks to Chris Flatters (cflatter@zia.aoc.nrao.EDU) and Ken Whaley 
  700. (whaley@spectre.pa.dec.com), 2/91]
  701.  
  702. ----------------------------------------------------------------------
  703. Subject: 147)  Why does every color I allocate show up as black?
  704.  
  705.     Make sure you're using 16 bits and not 8.  The red, green, and blue 
  706. fields of an XColor structure are scaled so that 0 is nothing and 65535 is 
  707. full-blast. If you forget to scale (using, for example, 0-255 for each color) 
  708. the XAllocColor function will perform correctly but the resulting color is 
  709. usually black. 
  710.  
  711. [Thanks to Paul Asente, asente@adobe.com, 7/91]
  712.  
  713. ----------------------------------------------------------------------
  714. Subject: 148)+ Why do I get a protocol error when creating a cursor (sic)?
  715.  
  716.     You may have had this code working on a monochrome system by
  717. coincidence.  Cursor pixmaps must always have a depth of 1; when you create
  718. the cursor pixmap use the depth of 1 rather than the default depth of the
  719. screen.
  720.  
  721. ----------------------------------------------------------------------
  722. Subject: 149)  Why can't my program get a standard colormap?
  723. I have an image-processing program which uses XGetRGBColormap() to get the 
  724. standard colormap, but it doesn't work. 
  725.  
  726.     XGetRGBColormap() when used with the property XA_RGB_DEFAULT_MAP does 
  727. not create a standard colormap -- it just returns one if one already exists.
  728. Use xstdcmap or do what it does in order to create the standard colormap first.
  729.  
  730. [1/91; from der Mouse (mouse@larry.mcrcim.mcgill.edu)]
  731.  
  732. ----------------------------------------------------------------------
  733. Subject: 150)  Why does the pixmap I copy to the screen show up as garbage? 
  734.  
  735.     The initial contents of pixmaps are undefined.  This means that most
  736. servers will allocate the memory and leave around whatever happens to be there 
  737. -- which is usually garbage.  You probably want to clear the pixmap first using
  738. XFillRectangle() with a function of GXcopy and a foreground pixel of whatever 
  739. color you want as your background (or 0L if you are using the pixmap as a 
  740. mask). [courtesy Dave Lemke of NCD and Stuart Marks of Sun]
  741.  
  742. ----------------------------------------------------------------------
  743. Subject: 151)  How do I check whether a window ID is valid?
  744. My program has the ID of a window on a remote display. I want to check whether
  745. the window exists before doing anything with it.
  746.  
  747.     Because X is asynchronous, there isn't a guarantee that the window 
  748. would still exist between the time that you got the ID and the time you sent an
  749. event to the window or otherwise manipulated it. What you should do is send the
  750. event without checking, but install an error handler to catch any BadWindow 
  751. errors, which would indicate that the window no longer exists. This scheme will
  752. work except on the [rare] occasion that the original window has been destroyed 
  753. and its ID reallocated to another window.
  754.  
  755. [courtesy Ken Lee (klee@synoptics.com), 4/90]
  756.  
  757. ----------------------------------------------------------------------
  758. Subject: 152)! Can I have two applications draw to the same window?
  759.  
  760.     Yes. The X server assigns IDs to windows and other resources (actually,
  761. the server assigns some bits, the client others), and any application that 
  762. knows the ID can manipulate the resource [almost any X server resource, except
  763. for GCs and private color cells, can be shared].
  764.     The problem you face is how to disseminate the window ID to multiple 
  765. applications. A simple way to handle this (and which solves the problem of the
  766. applications' running on different machines) is in the first application to 
  767. create a specially-named property on the root-window and put the window ID into
  768. it. The second application then retrieves the property, whose name it also
  769. knows, and then can draw whatever it wants into the window.
  770.     [Note: this scheme works iff there is only one instance of the first
  771. application running, and the scheme is subject to the limitations mentioned
  772. in the Question about using window IDs on remote displays.]
  773.     Note also that you will still need to coordinate any higher-level 
  774. cooperation among your applications. 
  775.     Note also that two processes can share a window but should not try to 
  776. use the same server connection. If one process is a child of the other, it 
  777. should close down the connection to the server and open its own connection.
  778.     Note also that Display IDs and GC values describe addresses local
  779. to an application and cannot be transmitted to another application.
  780.     Note also that several clients may draw to a window but for particular
  781. X events such as button-presses only one client can receive the event.
  782.  
  783. [mostly courtesy Phil Karlton (karlton@wpd.sgi.com) 6/90]
  784.  
  785. ----------------------------------------------------------------------
  786. Subject: 153)  Why can't my program work with tvtwm or swm?
  787.  
  788.     A number of applications, including xwd, xwininfo, and xsetroot, do not
  789. handle the virtual root window which tvtwm and swm use; they typically return 
  790. the wrong child of root. A general solution is to add this code or to use it in
  791. your own application where you would normally use RootWindow(dpy,screen):
  792.  
  793. /* Function Name: GetVRoot
  794.  * Description: Gets the root window, even if it's a virtual root
  795.  * Arguments: the display and the screen
  796.  * Returns: the root window for the client
  797.  */
  798. #include <X11/Xatom.h>
  799. Window GetVRoot(dpy, scr)
  800. Display        *dpy;
  801. int             scr;
  802. {
  803. Window          rootReturn, parentReturn, *children;
  804. unsigned int    numChildren;
  805. Window          root = RootWindow(dpy, scr);
  806. Atom            __SWM_VROOT = None;
  807. int             i;
  808.  
  809.   __SWM_VROOT = XInternAtom(dpy, "__SWM_VROOT", False);
  810.   XQueryTree(dpy, root, &rootReturn, &parentReturn, &children, &numChildren);
  811.   for (i = 0; i < numChildren; i++) {
  812.     Atom            actual_type;
  813.     int             actual_format;
  814.     long            nitems, bytesafter;
  815.     Window         *newRoot = NULL;
  816.  
  817.     if (XGetWindowProperty(dpy, children[i], __SWM_VROOT, 0, 1,
  818.         False, XA_WINDOW, &actual_type, &actual_format, &nitems,
  819.             &bytesafter, (unsigned char **) &newRoot) == Success && newRoot) {
  820.             root = *newRoot;
  821.             break;
  822.         }
  823.     }
  824.  
  825.     return root;
  826. }
  827.  
  828. [courtesy David Elliott (dce@smsc.sony.com). Similar code is in ssetroot, a
  829. version of xsetroot distributed with tvtwm. 2/91]
  830.  
  831. A header file by Andreas Stolcke of ICSI on ftp.x.org:contrib/vroot.h 
  832. functions similarly by providing macros for RootWindow and DefaultRootWindow;
  833. code can include this header file first to run properly in the presence of a
  834. virtual desktop.
  835.  
  836. (Note the possible race condition.)
  837.     
  838. ----------------------------------------------------------------------
  839. Subject: 154)  How do I keep a window from being resized by the user?
  840.  
  841.     Resizing the window is done through the window manager; window managers
  842. can pay attention to the size hints your application places on the window, but 
  843. there is no guarantee that the window manager will listen. You can try setting 
  844. the minimum and maximum size hints to your target size and hope for the best. 
  845. [1/91]
  846.  
  847. ----------------------------------------------------------------------
  848. Subject: 155)  How do I keep a window in the foreground at all times?
  849.  
  850.     It's rather antisocial for an application to constantly raise itself
  851. [e.g. by tracking VisibilityNotify events] so that it isn't overlapped -- 
  852. imagine the conflict between two such programs running.  
  853.     The only sure way to have your window appear on the top of the stack
  854. is to make the window override-redirect; this means that you are temporarily
  855. assuming window-management duties while the window is up, so you want to do 
  856. this infrequently and then only for short periods of time (e.g. for popup 
  857. menus or other short parameter-setting windows).
  858.  
  859. [thanks to der Mouse (mouse@larry.mcrcim.mcgill.edu); 7/92]
  860.  
  861. ----------------------------------------------------------------------
  862. Subject: 156)  How do I make text and bitmaps blink in X?
  863.  
  864.     There is no easy way.  Unless you're willing to depend on some sort of
  865. extension (as yet non-existent), you have to arrange for the blinking yourself,
  866. either by redrawing the contents periodically or, if possible, by playing games
  867. with the colormap and changing the color of the contents.
  868.  
  869. [Thanks to mouse@larry.mcrcim.mcgill.edu (der Mouse), 7/91]
  870.  
  871. ----------------------------------------------------------------------
  872. Subject: 157)  How do I get a double-click in Xlib?
  873.  
  874.     Users of Xt have the support of the translation manager to help 
  875. get notification of double-clicking.
  876.     There is no good way to get only a double-click in Xlib, because the 
  877. protocol does not provide enough support to do double-clicks.  You have to do 
  878. client-side timeouts, unless the single-click action is such that you can defer
  879. actually taking it until you next see an event from the server.  Thus, you 
  880. have to do timeouts, which means system-dependent code.  On most UNIXish 
  881. implementations, you can use XConnectionNumber to get the file descriptor of 
  882. the X connection and then use select() or something similar on that.
  883.     Note that many user-interface references suggest that a double-click
  884. be used to extend the action indicated by a single-click; if this is the case
  885. in your interface then you can execute the first action and as a compromise
  886. check the timestamp on the second event to determine whether it, too, should
  887. be the single-click action or the double-click action.
  888.  
  889. [Thanks to mouse@larry.mcrcim.mcgill.edu (der Mouse), 4/93]
  890.  
  891. ----------------------------------------------------------------------
  892. Subject: 158)  How do I render rotated text?
  893.     
  894.     Xlib intentionally does not provide such sophisticated graphics 
  895. capabilities, leaving them up to server-extensions or clients-side graphics
  896. libraries.
  897.     Your only choice, if you want to stay within the core X protocol, is to
  898. render the text into a pixmap, read it back via XGetImage(), rotate it "by 
  899. hand" with whatever matrices you want, and put it back to the server via 
  900. XPutImage(); more specifically:
  901.     1) create a bitmap B and write your text to it.
  902.     2) create an XYBitmap image I from B (via XGetImage).
  903.     3) create an XYBitmap Image I2 big enough to handle the transformation.
  904.     4) for each x,y in I2, I2(x,y) = I(a,b) where 
  905.         a = x * cos(theta) - y * sin(theta)
  906.         b = x * sin(theta) + y * cos(theta)
  907.     5) render I2
  908.     Note that you should be careful how you implement this not to lose
  909. bits; an algorithm based on shear transformations may in fact be better.
  910.     The high-level server-extensions and graphics packages available for X 
  911. also permit rendering of rotated text: Display PostScript, PEX, PHiGS, and GKS,
  912. although most are not capable of arbitrary rotation and probably do not use the
  913. same fonts that would be found on a printer.
  914.     In addition, if you have enough access to the server to install a font
  915. on it, you can create a font which consists of letters rotated at some
  916. predefined angle. Your application can then itself figure out placement of each
  917. glyph.
  918.  
  919. [courtesy der Mouse (mouse@larry.mcrcim.mcgill.edu), Eric Taylor 
  920. (etaylor@wilkins.bmc.tmc.edu), and Ken Lee (klee@synoptics.com), 11/90;
  921. Liam Quin (lee@sq.com), 12/90]
  922.  
  923.     InterViews (C++ UI toolkit, in the X contrib software) has support for
  924. rendering rotated fonts in X.  It could be one source of example code.
  925. [Brian R. Smith (brsmith@cs.umn.edu), 3/91]
  926.     Another possibility is to use the Hershey Fonts; they are 
  927. stroke-rendered and can be used by X by converting them into XDrawLine 
  928. requests. [eric@pencom.com, 10/91]
  929.  
  930.     The xrotfont program by Alan Richardson (mppa3@syma.sussex.ac.uk) 
  931. (posted to comp.sources.x July 14 1992) paints a rotated font by implementing 
  932. the method above and by using an outline (Hershey) font.
  933.     The xvertext package by Alan Richardson (mppa3@syma.sussex.ac.uk) is a 
  934. set of functions to facilitate the writing of text at any angle.  It is on 
  935. ftp.x.org as contrib/xvertext.5.0.shar.Z. 
  936.  
  937.     O'Reilly's X Resource Volume 3 includes information from HP about
  938. modifications to the X fonts server which provide for rotated and scaled text.
  939.  
  940. ----------------------------------------------------------------------
  941. Subject: 159)  Why doesn't my multi-threaded X program work (sic) ? 
  942.  
  943. You cannot use non-thread aware, non-reentrant libraries with threads.
  944.  
  945. If you must do this, you have only one choice: call the functions from the
  946. initial thread only.
  947.  
  948. Why opening windows from other threads causes protocol errors can be
  949. explained easily: you are accessing shared resources (the display
  950. structure, the connection to the display, static data in the Xlib) from
  951. a number of threads at the same time, without using any form of
  952. exclusive access control.
  953.  
  954. [Thanks to casper@fwi.uva.nl(Casper H.S. Dik)]
  955.  
  956. ----------------------------------------------------------------------
  957. Subject: 160)  What is the X Registry? (How do I reserve names?)
  958.  
  959.     There are places in the X Toolkit, in applications, and in the X
  960. protocol that define and use string names. The context is such that conflicts
  961. are possible if different components use the same name for different things.
  962.     The X Consortium maintains a registry of names in these domains:
  963. orgainization names, selection names, selection targets, resource types,
  964. application classes, and class extension record types; and several others.
  965.     The list as of 7/91 is in the directory mit/doc/Registry on the R5 
  966. tape; it is also available by sending "send docs registry" to the xstuff mail
  967. server.
  968.     To register names (first come, first served) or to ask questions send 
  969. to xregistry@x.org; be sure to include a postal address for confirmation.
  970.  
  971. [11/90; condensed from Asente/Swick Appendix H]
  972. ----------------------------------------------------------------------
  973.  
  974.  
  975. David B. Lewis                     faq%craft@uunet.uu.net
  976.  
  977.         "Just the FAQs, ma'am." -- Joe Friday 
  978. -- 
  979. David B. Lewis        Temporarily at but not speaking for Visual, Inc.
  980. day: dbl@visual.com    evening: david%craft@uunet.uu.net
  981.