ROOT logo
#ifndef INSERTPADDIALOG
#define INSERTPADDIALOG
#include "TGMrbValuesAndText.h"
#include "GrCanvas.h"
//_____________________________________________________________________________________


class InsertPadDialog : public TObject {

private:
   void *fValp[100];
   TList *fRow_lab;
   TGMrbValuesAndText *fDialog;
   TCanvas    * fCanvas;
	TPad       * fPad;
   Double_t   fX1;         //
   Double_t   fY1;         //
   Double_t   fDx;         //
   Double_t   fDy;         //
   Color_t    fFillColor;  // fill color
   Style_t    fFillStyle;  // fill style
   Short_t    fBorderSize; // Size of Shadow
   Short_t    fBorderMode; //
public:
   InsertPadDialog();
   virtual ~InsertPadDialog();
   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(InsertPadDialog,0)
};
#endif
 InsertPadDialog.h:1
 InsertPadDialog.h:2
 InsertPadDialog.h:3
 InsertPadDialog.h:4
 InsertPadDialog.h:5
 InsertPadDialog.h:6
 InsertPadDialog.h:7
 InsertPadDialog.h:8
 InsertPadDialog.h:9
 InsertPadDialog.h:10
 InsertPadDialog.h:11
 InsertPadDialog.h:12
 InsertPadDialog.h:13
 InsertPadDialog.h:14
 InsertPadDialog.h:15
 InsertPadDialog.h:16
 InsertPadDialog.h:17
 InsertPadDialog.h:18
 InsertPadDialog.h:19
 InsertPadDialog.h:20
 InsertPadDialog.h:21
 InsertPadDialog.h:22
 InsertPadDialog.h:23
 InsertPadDialog.h:24
 InsertPadDialog.h:25
 InsertPadDialog.h:26
 InsertPadDialog.h:27
 InsertPadDialog.h:28
 InsertPadDialog.h:29
 InsertPadDialog.h:30
 InsertPadDialog.h:31
 InsertPadDialog.h:32
 InsertPadDialog.h:33
 InsertPadDialog.h:34
 InsertPadDialog.h:35
 InsertPadDialog.h:36
 InsertPadDialog.h:37
 InsertPadDialog.h:38
 InsertPadDialog.h:39