-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathProjectGraphEdit.dfm
181 lines (181 loc) · 3.76 KB
/
ProjectGraphEdit.dfm
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
object GraphEditForm: TGraphEditForm
Left = 278
Top = 260
BorderStyle = bsSingle
ClientHeight = 490
ClientWidth = 781
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
OnCloseQuery = FormCloseQuery
OnDestroy = FormDestroy
OnKeyUp = FormKeyUp
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Image: TImage
Left = 323
Top = 0
Width = 458
Height = 490
Align = alClient
Proportional = True
end
object Splitter1: TSplitter
Left = 321
Top = 0
Width = 2
Height = 490
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 321
Height = 490
Align = alLeft
TabOrder = 0
DesignSize = (
321
490)
object Label1: TLabel
Left = 24
Top = 42
Width = 20
Height = 13
Alignment = taRightJustify
Caption = 'Title'
end
object Label2: TLabel
Left = 19
Top = 12
Width = 27
Height = 13
Alignment = taRightJustify
Caption = 'Name'
end
object Label3: TLabel
Left = 8
Top = 392
Width = 297
Height = 54
Anchors = [akLeft, akBottom]
AutoSize = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
WordWrap = True
end
object Tree: TTreeView
Left = 8
Top = 72
Width = 305
Height = 313
Anchors = [akLeft, akTop, akRight, akBottom]
Indent = 19
MultiSelect = True
MultiSelectStyle = [msControlSelect, msShiftSelect]
ReadOnly = True
TabOrder = 7
Visible = False
OnClick = TreeClick
end
object EditName: TEdit
Left = 48
Top = 8
Width = 201
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
object EditTitle: TEdit
Left = 48
Top = 40
Width = 265
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object Source: TMemo
Left = 8
Top = 72
Width = 305
Height = 313
Anchors = [akLeft, akTop, akRight, akBottom]
ScrollBars = ssBoth
TabOrder = 2
WordWrap = False
end
object btnSave: TButton
Left = 16
Top = 453
Width = 97
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Save'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ModalResult = 1
ParentFont = False
TabOrder = 3
end
object btnClose: TButton
Left = 128
Top = 453
Width = 89
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Close'
ModalResult = 2
TabOrder = 4
end
object btnRefresh: TButton
Left = 232
Top = 453
Width = 73
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Refresh F9'
TabOrder = 5
OnClick = btnRefreshClick
end
object btnFromCode: TButton
Left = 256
Top = 6
Width = 59
Height = 25
Anchors = [akTop, akRight]
Caption = 'From code'
TabOrder = 6
OnClick = btnFromCodeClick
end
end
object PopupMenuFromCode: TPopupMenu
TrackButton = tbLeftButton
Left = 272
Top = 32
object FromCodeObjectHierarchyHide: TMenuItem
Caption = 'Hide'
OnClick = FromCodeClick
end
object N1: TMenuItem
Caption = '-'
end
object FromCodeObjecthierarchy: TMenuItem
Caption = 'Object hierarchy'
end
object FromCodeSQLRecord: TMenuItem
Caption = 'TSQLRecord'
end
end
end