-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrameProtocolSettings.h
39 lines (37 loc) · 1.32 KB
/
FrameProtocolSettings.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
//---------------------------------------------------------------------------
#ifndef FrameProtocolSettingsH
#define FrameProtocolSettingsH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "FrameSerialSettings.h"
#include <Vcl.ComCtrls.hpp>
//---------------------------------------------------------------------------
class TfrmeProtocolSettings : public TFrame
{
__published: // IDE-managed Components
TCheckBox *cboxAutoIncTransactionID;
TComboBox *comboboxProtocol;
TEdit *edtSlaveId;
TEdit *edtTransactionID;
TLabel *Label5;
TLabel *Label6;
TLabel *Label7;
TPageControl *pgctrlProtocolSettings;
TTabSheet *tbshtProtocolSerialSettings;
TfrmeSerialSettings *frmeSerialSettings1;
TTabSheet *tbshtProtocolTCPIPSettings;
TLabel *Label1;
TLabel *Label2;
TEdit *edtTCPIPHost;
TEdit *edtTCPIPPort;
private: // User declarations
public: // User declarations
__fastcall TfrmeProtocolSettings(TComponent* Owner);
};
//---------------------------------------------------------------------------
//extern PACKAGE TfrmeProtocolSettings *frmeProtocolSettings;
//---------------------------------------------------------------------------
#endif