31 lines
997 B
C
31 lines
997 B
C
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef AboutDemoFormH
|
||
|
|
#define AboutDemoFormH
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <Classes.hpp>
|
||
|
|
#include <Controls.hpp>
|
||
|
|
#include <StdCtrls.hpp>
|
||
|
|
#include <Forms.hpp>
|
||
|
|
#include "cxContainer.hpp"
|
||
|
|
#include "cxControls.hpp"
|
||
|
|
#include "cxEdit.hpp"
|
||
|
|
#include "cxMemo.hpp"
|
||
|
|
#include "cxRichEdit.hpp"
|
||
|
|
#include "cxTextEdit.hpp"
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
class TformAboutDemo : public TForm
|
||
|
|
{
|
||
|
|
__published: // IDE-managed Components
|
||
|
|
TcxRichEdit *redDescription;
|
||
|
|
private: // User declarations
|
||
|
|
void __fastcall AssignBounds();
|
||
|
|
public: // User declarations
|
||
|
|
__fastcall TformAboutDemo(TComponent* Owner);
|
||
|
|
__fastcall TformAboutDemo(const String ADescription);
|
||
|
|
};
|
||
|
|
|
||
|
|
void ShowAboutDemoForm();
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#endif
|