git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
53 lines
1.5 KiB
C++
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
|