home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / LineBox.C < prev    next >
C/C++ Source or Header  |  1998-11-23  |  2KB  |  74 lines

  1. // $Id: LineBox.C,v 1.8 1998/11/23 15:00:22 zeller Exp $
  2. // Line boxes
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of DDD.
  8. // 
  9. // DDD is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. // 
  14. // DDD is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. // See the GNU General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU General Public
  20. // License along with DDD -- see the file COPYING.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // DDD is the data display debugger.
  25. // For details, see the DDD World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ddd/',
  27. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  28.  
  29. char LineBox_rcsid[] = 
  30.     "$Id: LineBox.C,v 1.8 1998/11/23 15:00:22 zeller Exp $";
  31.  
  32. #ifdef __GNUG__
  33. #pragma implementation
  34. #endif
  35.  
  36.  
  37. #include "LineBox.h"
  38.  
  39. #include <X11/Xlib.h>
  40. #include <X11/Intrinsic.h>
  41.  
  42. DEFINE_TYPE_INFO_1(LineBox, PrimitiveBox)
  43.  
  44. // LineBox
  45.  
  46. // Draw
  47. void LineBox::_draw(Widget w, 
  48.             const BoxRegion& r, 
  49.             const BoxRegion& exposed, 
  50.             GC gc,
  51.             bool context_selected) const
  52. {
  53.     XGCValues gcvalues;
  54.  
  55.     // Set width and cap style; project beyond end point up to 1/2
  56.     // line thickness
  57.     gcvalues.line_width = _linethickness;
  58.     gcvalues.cap_style = CapProjecting;
  59.     XChangeGC(XtDisplay(w), gc, GCLineWidth | GCCapStyle, &gcvalues);
  60.  
  61.     // Keep an empty frame of 1/2 line thickness around R (X may cross
  62.     // R's boundaries otherwise)
  63.     BoxPoint origin = r.origin();
  64.     BoxSize space   = r.space();
  65.     origin += _linethickness / 2;
  66.     space  -= _linethickness;
  67.  
  68.     // Draw children
  69.     __draw(w, BoxRegion(origin, space), exposed, gc, context_selected);
  70.  
  71.     // Attention: We leave LINE_WIDTH and CAP_STYLE changed!
  72.     // (Works within Box::draw(), but the used GC may be changed)
  73. }
  74.