Options.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:3k
- //---------------------------------------------------------------------------
- #ifndef OptionsH
- #define OptionsH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ComCtrls.hpp>
- #include <Dialogs.hpp>
- #include <ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TOptionsForm : public TForm
- {
- __published: // IDE-managed Components
- TPageControl *PageControl1;
- TTabSheet *PixelSheet;
- TButton *Button1;
- TGroupBox *ThumbnailPixels;
- TLabel *Label5;
- TLabel *Label6;
- TEdit *ThumbXPixelEdit;
- TEdit *ThumbYPixelEdit;
- TGroupBox *ZoomPixels;
- TLabel *Label1;
- TLabel *Label2;
- TEdit *ZoomXPixelEdit;
- TEdit *ZoomYPixelEdit;
- TTabSheet *TreeBrowsePage;
- TEdit *CorrSelectCutoffEdit;
- TLabel *Label3;
- TGroupBox *ContrastGroupBox;
- TEdit *ImageContrastEdit;
- TLabel *Label4;
- TButton *Button2;
- TButton *Button3;
- TColorDialog *NegativeColorDialog;
- TColorDialog *ZeroColorDialog;
- TColorDialog *PositiveColorDialog;
- TShape *NegativeShape;
- TLabel *Label7;
- TLabel *Label8;
- TLabel *Label9;
- TShape *ZeroShape;
- TShape *PositiveShape;
- TColorDialog *MissingColorDialog;
- TLabel *Label10;
- TShape *MissingShape;
- TButton *Button4;
- TButton *Button5;
- TOpenDialog *OpenColorDialog1;
- TSaveDialog *SaveColorDialog1;
- TLabel *MaskValLabel;
- TEdit *MaskValEdit;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall Button2Click(TObject *Sender);
- void __fastcall NegativeShapeMouseDown(TObject *Sender,
- TMouseButton Button, TShiftState Shift, int X, int Y);
- void __fastcall ZeroShapeMouseDown(TObject *Sender,
- TMouseButton Button, TShiftState Shift, int X, int Y);
- void __fastcall PositiveShapeMouseDown(TObject *Sender,
- TMouseButton Button, TShiftState Shift, int X, int Y);
- void __fastcall MissingShapeMouseDown(TObject *Sender, TMouseButton Button,
- TShiftState Shift, int X, int Y);
- void __fastcall Button3Click(TObject *Sender);
- void __fastcall Button4Click(TObject *Sender);
- void __fastcall Button5Click(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TOptionsForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TOptionsForm *OptionsForm;
- //---------------------------------------------------------------------------
- #endif