-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
58 lines (54 loc) · 1.78 KB
/
debug.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
//---------------------------------------------------------------------------
#ifndef debugH
#define debugH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include "mnemoshema_data_manager.h"
//---------------------------------------------------------------------------
class TFormDebug : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TLabel *Label2;
TLabel *LabelSensorDataPoolUsed;
TLabel *LabelSensorDataPoolAvailable;
TTimer *TimerSensorDataPoolUpdate;
TLabel *Label3;
TLabel *LabelThreadPoolTasks;
TLabel *Label4;
TLabel *LabelHTTPRequestPoolUsed;
TLabel *Label5;
TLabel *LabelHTTPRequestPoolAvailable;
TLabel *Label6;
TLabel *Label7;
TLabel *LabelFileRequestPoolUsed;
TLabel *LabelFileRequestPoolAvailable;
TLabel *Label8;
TLabel *Label9;
TLabel *LabelDeviceFileRequestPoolUsed;
TLabel *LabelDeviceFileRequestPoolAvailable;
TLabel *Label10;
TLabel *Label11;
TLabel *LabelRequestPoolUsed;
TLabel *LabelRequestPoolAvailable;
TLabel *Label12;
TLabel *Label13;
TLabel *LabelSensorEventDataPoolUsed;
TLabel *LabelSensorEventDataPoolAvailable;
void __fastcall TimerSensorDataPoolUpdateTimer(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormDestroy(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormDebug(TComponent* Owner);
void __fastcall SaveLastUserSettings();
void __fastcall RestoreLastUserSettings();
};
//---------------------------------------------------------------------------
extern PACKAGE TFormDebug *FormDebug;
//---------------------------------------------------------------------------
#endif