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 / PrimitiveB.C < prev    next >
C/C++ Source or Header  |  1998-11-23  |  4KB  |  182 lines

  1. // $Id: PrimitiveB.C,v 1.12 1998/11/23 17:43:32 zeller Exp $
  2. // Primitive 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 PrimitiveBox_rcsid[] = 
  30.     "$Id: PrimitiveB.C,v 1.12 1998/11/23 17:43:32 zeller Exp $";
  31.  
  32. #ifdef __GNUG__
  33. #pragma implementation
  34. #endif
  35.  
  36.  
  37. #include "PrimitiveB.h"
  38. #include <X11/Xlib.h>
  39. #include <X11/Intrinsic.h>
  40. #include "strclass.h"
  41. #include "printBox.h"
  42.  
  43. DEFINE_TYPE_INFO_1(PrimitiveBox, Box)
  44. DEFINE_TYPE_INFO_1(RuleBox, PrimitiveBox)
  45. DEFINE_TYPE_INFO_1(EmptyBox, PrimitiveBox)
  46. DEFINE_TYPE_INFO_1(FillBox, EmptyBox)
  47. DEFINE_TYPE_INFO_1(SpaceBox, EmptyBox)
  48. DEFINE_TYPE_INFO_1(SquareBox, SpaceBox)
  49.  
  50. // RuleBox
  51.  
  52. // RuleBox anzeigen
  53. void RuleBox::_draw(Widget w, 
  54.             const BoxRegion& r, 
  55.             const BoxRegion&, 
  56.             GC gc,
  57.             bool) const
  58. {
  59.     BoxSize space   = r.space();
  60.     BoxPoint origin = r.origin();
  61.  
  62.     BoxPoint width(extend(X) ? space[X] : size(X),
  63.            extend(Y) ? space[Y] : size(Y));
  64.  
  65.     if (width[Y] == 1)
  66.     {
  67.     // Horizontal line
  68.     XDrawLine(XtDisplay(w), XtWindow(w), gc,
  69.           origin[X], origin[Y], origin[X] + width[X], origin[Y]);
  70.     }
  71.     else if (width[X] == 1)
  72.     {
  73.     // Vertical line
  74.     XDrawLine(XtDisplay(w), XtWindow(w), gc,
  75.           origin[X], origin[Y], origin[X], origin[Y] + width[Y]);
  76.     }
  77.     else
  78.     {
  79.     // Rectangle
  80.     XFillRectangle(XtDisplay(w), XtWindow(w), gc, origin[X], origin[Y],
  81.                width[X], width[Y]);
  82.     }
  83. }
  84.  
  85. void RuleBox::dump(ostream& s) const
  86. {
  87.     s << "rule" << size();
  88. }
  89.  
  90. void RuleBox::_print(ostream& os, 
  91.              const BoxRegion& region, 
  92.              const PrintGC& gc) const
  93. {
  94.     BoxSize space = region.space();
  95.     BoxPoint origin = region.origin();
  96.     BoxPoint width ;
  97.     
  98.     width = BoxPoint ( extend(X) ? space[X] : size(X) ,
  99.                extend(Y) ? space[Y] : size(Y) );
  100.  
  101.     if (width == BoxPoint (0,1) || width == BoxPoint (1,0)) {
  102.     return ;
  103.     }
  104.     if (width[X] && width[X] < 3 && gc.isFig()) {
  105.     // 
  106.     // vertical Line
  107.     //
  108.     
  109.     os << LINEHEAD1 ;
  110.     os << width[X] << LINEHEAD2 ;
  111.     os << origin[X] + width[X]/2 << " " << origin[Y] ;
  112.     os << " " ;
  113.     os << origin[X] + width[X]/2 << " " ;
  114.     os << origin[Y] + width[Y] << " " ;
  115.     os << "9999 9999\n" ;
  116.  
  117.     } else if (width[Y] && width[Y] < 3 && gc.isFig()) {
  118.     //
  119.     // horizontal line
  120.     //
  121.     
  122.     os << LINEHEAD1 ;
  123.     os << width[Y] << LINEHEAD2 ;
  124.     os << origin[X] << " " << origin[Y]+width[Y]/2 ;
  125.     os << " " ;
  126.     os << origin[X] + width[X] << " " ;
  127.     os << origin[Y] + width[Y]/2 << " " ;
  128.     os << "9999 9999\n" ;
  129.     
  130.     } else {
  131.     //
  132.     // filled rectangle
  133.     //
  134.     if (gc.isFig()) {
  135.         os << RULEHEAD ;
  136.         os << origin[X] << " " << origin[Y] << " " ;
  137.         os << origin[X] + width[X] << " " << origin[Y] ;
  138.         os << " " ;
  139.         os << origin[X] + width[X] << " " ;
  140.         os << origin[Y] + width[Y] << " ";
  141.         os << origin[X] << " " << origin[Y] + width[Y] ; 
  142.         os << " " ;
  143.         os << origin[X] << " "<< origin[Y] << " 9999 9999\n" ;
  144.  
  145.     } else if (gc.isPostScript()) {
  146.  
  147.         os << origin[X] << " " << origin[Y] << " " ;
  148.         os << origin[X] + width[X] << " " << origin[Y] ;
  149.         os << " " ;
  150.         os << origin[X] + width[X] << " " ;
  151.         os << origin[Y] + width[Y] << " ";
  152.         os << origin[X] << " " << origin[Y] + width[Y] ; 
  153.         os << " box*" << " %" <<  region << "\n"; ;
  154.     }
  155.     }
  156. }
  157.  
  158.  
  159.  
  160. // FillBox
  161.  
  162. void FillBox::dump(ostream& s) const
  163. {
  164.     s << "fill" << size();
  165. }
  166.  
  167.  
  168. // SpaceBox
  169.  
  170. void SpaceBox::dump(ostream& s) const
  171. {
  172.     s << "space" << size();
  173. }
  174.  
  175.  
  176. // SquareBox
  177.  
  178. void SquareBox::dump(ostream& s) const
  179. {
  180.     s << size(X);
  181. }
  182.