home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / matemat / Vyssi / MATH2.ZIP / exmpl-3 / cpp / frmcfit.h < prev   
Encoding:
C/C++ Source or Header  |  1997-05-22  |  1.9 KB  |  54 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef frmcfitH
  3. #define frmcfitH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\Buttons.hpp>
  11. #include "NumLab.hpp"
  12. #include "RChart.hpp"
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TPanel *Panel1;
  18.     TSpeedButton *SBNewPnts;
  19.     TNumLab *NLabFitQual;
  20.     TSpeedButton *SBClear;
  21.     TLabel *LblFormula;
  22.     TLabel *LblParams;
  23.     TPanel *Panel2;
  24.     TLabel *Label1;
  25.     TNumLab *NLabRXY;
  26.     TBitBtn *BButParabolFit;
  27.     TBitBtn *BButCalcReciprLine;
  28.     TBitBtn *BButHyper;
  29.     TBitBtn *BButLogFit;
  30.     TBitBtn *BButGaussFit;
  31.     TBitBtn *BButLinFit;
  32.     TBitBtn *BButExit;
  33.     TRChart *RChart1;
  34.     void __fastcall BButExitClick(TObject *Sender);
  35.     void __fastcall SBClearClick(TObject *Sender);
  36.     void __fastcall RChart1MouseDown(TObject *Sender, TMouseButton Button,
  37.     TShiftState Shift, int X, int Y);
  38.     void __fastcall SBNewPntsClick(TObject *Sender);
  39.     void __fastcall BButParabolFitClick(TObject *Sender);
  40.     void __fastcall BButCalcReciprLineClick(TObject *Sender);
  41.     void __fastcall BButHyperClick(TObject *Sender);
  42.     void __fastcall BButLogFitClick(TObject *Sender);
  43.     void __fastcall BButGaussFitClick(TObject *Sender);
  44.     void __fastcall BButLinFitClick(TObject *Sender);
  45.     void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y);
  46. private:    // User declarations
  47. public:        // User declarations
  48.     __fastcall TForm1(TComponent* Owner);
  49. };
  50. //---------------------------------------------------------------------------
  51. extern TForm1 *Form1;
  52. //---------------------------------------------------------------------------
  53. #endif
  54.