-
Notifications
You must be signed in to change notification settings - Fork 0
/
DRT.h
43 lines (41 loc) · 1.56 KB
/
DRT.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
32
33
34
35
36
37
38
39
40
41
42
43
//---------------------------------------------------------------------------
#ifndef DRTH
#define DRTH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Menus.hpp>
#include <Vcl.Buttons.hpp>
#include <Vcl.AppEvnts.hpp>
#include <Vcl.Imaging.jpeg.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TTrayIcon *TrayIcon1;
TPopupMenu *PopupMenu1;
TMenuItem *Exit1;
TPanel *Panel1;
TImage *Image1;
TSpeedButton *SpeedButton1;
TApplicationEvents *ApplicationEvents1;
TPanel *Panel2;
void __fastcall FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
void __fastcall FormKeyUp(TObject *Sender, WORD &Key, TShiftState Shift);
void __fastcall TrayIcon1DblClick(TObject *Sender);
void __fastcall Exit1Click(TObject *Sender);
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall ApplicationEvents1Message(tagMSG &Msg, bool &Handled);
void __fastcall ApplicationEvents1Minimize(TObject *Sender);
void __fastcall TrayIcon1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif