-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.h
82 lines (81 loc) · 2.7 KB
/
Unit1.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <ComCtrls.hpp>
#include <Chart.hpp>
#include <TeEngine.hpp>
#include <TeeProcs.hpp>
#include <Series.hpp>
#include <TeeFunci.hpp>
#include <msxmldom.hpp>
#include <XMLDoc.hpp>
#include <xmldom.hpp>
#include <XMLIntf.hpp>
#include "trayicon.h"
#include <Buttons.hpp>
#include <Menus.hpp>
#include <jpeg.hpp>
#include <IdBaseComponent.hpp>
#include <IdComponent.hpp>
#include <IdIcmpClient.hpp>
#include <IdRawBase.hpp>
#include <IdRawClient.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TIdIcmpClient *ICMP;
TTimer *Timer1;
TLabel *Label1;
TLabel *Label2;
TChart *Chart1;
TLineSeries *Series1;
TTimer *Timer2;
TLabel *Label3;
TTrayIcon *TrayIcon1;
TPopupMenu *PopupMenu1;
TXMLDocument *XMLDocument1;
TImage *Image1;
TMenuItem *Close1;
TMenuItem *Hide1;
TLabel *Label4;
TLabel *Label5;
TMenuItem *Litlebar1;
TMenuItem *Show1;
TMenuItem *Close2;
TMenuItem *StayOnTop2;
TMenuItem *Show2;
void __fastcall ICMPReply(TComponent *ASender,
const TReplyStatus &AReplyStatus);
void __fastcall Timer1Timer(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall Chart1BeforeDrawAxes(TObject *Sender);
void __fastcall FormMouseDown(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y);
void __fastcall Timer2Timer(TObject *Sender);
void __fastcall TrayIcon1Click(TObject *Sender);
void __fastcall Close1Click(TObject *Sender);
void __fastcall Hide1Click(TObject *Sender);
void __fastcall Image1MouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y);
void __fastcall StayOnTop2Click(TObject *Sender);
void __fastcall Show1Click(TObject *Sender);
void __fastcall Close2Click(TObject *Sender);
void __fastcall Show2Click(TObject *Sender);
private: // User declarations
public: // User declarations
double MaxPing;
double MasPing[50];
__fastcall TForm1(TComponent* Owner);
protected:
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif