source: oup/releases/0.22a/Unit5_preview.dfm@ 1157

Last change on this file since 1157 was 22, checked in by alloc, 18 years ago
File size: 3.9 KB
Line 
1object Form5: TForm5
2 Left = 0
3 Top = 0
4 Width = 319
5 Height = 181
6 Caption = 'Preview'
7 Color = clBtnFace
8 Font.Charset = DEFAULT_CHARSET
9 Font.Color = clWindowText
10 Font.Height = -11
11 Font.Name = 'Tahoma'
12 Font.Style = []
13 FormStyle = fsMDIChild
14 OldCreateOrder = False
15 Visible = True
16 WindowState = wsMaximized
17 OnActivate = FormActivate
18 OnClose = FormClose
19 OnCreate = FormCreate
20 OnResize = FormResize
21 PixelsPerInch = 96
22 TextHeight = 13
23 object Splitter1: TSplitter
24 Left = 150
25 Top = 0
26 Width = 9
27 Height = 154
28 AutoSnap = False
29 Beveled = True
30 MinSize = 150
31 end
32 object panel_preview: TPanel
33 Left = 159
34 Top = 0
35 Width = 152
36 Height = 154
37 Align = alClient
38 BevelOuter = bvNone
39 TabOrder = 0
40 object img: TImage
41 Left = 0
42 Top = 20
43 Width = 152
44 Height = 134
45 Align = alClient
46 end
47 object lbl_notpossible: TLabel
48 Left = 16
49 Top = 56
50 Width = 97
51 Height = 65
52 AutoSize = False
53 Caption = 'No preview possible for this filetype'
54 Font.Charset = DEFAULT_CHARSET
55 Font.Color = clWindowText
56 Font.Height = -16
57 Font.Name = 'Tahoma'
58 Font.Style = []
59 ParentFont = False
60 Visible = False
61 WordWrap = True
62 end
63 object panel_buttons: TPanel
64 Left = 0
65 Top = 0
66 Width = 152
67 Height = 20
68 Align = alTop
69 BevelOuter = bvNone
70 TabOrder = 0
71 Visible = False
72 OnResize = panel_buttonsResize
73 object btn_dec: TButton
74 Left = 0
75 Top = 0
76 Width = 20
77 Height = 20
78 Caption = '-'
79 Enabled = False
80 TabOrder = 0
81 OnClick = btn_decClick
82 end
83 object btn_startstop: TButton
84 Left = 21
85 Top = 0
86 Width = 80
87 Height = 20
88 Caption = 'Stop automatic'
89 TabOrder = 1
90 OnClick = btn_startstopClick
91 end
92 object btn_inc: TButton
93 Left = 102
94 Top = 0
95 Width = 20
96 Height = 20
97 Caption = '+'
98 Enabled = False
99 TabOrder = 2
100 OnClick = btn_incClick
101 end
102 end
103 end
104 object panel_files: TPanel
105 Left = 0
106 Top = 0
107 Width = 150
108 Height = 154
109 Align = alLeft
110 BevelOuter = bvNone
111 TabOrder = 1
112 object list: TListBox
113 Left = 0
114 Top = 0
115 Width = 150
116 Height = 129
117 Align = alClient
118 ItemHeight = 13
119 PopupMenu = popup
120 TabOrder = 0
121 OnClick = listClick
122 end
123 object panel_extension: TPanel
124 Left = 0
125 Top = 129
126 Width = 150
127 Height = 25
128 Align = alBottom
129 BevelOuter = bvNone
130 TabOrder = 1
131 OnResize = panel_extensionResize
132 object combo_extension: TComboBox
133 Left = 2
134 Top = 2
135 Width = 145
136 Height = 21
137 Style = csDropDownList
138 DropDownCount = 12
139 Font.Charset = DEFAULT_CHARSET
140 Font.Color = clWindowText
141 Font.Height = -11
142 Font.Name = 'Tahoma'
143 Font.Style = []
144 ItemHeight = 13
145 ParentFont = False
146 Sorted = True
147 TabOrder = 0
148 OnClick = combo_extensionClick
149 end
150 end
151 end
152 object timer: TTimer
153 Enabled = False
154 OnTimer = timerTimer
155 Left = 144
156 Top = 24
157 end
158 object popup: TPopupMenu
159 AutoHotkeys = maManual
160 Left = 48
161 Top = 56
162 object popup_extractdat: TMenuItem
163 Caption = 'Extract .dat-file'
164 Enabled = False
165 end
166 object popup_extractdatraw: TMenuItem
167 Caption = 'Extract .dat-file and corresponding .raw-data'
168 Enabled = False
169 end
170 object popup_extractdatrawconvert: TMenuItem
171 Caption =
172 'Extract .dat-file and corresponding .raw-data and convert if pos' +
173 'sible'
174 Enabled = False
175 end
176 end
177end
Note: See TracBrowser for help on using the repository browser.