-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmlEditFrm.dfm
More file actions
157 lines (157 loc) · 3.82 KB
/
Copy pathxmlEditFrm.dfm
File metadata and controls
157 lines (157 loc) · 3.82 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
object XmlEditForm: TXmlEditForm
Left = 730
Top = 448
Width = 801
Height = 556
Caption = 'XML Editor'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Menu = MainMenu
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
inline xmlEditorFrame: TxmlEditorFrame
Width = 785
Height = 497
Align = alClient
inherited Splitter2: TSplitter
Height = 478
end
inherited XmlTreeView: TTreeView
Height = 478
end
inherited Panel1: TPanel
Width = 563
Height = 478
inherited Splitter1: TSplitter
Width = 561
end
inherited AttributeGrid: TStringGrid
Width = 561
end
inherited ValueMemo: TMemo
Width = 561
Height = 287
end
end
inherited StatusBar: TStatusBar
Top = 478
Width = 785
end
end
object OpenDialog: TOpenDialog
Filter =
'All XML|*.xml;*.xsd;*.xsl;*.xhtml|XML Files (*.xml)|*.xml|XML Sc' +
'hema (*.xsd)|*.xsd|XSL Files (*.xsl)|*.xsl|XHTML Files (*.xhtml)' +
'|*.xhtml|HTML-Files (*.htm;*.html)|*.htm;*.html|VSTGUI Descripti' +
'on (*.uidesc)|*.uidesc|All Files|*.*'
Title = 'Open XML File'
Left = 328
Top = 184
end
object MainMenu: TMainMenu
Left = 136
Top = 184
object File1: TMenuItem
Caption = '&File'
object New1: TMenuItem
Caption = '&New'
OnClick = New1Click
end
object Open1: TMenuItem
Caption = '&Open'
OnClick = Open1Click
end
object N2: TMenuItem
Caption = '-'
end
object MenuFileSave: TMenuItem
Caption = '&Save'
Enabled = False
OnClick = MenuFileSaveClick
end
object MenuFileSaveAs: TMenuItem
Caption = 'Save &As...'
Enabled = False
OnClick = MenuFileSaveAsClick
end
object N1: TMenuItem
Caption = '-'
end
object Exit1: TMenuItem
Caption = '&Exit'
OnClick = Exit1Click
end
end
object Edit1: TMenuItem
Caption = '&Edit'
object Cut1: TMenuItem
Caption = 'C&ut'
ShortCut = 16472
OnClick = Cut1Click
end
object Copy1: TMenuItem
Caption = '&Copy'
ShortCut = 16451
OnClick = Copy1Click
end
object Paste1: TMenuItem
Caption = '&Paste'
ShortCut = 16470
OnClick = Paste1Click
end
object N3: TMenuItem
Caption = '-'
end
object Renderer1: TMenuItem
Caption = '&Renderer'
OnClick = Renderer1Click
end
end
object MenuSchema: TMenuItem
Caption = '&Schema'
object MenuSchemaTestDocument: TMenuItem
Caption = '&Test Document'
OnClick = MenuSchemaTestDocumentClick
end
object MenuSchemaOpen: TMenuItem
Caption = '&Open Schema'
Enabled = False
OnClick = MenuSchemaOpenClick
end
object MenuSchemaRefreshSchema: TMenuItem
Caption = '&Refresh Schema'
OnClick = MenuSchemaRefreshSchemaClick
end
end
object MenuTransform: TMenuItem
Caption = '&Transform'
Enabled = False
object Transform2: TMenuItem
Caption = '&Transform'
OnClick = Transform2Click
end
object OpenStylesheet1: TMenuItem
Caption = '&Open Stylesheet'
OnClick = OpenStylesheet1Click
end
end
end
object SaveDialog: TSaveDialog
Filter =
'XML Files (*.xml)|*.xml|XML Schema (*.xsd)|*.xsd|XSL File (*.xsl' +
')|*.xsl|XHTML File (*.xhtml)|*.xhtml|All Files|*.*'
Title = 'Save XML File'
Left = 254
Top = 184
end
end