mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-02-19 19:56:56 +01:00
126 lines
3.8 KiB
ObjectPascal
126 lines
3.8 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* CarbonWSExtDlgs.pp *
|
|
* -------------- *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
unit CarbonWSExtDlgs;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To get as little as posible circles,
|
|
// uncomment only when needed for registration
|
|
////////////////////////////////////////////////////
|
|
// ExtDlgs,
|
|
////////////////////////////////////////////////////
|
|
WSExtDlgs, WSLCLClasses;
|
|
|
|
type
|
|
|
|
{ TCarbonWSPreviewFileControl }
|
|
|
|
TCarbonWSPreviewFileControl = class(TWSPreviewFileControl)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSPreviewFileDialog }
|
|
|
|
TCarbonWSPreviewFileDialog = class(TWSPreviewFileDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSOpenPictureDialog }
|
|
|
|
TCarbonWSOpenPictureDialog = class(TWSOpenPictureDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSSavePictureDialog }
|
|
|
|
TCarbonWSSavePictureDialog = class(TWSSavePictureDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCalculatorDialog }
|
|
|
|
TCarbonWSCalculatorDialog = class(TWSCalculatorDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCalculatorForm }
|
|
|
|
TCarbonWSCalculatorForm = class(TWSCalculatorForm)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCalendarDialogForm }
|
|
|
|
TCarbonWSCalendarDialogForm = class(TWSCalendarDialogForm)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCalendarDialog }
|
|
|
|
TCarbonWSCalendarDialog = class(TWSCalendarDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
// RegisterWSComponent(TPreviewFileControl, TCarbonWSPreviewFileControl);
|
|
// RegisterWSComponent(TPreviewFileDialog, TCarbonWSPreviewFileDialog);
|
|
// RegisterWSComponent(TOpenPictureDialog, TCarbonWSOpenPictureDialog);
|
|
// RegisterWSComponent(TSavePictureDialog, TCarbonWSSavePictureDialog);
|
|
// RegisterWSComponent(TCalculatorDialog, TCarbonWSCalculatorDialog);
|
|
// RegisterWSComponent(TCalculatorForm, TCarbonWSCalculatorForm);
|
|
// RegisterWSComponent(TCalendarDialogForm, TCarbonWSCalendarDialogForm);
|
|
// RegisterWSComponent(TCalendarDialog, TCarbonWSCalendarDialog);
|
|
////////////////////////////////////////////////////
|
|
end. |