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 / BoxGraphN.h < prev    next >
C/C++ Source or Header  |  1998-09-21  |  3KB  |  123 lines

  1. // $Id: BoxGraphN.h,v 1.14 1998/09/21 20:22:57 zeller Exp $
  2. // BoxGraphNode class: RegionGraphNode with box
  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_BoxGraphNode_h
  30. #define _DDD_BoxGraphNode_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36.  
  37. #include "RegionGN.h"
  38. #include "Box.h"
  39. #include "MarkBox.h"
  40.  
  41. class BoxGraphNode: public RegionGraphNode {
  42. public:
  43.     DECLARE_TYPE_INFO
  44.  
  45. private:
  46.     Box *_box;         // the box
  47.     MarkBox *_highlight; // box to be highlighted when selected
  48.  
  49.     BoxGraphNode& operator = (const BoxGraphNode&)
  50.     {
  51.     assert(0); return *this; 
  52.     }
  53.  
  54. protected:
  55.     // Draw
  56.     virtual void forceDraw(Widget w, 
  57.                const BoxRegion& exposed, 
  58.                const GraphGC& gc) const;
  59.  
  60.     // MARK is a MarkBox in SRC.  Find equivalent box in DUP.
  61.     MarkBox *find_mark(Box *dup, Box *src, Box *mark);
  62.  
  63.     // Copy Constructor
  64.     BoxGraphNode(const BoxGraphNode& node);
  65.  
  66. public:
  67.     // Constructor
  68.     BoxGraphNode(Box *b, const BoxPoint& initialPos = BoxPoint(), 
  69.          MarkBox *h = 0)
  70.     : RegionGraphNode(initialPos, b->size()),
  71.       _box(b->link()),
  72.       _highlight(h)
  73.     {}
  74.  
  75.     BoxGraphNode()
  76.     : RegionGraphNode(),
  77.       _box(0),
  78.       _highlight(0)
  79.     {}
  80.  
  81.     GraphNode *dup() const
  82.     {
  83.     return new BoxGraphNode(*this);
  84.     }
  85.  
  86.     // Destructor
  87.     virtual ~BoxGraphNode()
  88.     {
  89.     if (_box)
  90.         _box->unlink();
  91.     }
  92.  
  93.     // Attributes
  94.     Box *box() const           { return _box; }
  95.     MarkBox *highlight() const { return _highlight; }
  96.     virtual string str() const { return box()->str(); }
  97.  
  98.     virtual const BoxRegion& highlightRegion(const GraphGC& gc) const
  99.     { 
  100.     if (_highlight)
  101.         return _highlight->__region();
  102.     else
  103.         return RegionGraphNode::highlightRegion(gc);
  104.     }
  105.  
  106.     // Modify
  107.     // Set the highlight box.
  108.     // The highlight box must be a child of the displayed box.
  109.     void setHighlight(MarkBox *b = 0)
  110.     {
  111.     _highlight = b;
  112.     }
  113.  
  114.     // Set the box.
  115.     void setBox(Box *b);
  116.  
  117.     // Print
  118.     virtual void _print(ostream& os, const GraphGC& gc) const;
  119. };
  120.  
  121. #endif // _DDD_BoxGraphNode_h
  122. // DON'T ADD ANYTHING BEHIND THIS #endif
  123.