Unitmain.h
上传用户:cqslgg
上传日期:2009-12-10
资源大小:128k
文件大小:2k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef UnitmainH
  3. #define UnitmainH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Graphics.hpp>
  12. #include <FileCtrl.hpp>
  13. #include <Registry.hpp>
  14. //---------------------------------------------------------------------------
  15. class TFormControl : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.         TImage *Image1;
  19.         TLabel *Label1;
  20.         TLabel *Label2;
  21.         TPanel *Panel1;
  22.         TBevel *v;
  23.         TBevel *Bevel2;
  24.         TLabel *Label3;
  25.         TLabel *Label4;
  26.         TTrackBar *TrackBar1;
  27.         TLabel *Label5;
  28.         TLabel *Label6;
  29.         TLabel *Label7;
  30.         TLabel *Label8;
  31.         TButton *Button1;
  32.         TStaticText *StaticText1;
  33.         TButton *Button2;
  34.         TImage *Image2;
  35.         TTimer *Timer1;
  36.         TImage *Image3;
  37.         TLabel *Label9;
  38.         TLabel *Label10;
  39.         TButton *Button3;
  40.         void __fastcall Timer1Timer(TObject *Sender);
  41.         void __fastcall FormShow(TObject *Sender);
  42.         void __fastcall FormCreate(TObject *Sender);
  43.         void __fastcall Button2Click(TObject *Sender);
  44.         void __fastcall Button1Click(TObject *Sender);
  45.         void __fastcall Button3Click(TObject *Sender);
  46. private: // User declarations
  47.   AnsiString picdir;
  48.   int frequence;
  49. public: // User declarations
  50.         __fastcall TFormControl(TComponent* Owner);
  51. };
  52. //---------------------------------------------------------------------------
  53. extern PACKAGE TFormControl *FormControl;
  54. //---------------------------------------------------------------------------
  55. #endif