git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef InPlaceEditorsDemoTextH
|
|
#define InPlaceEditorsDemoTextH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include "InPlaceEditorsDemoFrameManager.h"
|
|
//---------------------------------------------------------------------------
|
|
class TfrmTextEditors : public TEditorDemoBaseFrame
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPaintBox *PaintBox1;
|
|
void __fastcall PaintBox1Paint(TObject *Sender);
|
|
private:
|
|
AnsiString FCompany;
|
|
AnsiString FWWW;
|
|
AnsiString FPhone;
|
|
public:
|
|
void __fastcall SetParameters(AnsiString ACompany, AnsiString AHyperLink, AnsiString APhone);
|
|
__fastcall TfrmTextEditors(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmTextEditors *frmTextEditors;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|