lazarus/lcl/interfaces/qt5/qtwsextdlgs.pp
zeljko c28f46376f Qt5: ho ho ho
git-svn-id: trunk@53806 -
2016-12-30 15:03:51 +00:00

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.