Componentes.Terceros.DevExp.../official/x.30/Demos/CBuilder/Options.h
2007-12-16 17:06:54 +00:00

53 lines
1.5 KiB
C++

//---------------------------------------------------------------------------
#ifndef OptionsH
#define OptionsH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\Mask.hpp>
#include "main.h"
//---------------------------------------------------------------------------
class TOptionsForm : public TForm
{
__published: // IDE-managed Components
TBevel *Bevel1;
TBitBtn *BitBtn2;
TBitBtn *BitBtn1;
TCheckBox *cbShowImages;
TCheckBox *cbInsDel;
TCheckBox *cbShowDrag;
TCheckBox *cbCanDrag;
TCheckBox *cbSelect;
TCheckBox *cbFocus;
TCheckBox *cbButtons;
TCheckBox *cbEdit;
TGroupBox *GroupBox1;
TCheckBox *cbLeft;
TCheckBox *cbCenter;
TCheckBox *cbRight;
TCheckBox *cbVCenter;
TCheckBox *cbWrap;
TCheckBox *cbUpper;
TCheckBox *cbLower;
TCheckBox *cbGrow;
TLabel *Label3;
TLabel *Label2;
TLabel *Label1;
TEdit *meX;
TEdit *meY;
TEdit *meLineWidth;
void __fastcall FormActivate(TObject *Sender);
void __fastcall BitBtn2Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TOptionsForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TOptionsForm *OptionsForm;
//---------------------------------------------------------------------------
#endif