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 / StringBox.h < prev    next >
C/C++ Source or Header  |  1998-10-04  |  3KB  |  128 lines

  1. // $Id: StringBox.h,v 1.12 1998/10/04 11:05:17 zeller Exp $
  2. // A String Box contains a string
  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_StringBox_h
  30. #define _DDD_StringBox_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36.  
  37. #include "strclass.h"
  38. #include "Box.h"
  39. #include "PrimitiveB.h"
  40. #include "FontTable.h"
  41.  
  42.  
  43. // StringBox
  44.  
  45. class StringBox: public PrimitiveBox {
  46. public:
  47.     DECLARE_TYPE_INFO
  48.  
  49. private:
  50.     string _string;
  51.     string _fontname;
  52.     XFontStruct *_font;
  53.     BoxCoordinate _ascent;
  54.  
  55.     StringBox& operator = (const StringBox&) { assert(0); return *this; }
  56.  
  57. protected:
  58.     virtual void _draw(Widget w, 
  59.                const BoxRegion& region, 
  60.                const BoxRegion& exposed,
  61.                GC gc, 
  62.                bool context_selected) const;
  63.  
  64.     StringBox(const StringBox& box):
  65.     PrimitiveBox(box), _string(box._string), _fontname(box._fontname),
  66.     _font(box._font), _ascent(box._ascent)
  67.     {}
  68.  
  69.     void dump(ostream& s) const;
  70.  
  71.     bool matches (const Box &b, const Box * = 0) const
  72.     {
  73.     return PrimitiveBox::matches(b) &&
  74.         _string == ((StringBox *)&b)->_string;  // dirty trick
  75.     }
  76.  
  77. public:
  78.     static FontTable* fontTable;    // Font table
  79.     static bool quoted;          // Flag: insert \ before quotes?
  80.  
  81.     // Constructor
  82.     StringBox(const string& s = "", const string& fontname = "fixed",
  83.     char *t = "StringBox"):
  84.     PrimitiveBox(BoxSize(0,0), BoxExtend(false, false), t),
  85.     _string(s), _fontname(fontname), _font(0), _ascent(0)
  86.     {
  87.     newFont(fontname);
  88.     }
  89.  
  90.     StringBox(const string& s, XFontStruct *fnt,
  91.     char *t = "StringBox"):
  92.     PrimitiveBox(BoxSize(0,0), BoxExtend(false, false), t),
  93.     _string(s), _fontname("?"), _font(fnt), _ascent(0)
  94.     {
  95.     resize();
  96.     }
  97.  
  98.     Box *dup() const { return new StringBox(*this); }
  99.  
  100.     void _newFont(XFontStruct *newfont)
  101.     {
  102.     // If this is a new font, resize
  103.     if (newfont != _font)
  104.     {
  105.         _font = newfont;
  106.         resize();
  107.     }
  108.     }
  109.  
  110.     // Assign a new font
  111.     void newFont(const string& fontname);
  112.  
  113.     void _print(ostream& os, 
  114.         const BoxRegion& region, 
  115.         const PrintGC& gc) const;
  116.  
  117.     // Resources
  118.     const XFontStruct *font() const { return _font; }
  119.     const string& fontName() const  { return _fontname; }
  120.     virtual string str() const { return _string; }
  121.  
  122.     Box *resize();
  123.  
  124.     bool isStringBox() const { return true; }
  125. };
  126.  
  127. #endif
  128.