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 / DispBox.h < prev    next >
C/C++ Source or Header  |  1998-10-28  |  4KB  |  145 lines

  1. // $Id: DispBox.h,v 1.30 1998/10/28 14:12:44 zeller Exp $
  2. // Display boxes
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Dorothea Luetkehaus <luetke@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_DispBox_h
  30. #define _DDD_DispBox_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. //-----------------------------------------------------------------------------
  37. // Create display boxes via the VSL library
  38. //-----------------------------------------------------------------------------
  39.  
  40. #include "strclass.h"
  41. #include "Box.h"
  42. #include "VSLLib.h"
  43. #include "VSLArgList.h"
  44. #include "DispValue.h"
  45. #include "assert.h"
  46.  
  47. //-----------------------------------------------------------------------------
  48.  
  49. class DispBox {
  50. private:
  51.     Box *mybox;
  52.     Box *title_box;
  53.  
  54. protected:
  55.     DispBox(const DispBox &node)
  56.     : mybox(node.mybox ? node.mybox->dup() : 0),
  57.       title_box(node.title_box ? node.title_box->dup() : 0)
  58.     {}
  59.  
  60. private:
  61.     DispBox& operator = (const DispBox&) { assert(0); return *this; }
  62.  
  63.     static bool is_numeric(const DispValue *dv, const DispValue *parent);
  64.  
  65. public:
  66.     // Must be initialized from outside!
  67.     static string  vsllib_name;
  68.     static string  vsllib_path;
  69.     static string  vsllib_defs;
  70.     static string  vsllib_base_defs;
  71.     static int     max_display_title_length;
  72.     static bool    align_2d_arrays;
  73.  
  74.     // True if the VSL library has been initialized
  75.     static bool    vsllib_initialized;
  76.  
  77.     // Initialize VSL library, using BACKGROUND as work proc
  78.     static void init_vsllib(void (*background)() = 0);
  79.  
  80.     // Create a new box.  If DV == 0, create a disabled box.
  81.     DispBox (int disp_nr, const string& title, 
  82.          const DispValue *dv = 0, const DispValue *parent = 0);
  83.  
  84.     ~DispBox ();
  85.  
  86.     Box *box () const { return mybox; }
  87.  
  88.     DispBox *dup() const { return new DispBox(*this); }
  89.  
  90.     // Set new value to DV.  If DV == 0, make it disabled.
  91.     void set_value (const DispValue *dv, const DispValue *parent = 0);
  92.  
  93.     // Set title to NAME; if NAME == "", disable it
  94.     void set_title(int disp_nr, string name);
  95.  
  96.     bool have_title() const { return title_box != 0; }
  97.  
  98. private:
  99.     Box *create_value_box(const DispValue *dv,
  100.               const DispValue *parent,
  101.               int member_name_width = 0);
  102.  
  103.     Box *_create_value_box(const DispValue *dv,
  104.                const DispValue *parent);
  105.  
  106.     static VSLLib dummylib;
  107.     static VSLLib *vsllib_ptr;
  108.     static VSLLib *vsllib()
  109.     {
  110.     if (!vsllib_initialized)
  111.         init_vsllib();
  112.  
  113.     return vsllib_ptr;
  114.     }
  115.     
  116.  
  117. protected:
  118.     // Evaluation functions
  119.     static Box *check(const string& func_name, const Box *box);
  120.  
  121.     static void shorten_title(string& title);
  122.  
  123. public:
  124.     static Box *eval(const string& func_name, const VSLArgList& args)
  125.     {
  126.     return check(func_name, vsllib()->eval(func_name, args.list()));
  127.     }
  128.     static Box *eval(const string& func_name, VSLArg args[])
  129.     {
  130.     return check(func_name, vsllib()->eval(func_name, args));
  131.     }
  132.     static Box *eval(const string& func_name, 
  133.              VSLArg arg1 = (Box *)0,
  134.              VSLArg arg2 = (Box *)0,
  135.              VSLArg arg3 = (Box *)0,
  136.              VSLArg arg4 = (Box *)0)
  137.     {
  138.     return check(func_name, 
  139.              vsllib()->eval(func_name, arg1, arg2, arg3, arg4));
  140.     }
  141. };
  142.  
  143. #endif // _DDD_DispBox_h
  144. // DON'T ADD ANYTHING BEHIND THIS #endif
  145.