1{ $Id: qtwsextdlgs.pp 41387 2013-05-24 18:30:06Z juha $}
2{
3 *****************************************************************************
4 *                              QtWSExtDlgs.pp                               *
5 *                              --------------                               *
6 *                                                                           *
7 *                                                                           *
8 *****************************************************************************
9
10 *****************************************************************************
11  This file is part of the Lazarus Component Library (LCL)
12
13  See the file COPYING.modifiedLGPL.txt, included in this distribution,
14  for details about the license.
15 *****************************************************************************
16}
17unit QtWSExtDlgs;
18
19{$mode objfpc}{$H+}
20
21interface
22
23uses
24////////////////////////////////////////////////////
25// I M P O R T A N T
26////////////////////////////////////////////////////
27// To get as little as posible circles,
28// uncomment only when needed for registration
29////////////////////////////////////////////////////
30//  ExtDlgs,
31////////////////////////////////////////////////////
32  WSExtDlgs, WSLCLClasses;
33
34type
35
36  { TQtWSPreviewFileControl }
37
38  TQtWSPreviewFileControl = class(TWSPreviewFileControl)
39  published
40  end;
41
42  { TQtWSPreviewFileDialog }
43
44  TQtWSPreviewFileDialog = class(TWSPreviewFileDialog)
45  published
46  end;
47
48  { TQtWSOpenPictureDialog }
49
50  TQtWSOpenPictureDialog = class(TWSOpenPictureDialog)
51  published
52  end;
53
54  { TQtWSSavePictureDialog }
55
56  TQtWSSavePictureDialog = class(TWSSavePictureDialog)
57  published
58  end;
59
60  { TQtWSCalculatorDialog }
61
62  TQtWSCalculatorDialog = class(TWSCalculatorDialog)
63  published
64  end;
65
66  { TQtWSCalculatorForm }
67
68  TQtWSCalculatorForm = class(TWSCalculatorForm)
69  published
70  end;
71
72  { TQtWSCalendarDialogForm }
73
74  TQtWSCalendarDialogForm = class(TWSCalendarDialogForm)
75  published
76  end;
77
78  { TQtWSCalendarDialog }
79
80  TQtWSCalendarDialog = class(TWSCalendarDialog)
81  published
82  end;
83
84
85implementation
86
87end.
88