#ifndef ROOT_TF1Editor
#define ROOT_TF1Editor
#ifndef ROOT_TGedFrame
#include "TGedFrame.h"
#endif
class TGNumberEntry;
class TGTextEntry;
class TGTextButton;
class TGDoubleHSlider;
class TGNumberEntryField;
class TGLabel;
class TGCheckButton;
class TF1;
class TF1Editor : public TGedFrame {
protected:
TF1 *fF1;
TGTextEntry *fTitle;
Int_t fNP;
TGLabel *fParLabel;
TGCheckButton *fDrawMode;
TGTextButton *fSetPars;
TGNumberEntry *fNXpoints;
TGDoubleHSlider *fSliderX;
TGNumberEntryField *fSldMinX;
TGNumberEntryField *fSldMaxX;
virtual void ConnectSignals2Slots();
public:
TF1Editor(const TGWindow *p = 0, Int_t width = 140, Int_t height = 30,
UInt_t options = kChildFrame, Pixel_t back = GetDefaultFrameBackground());
virtual ~TF1Editor();
virtual void SetModel(TObject* obj);
virtual void ActivateBaseClassEditors(TClass* cl);
virtual void DoParameterSettings();
virtual void DoXPoints();
virtual void DoSliderXMoved();
virtual void DoSliderXPressed();
virtual void DoSliderXReleased();
virtual void DoXRange();
ClassDef(TF1Editor,0)
};
#endif
Last change: Wed Jun 25 08:38:50 2008
Last generated: 2008-06-25 08:38
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.