home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef frmcfitH
- #define frmcfitH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\Buttons.hpp>
- #include "NumLab.hpp"
- #include "RChart.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TSpeedButton *SBNewPnts;
- TNumLab *NLabFitQual;
- TSpeedButton *SBClear;
- TLabel *LblFormula;
- TLabel *LblParams;
- TPanel *Panel2;
- TLabel *Label1;
- TNumLab *NLabRXY;
- TBitBtn *BButParabolFit;
- TBitBtn *BButCalcReciprLine;
- TBitBtn *BButHyper;
- TBitBtn *BButLogFit;
- TBitBtn *BButGaussFit;
- TBitBtn *BButLinFit;
- TBitBtn *BButExit;
- TRChart *RChart1;
- void __fastcall BButExitClick(TObject *Sender);
- void __fastcall SBClearClick(TObject *Sender);
- void __fastcall RChart1MouseDown(TObject *Sender, TMouseButton Button,
- TShiftState Shift, int X, int Y);
- void __fastcall SBNewPntsClick(TObject *Sender);
- void __fastcall BButParabolFitClick(TObject *Sender);
- void __fastcall BButCalcReciprLineClick(TObject *Sender);
- void __fastcall BButHyperClick(TObject *Sender);
- void __fastcall BButLogFitClick(TObject *Sender);
- void __fastcall BButGaussFitClick(TObject *Sender);
- void __fastcall BButLinFitClick(TObject *Sender);
- void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-