33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef EBarsDemoRatingH
|
||
|
|
#define EBarsDemoRatingH
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#include <Classes.hpp>
|
||
|
|
#include <Controls.hpp>
|
||
|
|
#include <StdCtrls.hpp>
|
||
|
|
#include <Forms.hpp>
|
||
|
|
#include <ExtCtrls.hpp>
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
class TEBarsDemoRatingForm : public TForm
|
||
|
|
{
|
||
|
|
__published: // IDE-managed Components
|
||
|
|
TLabel *Label1;
|
||
|
|
TLabel *Label2;
|
||
|
|
TLabel *Label3;
|
||
|
|
TLabel *Label4;
|
||
|
|
TMemo *memRateDescrip;
|
||
|
|
TButton *btnSend;
|
||
|
|
TRadioGroup *rgRate;
|
||
|
|
void __fastcall rgRateChange(TObject *Sender);
|
||
|
|
void __fastcall btnSendClick(TObject *Sender);
|
||
|
|
private: // User declarations
|
||
|
|
public: // User declarations
|
||
|
|
__fastcall TEBarsDemoRatingForm(TComponent* Owner);
|
||
|
|
void __fastcall AdjustMessageBody(String &ABody, String ASearchStr, String AReplaceStr);
|
||
|
|
};
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
extern PACKAGE TEBarsDemoRatingForm *EBarsDemoRatingForm;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#endif
|