ROOT logo
#ifndef INSERTAXISDIALOG
#define INSERTAXISDIALOG
#include "TGMrbValuesAndText.h"
#include "GrCanvas.h"
#include "TRootCanvas.h"
#include "TObject.h"
//_____________________________________________________________________________________


class InsertAxisDialog : public TObject {

private:
   void *fValp[100];
   TList *fRow_lab;
   TGMrbValuesAndText *fDialog;
   TCanvas      *fCanvas;
	TPad       * fPad;
   TRootCanvas  *fWindow;
   Double_t fX0;
   Double_t fY0;
   Double_t fX1;
   Double_t fY1;
   Double_t fWmin;
   Double_t fWmax;
   Int_t    fNdiv;
   Int_t    fLogScale;
   Int_t    fUseTimeFormat;
   Int_t    fTimeZero;
   TString  fTformat;
public:
   InsertAxisDialog();
   virtual ~InsertAxisDialog();
   void    ExecuteInsert();
	void    ObjCreated(Int_t /*px*/, Int_t /*py*/, TObject *obj) {fPad = (TPad*)obj;};
	void    ObjMoved(Int_t /*px*/, Int_t /*py*/, TObject */*obj*/) { };
   void    SaveDefaults();
   void    RestoreDefaults();
   void    RecursiveRemove(TObject * obj);
   void    CloseDialog();
   void    CloseDown(Int_t wid);
   void    CRButtonPressed(Int_t /*wid*/, Int_t /*bid*/, TObject */*obj*/) {};

ClassDef(InsertAxisDialog,0)
};
#endif
 InsertAxisDialog.h:1
 InsertAxisDialog.h:2
 InsertAxisDialog.h:3
 InsertAxisDialog.h:4
 InsertAxisDialog.h:5
 InsertAxisDialog.h:6
 InsertAxisDialog.h:7
 InsertAxisDialog.h:8
 InsertAxisDialog.h:9
 InsertAxisDialog.h:10
 InsertAxisDialog.h:11
 InsertAxisDialog.h:12
 InsertAxisDialog.h:13
 InsertAxisDialog.h:14
 InsertAxisDialog.h:15
 InsertAxisDialog.h:16
 InsertAxisDialog.h:17
 InsertAxisDialog.h:18
 InsertAxisDialog.h:19
 InsertAxisDialog.h:20
 InsertAxisDialog.h:21
 InsertAxisDialog.h:22
 InsertAxisDialog.h:23
 InsertAxisDialog.h:24
 InsertAxisDialog.h:25
 InsertAxisDialog.h:26
 InsertAxisDialog.h:27
 InsertAxisDialog.h:28
 InsertAxisDialog.h:29
 InsertAxisDialog.h:30
 InsertAxisDialog.h:31
 InsertAxisDialog.h:32
 InsertAxisDialog.h:33
 InsertAxisDialog.h:34
 InsertAxisDialog.h:35
 InsertAxisDialog.h:36
 InsertAxisDialog.h:37
 InsertAxisDialog.h:38
 InsertAxisDialog.h:39
 InsertAxisDialog.h:40
 InsertAxisDialog.h:41
 InsertAxisDialog.h:42
 InsertAxisDialog.h:43
 InsertAxisDialog.h:44
 InsertAxisDialog.h:45