blob: e07b33823c99886a1df3c852d7bd8f71d8441db2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//---------------------------------------------------------------------------
#ifndef rtfhintfrmH
#define rtfhintfrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <RxRichEdit.hpp>
#include <ExtCtrls.hpp>
#include <swmodule.h>
#include <listkey.h>
#include "RxRichEditX.h"
class TRTFHintForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
TRxRichEditX *rtfDrawer;
TRxRichEditX *searchListDrawer;
__fastcall TRTFHintForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TRTFHintForm *RTFHintForm;
//---------------------------------------------------------------------------
#endif
|