 a8a50d3df3
			
		
	
	
		a8a50d3df3
		
	
	
	
	
		
			
			git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5598 8e941d3f-bd1b-0410-a28a-d453659cc2b4
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit mbReg;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   Classes, SysUtils;
 | |
| 
 | |
| procedure Register;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| //{$R mbReg.res}
 | |
| 
 | |
| uses
 | |
|   ActnList,
 | |
|   RColorPicker, GColorPicker, BColorPicker,
 | |
|   RAxisColorPicker, GAxisColorPicker, BAxisColorPicker,
 | |
|   CColorPicker, MColorPicker, YColorPicker, KColorPicker,
 | |
|   HRingPicker,
 | |
|   HColorPicker, SColorPicker, LVColorPicker, //LColorPicker, VColorPicker,
 | |
|   HSColorPicker, HSCirclePicker, HSLColorPicker, HSLRingPicker,
 | |
|   SLColorPicker, SLHColorPicker,
 | |
|   CIEAColorPicker, CIEBColorPicker, CIELColorPicker,
 | |
|   HexaColorPicker, mbColorPreview, mbColorList, mbColorTree, mbColorPalette,
 | |
|   mbOfficeColorDialog, mbDeskPickerButton,
 | |
|   LResources;
 | |
| 
 | |
| procedure Register;
 | |
| begin
 | |
|   RegisterComponents('mbColor Lib', [
 | |
|     TRColorPicker, TGColorPicker, TBColorPicker,
 | |
|     TRAxisColorPicker, TGAxisColorPicker, TBAxisColorPicker,
 | |
|     TCColorPicker, TMColorPicker, TYColorPicker, TKColorPicker,
 | |
|     THRingPicker, THColorPicker, TSColorPicker, TLVColorPicker,
 | |
|     THSColorPicker, THSCirclePicker, THSLColorPicker, THSLRingPicker,
 | |
|     TSLColorPicker, TSLHColorPicker,
 | |
|     TCIEAColorPicker, TCIEBColorPicker, TCIELColorPicker,
 | |
|     THexaColorPicker, TmbColorPreview, TmbColorList, TmbColorTree,
 | |
|     TmbColorPalette, TmbOfficeColorDialog, TmbDeskPickerButton
 | |
|   ]);
 | |
| 
 | |
|   RegisterActions('mbColorLib', [TmbDeskPickerAction], nil);
 | |
| end;
 | |
| 
 | |
| 
 | |
| {$IFDEF FPC}
 | |
| initialization
 | |
|   {$I mbReg.lrs}
 | |
| {$ENDIF}
 | |
| 
 | |
| end.
 | |
| 
 |