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