-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSummary.h
31 lines (30 loc) · 1.04 KB
/
Summary.h
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
31
//---------------------------------------------------------------------------
#ifndef SummaryH
#define SummaryH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TSumInfo : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TGroupBox *GroupBox1;
TMemo *SumText;
TBitBtn *Clipboard;
TBitBtn *Close;
void __fastcall FormCreate(TObject *Sender);
void __fastcall ClipboardClick(TObject *Sender);
void __fastcall SumTextKeyPress(TObject *Sender, char &Key);
private: // User declarations
public: // User declarations
__fastcall TSumInfo(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSumInfo *SumInfo;
//---------------------------------------------------------------------------
#endif