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

  1. // $Id: CompositeB.h,v 1.14 1998/11/23 17:43:20 zeller Exp $
  2. // Composite 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_CompositeBox_h
  30. #define _DDD_CompositeBox_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. // A CompositeBox is a box container.
  37.  
  38.  
  39. #include "assert.h"
  40. #include "Box.h"
  41. #include "Widget.h"
  42.  
  43.  
  44. // CompositeBox
  45.  
  46. class CompositeBox: public Box {
  47. public:
  48.     DECLARE_TYPE_INFO
  49.  
  50. private:
  51.     int _size;              // Maximum number of children
  52.     int _nchildren;         // Actual number of children
  53.     Box **boxes;            // List of children
  54.     void grow();            // Grow the list
  55.  
  56.     CompositeBox& operator = (const CompositeBox&) { assert(0); return *this; }
  57.  
  58. protected:
  59.     // Add box as child
  60.     virtual void addChild(Box *b)
  61.     {
  62.     if (_nchildren >= _size)
  63.         grow();
  64.     boxes[_nchildren++] = b->link();
  65.     }
  66.  
  67.     // Direct child access
  68.     Box *&_child(int nchild)
  69.     {
  70.     assert(nchild >= 0 && nchild < _nchildren);
  71.     return boxes[nchild];
  72.     }
  73.  
  74.     // Direct child access
  75.     const Box *_child(int nchild) const
  76.     {
  77.     assert(nchild >= 0 && nchild < _nchildren);
  78.     return boxes[nchild];
  79.     }
  80.  
  81.     // Copy
  82.     CompositeBox(const CompositeBox& box):
  83.     Box(box), 
  84.     _size(box._size),
  85.     _nchildren(box._nchildren),
  86.     boxes(new Box* [box._size])
  87.     {
  88.     // Copy children
  89.     for (int i = 0; i < _nchildren; i++)
  90.         boxes[i] = box.boxes[i]->dup();
  91.     }
  92.  
  93.     // Dump
  94.     void dumpComposite(ostream& s, 
  95.     char *sep = ", ", char *head = "(", char *tail = ") ") const;
  96.  
  97.     bool matches (const Box &, const Box * = 0) const;
  98.  
  99.     const TagBox *findTag(const BoxPoint&) const;
  100.  
  101.  
  102. public:
  103.     // Konstruktor
  104.     CompositeBox(unsigned initialSize = 2, char *t = "CompositeBox"):
  105.     Box(BoxSize(0, 0), BoxExtend(0, 0), t), 
  106.     _size(initialSize), 
  107.     _nchildren(0),
  108.     boxes(new Box* [initialSize])
  109.     {}
  110.  
  111.     // Destruktor
  112.     ~CompositeBox()
  113.     {
  114.     for (int i = _nchildren - 1; i >= 0; i--)
  115.         boxes[i]->unlink();
  116.  
  117.     delete[] boxes;
  118.     }
  119.  
  120.     // return string
  121.     virtual string str() const;
  122.  
  123.     // Recompute size
  124.     Box *resize();
  125.  
  126.     // propagate font
  127.     void newFont(const string& font);
  128.  
  129.     // Resources
  130.     int nchildren() const { return _nchildren; }
  131.     Box *operator[] (int nchild) { return _child(nchild); }
  132.     const Box *operator[] (int nchild) const { return _child(nchild); }
  133.  
  134.     void countMatchBoxes(int instances[]) const;
  135.  
  136.     bool OK() const;
  137. };
  138.  
  139. #endif // _DDD_CompositeBox_h
  140. // DON'T ADD ANYTHING BEHIND THIS #endif
  141.