Config.h
上传用户:may_ontech
上传日期:2007-01-08
资源大小:308k
文件大小:1k
源码类别:

图形图象

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef ConfigH
  3. #define ConfigH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TConfigForm : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TLabel *Label1;
  15.         TLabel *Label2;
  16.         TLabel *Label3;
  17.         TComboBox *ComboBox1;
  18.         TButton *Button1;
  19.         TButton *Button2;
  20.         TTrackBar *TrackBar1;
  21.         TTrackBar *TrackBar2;
  22.         void __fastcall Button1Click(TObject *Sender);
  23.         void __fastcall Button2Click(TObject *Sender);
  24. private: // User declarations
  25. public: // User declarations
  26.         __fastcall TConfigForm(TComponent* Owner);
  27.         bool Execute;  // 代表用户选择了‘确定’或‘取消’按钮
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE TConfigForm *ConfigForm;
  31. //---------------------------------------------------------------------------
  32. #endif