-
Notifications
You must be signed in to change notification settings - Fork 86
/
uFrmExportFunctions.dfm
142 lines (142 loc) · 4.14 KB
/
uFrmExportFunctions.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
object frmExportFunctions: TfrmExportFunctions
Left = 0
Top = 0
Caption = 'Export Functions'
ClientHeight = 637
ClientWidth = 795
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnKeyPress = FormKeyPress
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
AlignWithMargins = True
Left = 15
Top = 15
Width = 765
Height = 64
Margins.Left = 15
Margins.Top = 15
Margins.Right = 15
Margins.Bottom = 15
Align = alTop
Caption =
'Sekect the functions you would like to export in the DLL and mak' +
'e available for other applications or DLLs be able to acess. '#13#10#13 +
#10'You can rename the functions in the Export As column by clickin' +
'g on it or pressing F2 to edit. Visual MASM will manage the mapp' +
'ings for you.'
WordWrap = True
ExplicitWidth = 762
end
object vstFunctions: TVirtualStringTree
Left = 0
Top = 94
Width = 795
Height = 491
Align = alClient
Color = clWhite
Colors.BorderColor = clWindowText
Colors.GridLineColor = 2697513
Colors.HotColor = clBlack
Colors.TreeLineColor = clYellow
DefaultNodeHeight = 20
DragOperations = [doMove]
EmptyListMessage = '< No Files Analyzed >'
Header.AutoSizeIndex = -1
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -13
Header.Font.Name = 'MS Sans Serif'
Header.Font.Style = []
Header.Options = [hoAutoResize, hoColumnResize, hoShowImages, hoVisible, hoAutoSpring]
HintMode = hmTooltip
IncrementalSearch = isAll
IncrementalSearchTimeout = 500
Indent = 19
ParentShowHint = False
ShowHint = True
TabOrder = 0
TreeOptions.AnimationOptions = [toAnimatedToggle]
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoTristateTracking, toAutoDeleteMovedNodes]
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toEditable, toGridExtensions, toInitOnSave, toReportMode, toWheelPanning, toEditOnClick, toEditOnDblClick]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowTreeLines, toThemeAware, toUseBlendedImages]
TreeOptions.SelectionOptions = [toExtendedFocus, toCenterScrollIntoView, toAlwaysSelectNode]
TreeOptions.StringOptions = [toAutoAcceptEditChange]
OnChange = vstFunctionsChange
OnChecked = vstFunctionsChecked
OnCreateEditor = vstFunctionsCreateEditor
OnEditing = vstFunctionsEditing
OnFreeNode = vstFunctionsFreeNode
OnGetText = vstFunctionsGetText
OnHeaderClick = vstFunctionsHeaderClick
OnInitNode = vstFunctionsInitNode
Columns = <
item
CheckBox = True
MaxWidth = 400
MinWidth = 20
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus]
Position = 0
Width = 250
WideText = 'Function'
WideHint = 'Build Order'
end
item
Position = 1
Width = 290
WideText = 'Export As'
end
item
MinWidth = 120
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus, coUseCaptionAlignment]
Position = 2
Width = 251
WideText = 'File'
end>
WideDefaultText = ''
end
object Panel1: TPanel
Left = 0
Top = 585
Width = 795
Height = 52
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
DesignSize = (
795
52)
object btnExport: TButton
Left = 710
Top = 14
Width = 75
Height = 25
Anchors = [akRight]
Caption = 'Export'
ModalResult = 1
TabOrder = 0
OnClick = btnExportClick
end
object btnCancel: TButton
Left = 629
Top = 14
Width = 75
Height = 25
Anchors = [akRight]
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
OnClick = btnCancelClick
end
end
end