mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
87 lines
2.1 KiB
ObjectPascal
87 lines
2.1 KiB
ObjectPascal
{
|
|
*****************************************************************************
|
|
* QtWSExtDlgs.pp *
|
|
* -------------- *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
unit QtWSExtDlgs;
|
|
|
|
{$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
|
|
|
|
{ TQtWSPreviewFileControl }
|
|
|
|
TQtWSPreviewFileControl = class(TWSPreviewFileControl)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSPreviewFileDialog }
|
|
|
|
TQtWSPreviewFileDialog = class(TWSPreviewFileDialog)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSOpenPictureDialog }
|
|
|
|
TQtWSOpenPictureDialog = class(TWSOpenPictureDialog)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSSavePictureDialog }
|
|
|
|
TQtWSSavePictureDialog = class(TWSSavePictureDialog)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSCalculatorDialog }
|
|
|
|
TQtWSCalculatorDialog = class(TWSCalculatorDialog)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSCalculatorForm }
|
|
|
|
TQtWSCalculatorForm = class(TWSCalculatorForm)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSCalendarDialogForm }
|
|
|
|
TQtWSCalendarDialogForm = class(TWSCalendarDialogForm)
|
|
published
|
|
end;
|
|
|
|
{ TQtWSCalendarDialog }
|
|
|
|
TQtWSCalendarDialog = class(TWSCalendarDialog)
|
|
published
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|