home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / windows / x / motif / 8874 < prev    next >
Encoding:
Text File  |  1993-01-28  |  889 b   |  31 lines

  1. Newsgroups: comp.windows.x.motif
  2. Path: sparky!uunet!stanford.edu!ames!news.dfrf.nasa.gov!fred.dfrf.nasa.gov!todd
  3. From: todd@fred.dfrf.nasa.gov (Todd Vernon)
  4. Subject: Re: Centering X in Manager (yet again)
  5. Message-ID: <1993Jan27.002802.14056@news.dfrf.nasa.gov>
  6. Sender: news@news.dfrf.nasa.gov (Usenet news)
  7. Reply-To: todd@fred.dfrf.nasa.gov (Todd Vernon)
  8. Organization: NASA
  9. References:  <1993Jan18.233458.3534@mercury.unt.edu> <1993Jan19.171849.22571@alex.com>
  10. Date: Wed, 27 Jan 1993 00:28:02 GMT
  11. Lines: 18
  12.  
  13.  
  14. For those really nasty widgets.........(not gadgets)
  15.  
  16. void MTK_get_widget_size(widget, width, height)
  17. Widget widget;
  18. unsigned int *width;
  19. unsigned int *height;
  20. {
  21.         XWindowAttributes wa;
  22.                 
  23.         XGetWindowAttributes(XtDisplay(widget), XtWindow(widget), &wa);
  24.         
  25.         *width  = wa.width;
  26.         *height = wa.height;
  27. }                       
  28.  
  29.  
  30. -todd
  31.