-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZipLineUnit.dfm
122 lines (122 loc) · 2.92 KB
/
ZipLineUnit.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 ZipLineForm: TZipLineForm
Left = 305
Top = 184
Width = 898
Height = 562
Caption = 'ZipLine'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
WindowState = wsMaximized
OnClose = FormClose
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 120
TextHeight = 16
object StatusBar1: TStatusBar
Left = 0
Top = 487
Width = 890
Height = 19
Panels = <>
SimplePanel = True
end
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 890
Height = 487
ActivePage = TabSheet3
Align = alClient
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'TabSheet1'
object SG: TStringGrid
Left = 0
Top = 0
Width = 882
Height = 456
Align = alClient
ColCount = 1
DefaultColWidth = 1200
FixedCols = 0
RowCount = 2
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'Courier'
Font.Style = []
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goRowSelect, goThumbTracking]
ParentFont = False
TabOrder = 0
OnDblClick = SGDblClick
OnDrawCell = SGDrawCell
end
end
object TabSheet2: TTabSheet
Caption = 'TabSheet2'
ImageIndex = 1
object Memo1: TMemo
Left = 0
Top = 0
Width = 882
Height = 456
Align = alClient
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
end
end
object TabSheet3: TTabSheet
Caption = 'TabSheet3'
ImageIndex = 2
object Memo2: TMemo
Left = 0
Top = 0
Width = 882
Height = 456
Align = alClient
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
end
end
end
object MainMenu1: TMainMenu
Left = 400
Top = 232
object LoadFile: TMenuItem
Caption = 'Load File'
OnClick = LoadFileClick
end
object ZipLines: TMenuItem
Caption = 'Zip Lines'
OnClick = ZipLinesClick
end
object Quit: TMenuItem
Caption = 'Quit'
OnClick = QuitClick
end
end
object OpenDialog1: TOpenDialog
Filter = 'Data Files(*.dat;*.DAT)|*.dat;*.DAT|Any File(*.*)|*.*'
Left = 360
Top = 224
end
end