00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef TQROOTDIALOG_H
00029 #define TQROOTDIALOG_H
00030
00031 using namespace std;
00032 #include "qvbox.h"
00033 #include "qlineedit.h"
00034 #include "qptrlist.h"
00035
00036 #include "TObject.h"
00037 #include "TMethod.h"
00038 #include "TCanvas.h"
00039
00056 class TQRootDialog: public QVBox
00057 {
00058 Q_OBJECT
00059
00060 public:
00061 TQRootDialog(QWidget *parent, const char *name, WFlags f=0,
00062 TObject *obj=0,TMethod *meth=0);
00063
00064 ~TQRootDialog(){
00065
00066 if(fArgBox) delete fArgBox;
00067 if(fLineEdit) delete fLineEdit;
00068 aList.remove();
00069
00070 }
00071
00072 void add(const char* argname, const char* value, const char* type);
00073 void popup();
00074 void setTCanvas(TCanvas* aCanvas){fCurCanvas=aCanvas;}
00075
00076 public slots:
00077 void receive(){executeMethod();}
00078 void executeMethod();
00079 void executeMethod1();
00080
00081 protected:
00082 void closeEvent( QCloseEvent* ce);
00083
00084 protected:
00085 QVBox *fArgBox;
00086 QLineEdit *fLineEdit;
00087 QPtrList<QLineEdit> aList;
00088 TObject *fCurObj,*fPrevObj;
00089 TMethod *fCurMethod,*fPrevMethod;
00090 TCanvas* fCurCanvas;
00091 QWidget* fParent;
00092 };
00093
00094
00095 #endif
00096
00097