Componentes.Terceros.DevExp.../official/x.26/ExpressBars 6/Demos/CBuilder/InPlaceEditorsDemo/InPlaceEditorsDemoValue.h
2007-09-09 11:27:27 +00:00

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