-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphEdit.h
56 lines (54 loc) · 1.78 KB
/
GraphEdit.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
//---------------------------------------------------------------------------
#ifndef GraphEditH
#define GraphEditH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
#include "NodeCPU.h"
//---------------------------------------------------------------------------
class Tf_GraphEdit : public TForm
{
__published: // Composants gérés par l'EDI
TLabel *l_lIntid;
TEdit *e_PosX;
TLabel *l_InternalID;
TLabel *l_lposx;
TLabel *l_lposy;
TEdit *e_PosY;
TEdit *e_Name;
TLabel *l_lname;
TEdit *e_NameOutUp;
TEdit *e_NameOutDown;
TLabel *l_lNameUp;
TLabel *l_lNameDown;
TComboBox *cb_Type;
TLabel *l_lType;
TLabel *l_pinidinup;
TLabel *l_lpinidindown;
TLabel *l_lpinidoutup;
TLabel *l_lpinidoutdown;
TEdit *e_PinIDInUp;
TEdit *e_PinIDInDown;
TEdit *e_PinIDOutUp;
TEdit *e_PinIDOutDown;
TButton *b_Update;
TButton *b_delete;
TCheckBox *cb_Delete;
TLabel *l_SaveName;
TLabel *l_NameOutUp;
TLabel *l_NameOutDown;
void __fastcall b_UpdateClick(TObject *Sender);
void __fastcall b_deleteClick(TObject *Sender);
void __fastcall e_NameOutUpKeyPress(TObject *Sender, char &Key);
private: // Déclarations de l'utilisateur
public: // Déclarations de l'utilisateur
__fastcall Tf_GraphEdit(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Tf_GraphEdit *f_GraphEdit;
//---------------------------------------------------------------------------
#endif