// Author: Roel Aaij 21/07/2007

/*************************************************************************
 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#include "TGTable.h"
#include "TClass.h"
#include "TGWindow.h"
#include "TGResourcePool.h"
#include "Riostream.h"
#include "TSystem.h"
#include "TImage.h"
#include "TEnv.h"
#include "TGToolTip.h"
#include "TGPicture.h"
#include "TRandom3.h"
#include "TGSimpleTableInterface.h"
#include "TGSimpleTable.h"

ClassImp(TGSimpleTable)

//______________________________________________________________________________
/* Begin HTML 
<center><h2>TGSimpleTable</h2></center> 
<br><br> 
To provide a simple class to visualize an array of doubles, the class
TGSimpleTable is provided. TGSimpleTable creates it's own
TGSimpleTableInterface. For more information, see the documentation of
TGTable
<br><br>
The interface is accesible through the GetInterface() method.
End_HtmlEnd_Html
*/

//______________________________________________________________________________
TGSimpleTable::TGSimpleTable(TGWindow *p, Int_t id, Double_t **data, 
                             UInt_t nrows, UInt_t ncolumns) 
   : TGTable(p, id, 0, nrows, ncolumns)
{
   // TGSimpleTable constuctor.

   TGSimpleTableInterface *iface = new TGSimpleTableInterface(data, nrows, 
                                                              ncolumns);
   SetInterface(iface,nrows, ncolumns);
}

//______________________________________________________________________________
TGSimpleTable::~TGSimpleTable()
{
   // TGSimpleTable destructor.

   delete fInterface;
}


Last change: Wed Jun 25 08:42:45 2008
Last generated: 2008-06-25 08:42

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.