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

  1. // $Id: PrimitiveB.h,v 1.11 1998/11/23 17:43:33 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. #ifndef _DDD_PrimitiveBox_h
  30. #define _DDD_PrimitiveBox_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. #include "Box.h"
  37.  
  38. // PrimitiveBox
  39.  
  40. class PrimitiveBox: public Box {
  41. public:
  42.     DECLARE_TYPE_INFO
  43.  
  44. protected:
  45.     PrimitiveBox(const PrimitiveBox& box):
  46.     Box(box)
  47.     {}
  48.  
  49. public:
  50.     PrimitiveBox(BoxSize s = BoxSize(0,0), BoxExtend e = BoxExtend(0, 0),
  51.     char *t = "PrimitiveBox"):
  52.     Box(s, e, t)
  53.     {}
  54. };
  55.  
  56.  
  57. // RuleBox
  58.  
  59. class RuleBox: public PrimitiveBox {
  60. public:
  61.     DECLARE_TYPE_INFO
  62.  
  63. protected:
  64.     virtual void _draw(Widget w, 
  65.                const BoxRegion& region, 
  66.                const BoxRegion& exposed,
  67.                GC gc, 
  68.                bool context_selected) const;
  69.  
  70.     RuleBox(const RuleBox& box):
  71.     PrimitiveBox(box)
  72.     {}
  73.  
  74.     void dump(ostream& s) const;
  75.  
  76. public:
  77.     RuleBox(BoxSize s = BoxSize(0, 0), BoxExtend e = BoxExtend(1, 1),
  78.     char *t = "RuleBox"): 
  79.     PrimitiveBox(s, e, t) 
  80.     {}
  81.  
  82.     Box *dup() const { return new RuleBox(*this); }
  83.     void _print(ostream& os, 
  84.         const BoxRegion& r, 
  85.         const PrintGC& gc) const;
  86. };
  87.  
  88.  
  89. // EmptyBox
  90.  
  91. class EmptyBox: public PrimitiveBox {
  92. public:
  93.     DECLARE_TYPE_INFO
  94.  
  95. protected:
  96.     virtual void _draw(Widget, 
  97.                const BoxRegion&, 
  98.                const BoxRegion&,
  99.                GC, 
  100.                bool) const
  101.     {
  102.     // do nothing
  103.     }
  104.  
  105.     EmptyBox(const EmptyBox& box):
  106.     PrimitiveBox(box)
  107.     {}
  108.  
  109. public:
  110.     void _print(ostream&, 
  111.         const BoxRegion&, 
  112.         const PrintGC&) const
  113.     {
  114.     // do nothing
  115.     }
  116.  
  117.     EmptyBox(BoxSize s = BoxSize(0,0), BoxExtend e = BoxExtend(0, 0),
  118.     char *t = "EmptyBox"):
  119.     PrimitiveBox(s, e, t)
  120.     {}
  121. };
  122.  
  123.  
  124. // FillBox
  125.  
  126. class FillBox: public EmptyBox {
  127. public:
  128.     DECLARE_TYPE_INFO
  129.  
  130. protected:
  131.     FillBox(const FillBox& box):
  132.     EmptyBox(box)
  133.     {}
  134.  
  135.     void dump(ostream& s) const;
  136.  
  137. public:
  138.     FillBox(BoxSize s = BoxSize(0, 0), BoxExtend e = BoxExtend(1, 1)):
  139.     EmptyBox(s, e) 
  140.     {}
  141.  
  142.     Box *dup() const { return new FillBox(*this); }
  143. };
  144.  
  145.  
  146. // SpaceBox
  147.  
  148. class SpaceBox: public EmptyBox {
  149. public:
  150.     DECLARE_TYPE_INFO
  151.  
  152. protected:
  153.     SpaceBox(const SpaceBox& box):
  154.     EmptyBox(box)
  155.     {}
  156.  
  157.     void dump(ostream& s) const;
  158.  
  159. public:
  160.     SpaceBox(BoxSize s = BoxSize(0, 0)):
  161.     EmptyBox(s, BoxExtend(0, 0)) 
  162.     {}
  163.  
  164.     Box *dup() const { return new SpaceBox(*this); }
  165. };
  166.  
  167.  
  168. // SquareBox
  169.  
  170. class SquareBox: public SpaceBox {
  171. public:
  172.     DECLARE_TYPE_INFO
  173.  
  174. protected:
  175.     SquareBox(const SquareBox& box):
  176.     SpaceBox(box)
  177.     {}
  178.  
  179.     void dump(ostream& s) const;
  180.  
  181. public:
  182. #ifdef GCC_OK
  183.     SquareBox(BoxCoordinate s): 
  184.     SpaceBox(BoxSize(s, s)) 
  185.     {}
  186. #else
  187.     // Patch for GCC Version 2.3.3
  188.     SquareBox(BoxCoordinate s)
  189.     {
  190.     thesize() = s;
  191.     }
  192. #endif
  193.  
  194.     Box *dup() const { return new SquareBox(*this); }
  195. };
  196.  
  197. #endif
  198.