forked from TES5Edit/TES5Edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewElementsFrm.dfm
122 lines (122 loc) · 2.59 KB
/
ViewElementsFrm.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
object frmViewElements: TfrmViewElements
Left = 0
Top = 0
ClientHeight = 325
ClientWidth = 565
Color = clBtnFace
ParentFont = True
KeyPreview = True
OldCreateOrder = False
Position = poDefault
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
AlignWithMargins = True
Left = 8
Top = 8
Width = 549
Height = 276
Margins.Left = 8
Margins.Top = 8
Margins.Right = 8
Margins.Bottom = 8
Align = alClient
BevelOuter = bvLowered
Caption = 'Panel1'
TabOrder = 0
object pcView: TPageControl
Left = 1
Top = 1
Width = 547
Height = 274
Margins.Left = 5
Margins.Top = 5
Margins.Right = 5
Margins.Bottom = 5
Align = alClient
TabOrder = 0
TabPosition = tpBottom
end
end
object Panel2: TPanel
Left = 0
Top = 292
Width = 565
Height = 33
Align = alBottom
BevelOuter = bvNone
PopupMenu = PopupMenu1
TabOrder = 1
object pnlButtons: TPanel
Left = 192
Top = 0
Width = 373
Height = 33
Align = alRight
BevelOuter = bvNone
TabOrder = 0
object btnCompare: TButton
Left = 53
Top = 3
Width = 91
Height = 27
Caption = 'Compare'
DropDownMenu = PopupMenu1
Style = bsSplitButton
TabOrder = 0
OnClick = btnCompareClick
end
object btnOK: TButton
Left = 177
Top = 3
Width = 91
Height = 27
Caption = 'Save'
ModalResult = 1
TabOrder = 1
Visible = False
end
object btnCancel: TButton
Left = 274
Top = 3
Width = 91
Height = 27
Caption = 'Close'
ModalResult = 2
TabOrder = 2
OnClick = btnCancelClick
end
object LiteCompareButton: TButton
Left = 96
Top = 3
Width = 75
Height = 25
Caption = 'Compare'
DropDownMenu = PopupMenu1
TabOrder = 3
Visible = False
OnClick = btnCompareClick
end
end
end
object PopupMenu1: TPopupMenu
Left = 200
Top = 216
object mniCompareConf: TMenuItem
Caption = 'Configure external tool'
OnClick = mniCompareConfClick
end
end
object dlgCompareTool: TOpenDialog
Filter = 'Executable file (*.exe)|*.exe'
Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
Title = 'Select an external comparison tool'
Left = 288
Top = 216
end
end