1 |
object Form5: TForm5 |
2 |
Left = 0 |
3 |
Top = 0 |
4 |
Width = 300 |
5 |
Height = 200 |
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 |
OnActivate = FormActivate |
17 |
OnClose = FormClose |
18 |
OnCreate = FormCreate |
19 |
OnResize = FormResize |
20 |
PixelsPerInch = 96 |
21 |
TextHeight = 13 |
22 |
object Splitter1: TSplitter |
23 |
Left = 150 |
24 |
Top = 0 |
25 |
Width = 9 |
26 |
Height = 173 |
27 |
AutoSnap = False |
28 |
Beveled = True |
29 |
MinSize = 150 |
30 |
end |
31 |
object panel_preview: TPanel |
32 |
Left = 159 |
33 |
Top = 0 |
34 |
Width = 133 |
35 |
Height = 173 |
36 |
Align = alClient |
37 |
BevelOuter = bvNone |
38 |
TabOrder = 0 |
39 |
object img: TImage |
40 |
Left = 0 |
41 |
Top = 20 |
42 |
Width = 133 |
43 |
Height = 153 |
44 |
Align = alClient |
45 |
end |
46 |
object lbl_notpossible: TLabel |
47 |
Left = 16 |
48 |
Top = 56 |
49 |
Width = 97 |
50 |
Height = 65 |
51 |
AutoSize = False |
52 |
Caption = 'No preview possible for this filetype' |
53 |
Font.Charset = DEFAULT_CHARSET |
54 |
Font.Color = clWindowText |
55 |
Font.Height = -16 |
56 |
Font.Name = 'Tahoma' |
57 |
Font.Style = [] |
58 |
ParentFont = False |
59 |
Visible = False |
60 |
WordWrap = True |
61 |
end |
62 |
object panel_buttons: TPanel |
63 |
Left = 0 |
64 |
Top = 0 |
65 |
Width = 133 |
66 |
Height = 20 |
67 |
Align = alTop |
68 |
BevelOuter = bvNone |
69 |
TabOrder = 0 |
70 |
Visible = False |
71 |
OnResize = panel_buttonsResize |
72 |
object btn_dec: TButton |
73 |
Left = 0 |
74 |
Top = 0 |
75 |
Width = 20 |
76 |
Height = 20 |
77 |
Caption = '-' |
78 |
Enabled = False |
79 |
TabOrder = 0 |
80 |
OnClick = btn_decClick |
81 |
end |
82 |
object btn_startstop: TButton |
83 |
Left = 21 |
84 |
Top = 0 |
85 |
Width = 80 |
86 |
Height = 20 |
87 |
Caption = 'Stop automatic' |
88 |
TabOrder = 1 |
89 |
OnClick = btn_startstopClick |
90 |
end |
91 |
object btn_inc: TButton |
92 |
Left = 102 |
93 |
Top = 0 |
94 |
Width = 20 |
95 |
Height = 20 |
96 |
Caption = '+' |
97 |
Enabled = False |
98 |
TabOrder = 2 |
99 |
OnClick = btn_incClick |
100 |
end |
101 |
end |
102 |
end |
103 |
object panel_files: TPanel |
104 |
Left = 0 |
105 |
Top = 0 |
106 |
Width = 150 |
107 |
Height = 173 |
108 |
Align = alLeft |
109 |
BevelOuter = bvNone |
110 |
TabOrder = 1 |
111 |
object list: TListBox |
112 |
Left = 0 |
113 |
Top = 0 |
114 |
Width = 150 |
115 |
Height = 148 |
116 |
Align = alClient |
117 |
ItemHeight = 13 |
118 |
TabOrder = 0 |
119 |
OnClick = listClick |
120 |
end |
121 |
object panel_extension: TPanel |
122 |
Left = 0 |
123 |
Top = 148 |
124 |
Width = 150 |
125 |
Height = 25 |
126 |
Align = alBottom |
127 |
BevelOuter = bvNone |
128 |
TabOrder = 1 |
129 |
OnResize = panel_extensionResize |
130 |
object combo_extension: TComboBox |
131 |
Left = 2 |
132 |
Top = 2 |
133 |
Width = 145 |
134 |
Height = 21 |
135 |
Style = csDropDownList |
136 |
DropDownCount = 12 |
137 |
Font.Charset = DEFAULT_CHARSET |
138 |
Font.Color = clWindowText |
139 |
Font.Height = -11 |
140 |
Font.Name = 'Tahoma' |
141 |
Font.Style = [] |
142 |
ItemHeight = 13 |
143 |
ParentFont = False |
144 |
Sorted = True |
145 |
TabOrder = 0 |
146 |
OnClick = combo_extensionClick |
147 |
end |
148 |
end |
149 |
end |
150 |
object timer: TTimer |
151 |
Enabled = False |
152 |
OnTimer = timerTimer |
153 |
Left = 144 |
154 |
Top = 24 |
155 |
end |
156 |
end |