#ifndef ROOT_TQRootDialog
#define ROOT_TQRootDialog
#ifndef __CINT__
#include "qvbox.h"
#include "qlist.h"
#include "qlineedit.h"
#endif
#ifndef ROOT_TObject
#include "TObject.h"
#endif
class TMethod;
class TCanvas;
class QLineEdit;
class QVBox;
class QWidget;
#ifdef __CINT__
class QList<QLineEdit>;
#endif
class TQRootDialog: public QVBox
{
#ifndef __CINT__
   Q_OBJECT
#endif
private:
   TQRootDialog(const TQRootDialog &);
   TQRootDialog& operator=(const TQRootDialog &);
      
public:
   TQRootDialog(QWidget *parent, const char *name, WFlags f=0,
                TObject *obj=0,TMethod *meth=0);
   virtual ~TQRootDialog();
   void Add(const char* argname, const char* value, const char* type);
   void Popup();
   void SetTCanvas(TCanvas* aCanvas){fCurCanvas=aCanvas;}
public slots:
   void   Receive(){ExecuteMethod();} 
   void   ExecuteMethod();
protected:
   void closeEvent( QCloseEvent* ce);
   QVBox *fArgBox;         
   QLineEdit *fLineEdit;   
   TObject *fCurObj;       
   TMethod *fCurMethod;    
   TCanvas* fCurCanvas;    
   QWidget* fParent;       
   QList<QLineEdit> fList; 
      
   ClassDef(TQRootDialog,1)  
};
#endif
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.