git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef InPlaceEditorsDemoValueH
|
|
#define InPlaceEditorsDemoValueH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include "InPlaceEditorsDemoFrameManager.h"
|
|
//---------------------------------------------------------------------------
|
|
class TfrmValueEditors : public TEditorDemoBaseFrame
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPaintBox *PaintBox1;
|
|
void __fastcall PaintBox1Paint(TObject *Sender);
|
|
private:
|
|
String FDate;
|
|
String FTime;
|
|
String FValue;
|
|
String FFontName;
|
|
int FFontSize;
|
|
public:
|
|
void __fastcall SetParameters(int AFontSize, AnsiString ADate, AnsiString ATime, Currency AMoney);
|
|
__fastcall TfrmValueEditors(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmValueEditors *frmValueEditors;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|