-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmbColorLibD7.dpk
110 lines (106 loc) · 3.09 KB
/
mbColorLibD7.dpk
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
package mbColorLibD7;
{$I mxs.inc}
{$R *.res}
{$R 'HexaColorPicker.dcr'}
{$R 'HSColorPicker.dcr'}
{$R 'HSLColorPicker.dcr'}
{$R 'LColorPicker.dcr'}
{$R 'mbColorPreview.dcr'}
{$R 'mbDeskPickerButton.dcr'}
{$R 'mbOfficeColorDialog.dcr'}
{$R 'mbColorPalette.dcr'}
{$R 'HColorPicker.dcr'}
{$R 'SColorPicker.dcr'}
{$R 'VColorPicker.dcr'}
{$R 'SLColorPicker.dcr'}
{$R 'HSVColorPicker.dcr'}
{$R 'HRingPicker.dcr'}
{$R 'HSLRingPicker.dcr'}
{$R 'SLHColorPicker.dcr'}
{$R 'MColorPicker.dcr'}
{$R 'YColorPicker.dcr'}
{$R 'CColorPicker.dcr'}
{$R 'KColorPicker.dcr'}
{$R 'BAxisColorPicker.dcr'}
{$R 'CIEAColorPicker.dcr'}
{$R 'CIEBColorPicker.dcr'}
{$R 'CIELColorPicker.dcr'}
{$R 'GAxisColorPicker.dcr'}
{$R 'RAxisColorPicker.dcr'}
{$R 'BColorPicker.dcr'}
{$R 'GColorPicker.dcr'}
{$R 'RColorPicker.dcr'}
{$R 'mbColorTree.dcr'}
{$R 'mbColorList.dcr'}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'MXS -- mbColor Lib v2.0.1 (Color pickers)'}
{$IMPLICITBUILD OFF}
requires
rtl,
vcl{$IFDEF mbXP_Lib},
mbXPLibD7{$ENDIF};
contains
HexaColorPicker in 'HexaColorPicker.pas',
HSColorPicker in 'HSColorPicker.pas',
HSLColorPicker in 'HSLColorPicker.pas',
LColorPicker in 'LColorPicker.pas',
RGBHSLUtils in 'RGBHSLUtils.pas',
mbColorPreview in 'mbColorPreview.pas',
mbDeskPickerButton in 'mbDeskPickerButton.pas',
ScreenWin in 'ScreenWin.pas' {ScreenForm},
OfficeMoreColorsDialog in 'OfficeMoreColorsDialog.pas' {OfficeMoreColorsWin},
mbOfficeColorDialog in 'mbOfficeColorDialog.pas',
mbColorPalette in 'mbColorPalette.pas',
HTMLColors in 'HTMLColors.pas',
RGBHSVUtils in 'RGBHSVUtils.pas',
VColorPicker in 'VColorPicker.pas',
HColorPicker in 'HColorPicker.pas',
SColorPicker in 'SColorPicker.pas',
mbTrackBarPicker in 'mbTrackBarPicker.pas',
SLColorPicker in 'SLColorPicker.pas',
HRingPicker in 'HRingPicker.pas',
HSLRingPicker in 'HSLRingPicker.pas',
HSVColorPicker in 'HSVColorPicker.pas',
SLHColorPicker in 'SLHColorPicker.pas',
PalUtils in 'PalUtils.pas',
RGBCMYKUtils in 'RGBCMYKUtils.pas',
SelPropUtils in 'SelPropUtils.pas',
mbColorPickerControl in 'mbColorPickerControl.pas',
RGBCIEUtils in 'RGBCIEUtils.pas',
CColorPicker in 'CColorPicker.pas',
MColorPicker in 'MColorPicker.pas',
YColorPicker in 'YColorPicker.pas',
KColorPicker in 'KColorPicker.pas',
mbColorTree in 'mbColorTree.pas',
RAxisColorPicker in 'RAxisColorPicker.pas',
GAxisColorPicker in 'GAxisColorPicker.pas',
BAxisColorPicker in 'BAxisColorPicker.pas',
RColorPicker in 'RColorPicker.pas',
CIELColorPicker in 'CIELColorPicker.pas',
CIEAColorPicker in 'CIEAColorPicker.pas',
CIEBColorPicker in 'CIEBColorPicker.pas',
GColorPicker in 'GColorPicker.pas',
BColorPicker in 'BColorPicker.pas',
Scanlines in 'Scanlines.pas',
mbColorList in 'mbColorList.pas';
end.