-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmlEditFram.dfm
More file actions
185 lines (185 loc) · 4.23 KB
/
xmlEditFram.dfm
File metadata and controls
185 lines (185 loc) · 4.23 KB
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
182
183
184
185
object xmlEditorFrame: TxmlEditorFrame
Left = 0
Top = 0
Width = 675
Height = 493
TabOrder = 0
object Splitter2: TSplitter
Left = 217
Top = 0
Width = 5
Height = 474
Cursor = crHSplit
end
object XmlTreeView: TTreeView
Left = 0
Top = 0
Width = 217
Height = 474
Align = alLeft
DragMode = dmAutomatic
HideSelection = False
Indent = 19
PopupMenu = TreeViewPopupMenu
TabOrder = 0
OnAdvancedCustomDrawItem = XmlTreeViewAdvancedCustomDrawItem
OnChange = XmlTreeViewChange
OnContextPopup = XmlTreeViewContextPopup
OnDragDrop = XmlTreeViewDragDrop
OnDragOver = XmlTreeViewDragOver
OnEdited = XmlTreeViewEdited
OnEditing = XmlTreeViewEditing
OnKeyDown = XmlTreeViewKeyDown
end
object Panel1: TPanel
Left = 222
Top = 0
Width = 453
Height = 474
Align = alClient
TabOrder = 1
object Splitter1: TSplitter
Left = 1
Top = 185
Width = 451
Height = 5
Cursor = crVSplit
Align = alTop
end
object AttributeGrid: TStringGrid
Left = 1
Top = 1
Width = 451
Height = 184
Align = alTop
ColCount = 2
FixedCols = 0
RowCount = 1
FixedRows = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goEditing]
PopupMenu = AttributePopupMenu
TabOrder = 0
OnContextPopup = AttributeGridContextPopup
OnDrawCell = AttributeGridDrawCell
OnGetEditText = AttributeGridGetEditText
OnKeyUp = AttributeGridKeyUp
OnSetEditText = AttributeGridSetEditText
RowHeights = (
24)
end
object ValueMemo: TMemo
Left = 1
Top = 190
Width = 451
Height = 283
Align = alClient
PopupMenu = ValuePopupMenu
ScrollBars = ssVertical
TabOrder = 1
OnChange = ValueMemoChange
end
end
object StatusBar: TStatusBar
Left = 0
Top = 474
Width = 675
Height = 19
Panels = <>
SimplePanel = True
end
object TreeViewPopupMenu: TPopupMenu
Left = 112
Top = 48
object Expand: TMenuItem
Caption = 'Expand'
ShortCut = 16571
OnClick = ExpandClick
end
object Collapse: TMenuItem
Caption = 'Collapse'
OnClick = CollapseClick
end
object N3: TMenuItem
Caption = '-'
end
object ShowStyles: TMenuItem
Caption = 'Show Styles'
OnClick = ShowStylesClick
end
object N5: TMenuItem
Caption = '-'
end
object ChangePopup: TMenuItem
Caption = 'Change'
OnClick = ChangePopupClick
end
object N2: TMenuItem
Caption = '-'
end
object DeleteChildrenItem: TMenuItem
Caption = 'Delete with Children'
ShortCut = 46
OnClick = TreeViewPopupClick
end
object DeleteWithoutChildren: TMenuItem
Caption = 'Delete without Children'
OnClick = TreeViewPopupClick
end
object N1: TMenuItem
Caption = '-'
end
object CloneElement: TMenuItem
Caption = 'Clone'
OnClick = TreeViewPopupClick
end
object N4: TMenuItem
Caption = '-'
end
object InsElement: TMenuItem
Caption = 'Element'
ShortCut = 45
OnClick = TreeViewPopupClick
end
object InsTextPCDATA: TMenuItem
Caption = 'Text (PCDATA)'
ShortCut = 16429
OnClick = TreeViewPopupClick
end
object InsTextCDATA: TMenuItem
Caption = 'Text (CDATA)'
ShortCut = 8237
OnClick = TreeViewPopupClick
end
object InsComment: TMenuItem
Caption = 'Comment'
ShortCut = 32813
OnClick = TreeViewPopupClick
end
object ProcInstruction: TMenuItem
Caption = 'Processing Instruction'
ShortCut = 49197
OnClick = TreeViewPopupClick
end
object insXmlStyleSheet: TMenuItem
Caption = 'xml-stylesheet'
OnClick = TreeViewPopupClick
end
object DOCTYPE: TMenuItem
Caption = '!DOCTYPE'
ShortCut = 24621
OnClick = TreeViewPopupClick
end
end
object AttributePopupMenu: TPopupMenu
Left = 422
Top = 16
end
object ValuePopupMenu: TPopupMenu
Left = 374
Top = 248
object CreateElement: TMenuItem
Caption = 'Create Element'
OnClick = CreateElementClick
end
end
end