home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / RCHART.ZIP / exmpl-8 / cpp1 / frmprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-23  |  1.7 KB  |  52 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef frmprintH
  3. #define frmprintH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Dialogs.hpp>
  10. #include "RChart.hpp"
  11. #include <vcl\ExtCtrls.hpp>
  12. #include "NumLab.hpp"
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TPrintDialog *PrintDialog1;
  18.     TRChart *RChart1;
  19.     TBevel *Bevel1;
  20.     TLabel *Label1;
  21.     TNumLab *NLbScaleF;
  22.     TScrollBar *SBScalF;
  23.     TCheckBox *CBColor;
  24.     TButton *Button2;
  25.     TNumLab *NLbPosX;
  26.     TNumLab *NLbPosY;
  27.     TRChart *RChart2;
  28.     TLabel *Label2;
  29.     TLabel *Label3;
  30.     TLabel *Label6;
  31.     TLabel *Label5;
  32.     TLabel *Label4;
  33.     TLabel *Label7;
  34.     TButton *Button1;
  35.     void __fastcall Button1Click(TObject *Sender);
  36.     void __fastcall FormActivate(TObject *Sender);
  37.     void __fastcall Button2Click(TObject *Sender);
  38.     void __fastcall RChart2MouseMoveInChart(TObject *Sender, bool InChart,
  39.     TShiftState Shift, double rMousePosX, double rMousePosY);
  40.     void __fastcall SBScalFChange(TObject *Sender);
  41.     void __fastcall RChart2Click(TObject *Sender);
  42.     void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y);
  43. private:    // User declarations
  44.         void __fastcall ShowPageRect();
  45. public:        // User declarations
  46.     __fastcall TForm1(TComponent* Owner);
  47. };
  48. //---------------------------------------------------------------------------
  49. extern TForm1 *Form1;
  50. //---------------------------------------------------------------------------
  51. #endif
  52.