-
Notifications
You must be signed in to change notification settings - Fork 34
/
ColorOptionForm.dfm
97 lines (97 loc) · 1.7 KB
/
ColorOptionForm.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
object FColorOptions: TFColorOptions
Left = 0
Top = 0
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Color scaling options'
ClientHeight = 169
ClientWidth = 317
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Image1: TImage
Left = 242
Top = 13
Width = 64
Height = 13
end
object Image2: TImage
Left = 242
Top = 27
Width = 64
Height = 13
end
object Image3: TImage
Left = 242
Top = 49
Width = 64
Height = 13
end
object Image4: TImage
Left = 242
Top = 63
Width = 64
Height = 13
end
object Image5: TImage
Left = 242
Top = 85
Width = 64
Height = 13
end
object Image6: TImage
Left = 242
Top = 99
Width = 64
Height = 13
end
object Button1: TButton
Tag = 1
Left = 13
Top = 15
Width = 212
Height = 25
Caption = 'Downscale diffuse, keep reflections'
TabOrder = 0
OnClick = Button1Click
end
object Button2: TButton
Tag = 2
Left = 13
Top = 51
Width = 212
Height = 25
Caption = 'Downscale both'
TabOrder = 1
OnClick = Button1Click
end
object Button3: TButton
Tag = 3
Left = 13
Top = 87
Width = 212
Height = 25
Caption = 'Downscale specular'
TabOrder = 2
OnClick = Button1Click
end
object Button4: TButton
Tag = 4
Left = 89
Top = 134
Width = 136
Height = 25
Caption = 'Dunno, do nothing'
TabOrder = 3
OnClick = Button1Click
end
end