Options.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:3k
源码类别:

生物技术

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef OptionsH
  3. #define OptionsH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. #include <ExtCtrls.hpp>
  12. //---------------------------------------------------------------------------
  13. class TOptionsForm : public TForm
  14. {
  15. __published: // IDE-managed Components
  16.     TPageControl *PageControl1;
  17.     TTabSheet *PixelSheet;
  18.     TButton *Button1;
  19.     TGroupBox *ThumbnailPixels;
  20.     TLabel *Label5;
  21.     TLabel *Label6;
  22.     TEdit *ThumbXPixelEdit;
  23.     TEdit *ThumbYPixelEdit;
  24.     TGroupBox *ZoomPixels;
  25.     TLabel *Label1;
  26.     TLabel *Label2;
  27.     TEdit *ZoomXPixelEdit;
  28.     TEdit *ZoomYPixelEdit;
  29.     TTabSheet *TreeBrowsePage;
  30.     TEdit *CorrSelectCutoffEdit;
  31.     TLabel *Label3;
  32.     TGroupBox *ContrastGroupBox;
  33.     TEdit *ImageContrastEdit;
  34.     TLabel *Label4;
  35.     TButton *Button2;
  36.     TButton *Button3;
  37.     TColorDialog *NegativeColorDialog;
  38.     TColorDialog *ZeroColorDialog;
  39.     TColorDialog *PositiveColorDialog;
  40.     TShape *NegativeShape;
  41.     TLabel *Label7;
  42.     TLabel *Label8;
  43.     TLabel *Label9;
  44.     TShape *ZeroShape;
  45.     TShape *PositiveShape;
  46.     TColorDialog *MissingColorDialog;
  47.     TLabel *Label10;
  48.     TShape *MissingShape;
  49.         TButton *Button4;
  50.         TButton *Button5;
  51.         TOpenDialog *OpenColorDialog1;
  52.         TSaveDialog *SaveColorDialog1;
  53.         TLabel *MaskValLabel;
  54.         TEdit *MaskValEdit;
  55.     void __fastcall FormShow(TObject *Sender);
  56.     void __fastcall Button2Click(TObject *Sender);
  57.     void __fastcall NegativeShapeMouseDown(TObject *Sender,
  58.           TMouseButton Button, TShiftState Shift, int X, int Y);
  59.     void __fastcall ZeroShapeMouseDown(TObject *Sender,
  60.           TMouseButton Button, TShiftState Shift, int X, int Y);
  61.     void __fastcall PositiveShapeMouseDown(TObject *Sender,
  62.           TMouseButton Button, TShiftState Shift, int X, int Y);
  63.     void __fastcall MissingShapeMouseDown(TObject *Sender, TMouseButton Button,
  64.           TShiftState Shift, int X, int Y);
  65.     void __fastcall Button3Click(TObject *Sender);
  66.         void __fastcall Button4Click(TObject *Sender);
  67.         void __fastcall Button5Click(TObject *Sender);
  68. private: // User declarations
  69. public: // User declarations
  70.     __fastcall TOptionsForm(TComponent* Owner);
  71. };
  72. //---------------------------------------------------------------------------
  73. extern PACKAGE TOptionsForm *OptionsForm;
  74. //---------------------------------------------------------------------------
  75. #endif