1{ $Id$}
2{
3 *****************************************************************************
4 *                             Gtk2WSExtDlgs.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 Gtk2WSExtDlgs;
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  { TGtk2WSPreviewFileControl }
37
38  TGtk2WSPreviewFileControl = class(TWSPreviewFileControl)
39  private
40  protected
41  public
42  end;
43
44  { TGtk2WSPreviewFileDialog }
45
46  TGtk2WSPreviewFileDialog = class(TWSPreviewFileDialog)
47  private
48  protected
49  public
50  end;
51
52  { TGtk2WSOpenPictureDialog }
53
54  TGtk2WSOpenPictureDialog = class(TWSOpenPictureDialog)
55  private
56  protected
57  public
58  end;
59
60  { TGtk2WSSavePictureDialog }
61
62  TGtk2WSSavePictureDialog = class(TWSSavePictureDialog)
63  private
64  protected
65  public
66  end;
67
68  { TGtk2WSCalculatorDialog }
69
70  TGtk2WSCalculatorDialog = class(TWSCalculatorDialog)
71  private
72  protected
73  public
74  end;
75
76  { TGtk2WSCalculatorForm }
77
78  TGtk2WSCalculatorForm = class(TWSCalculatorForm)
79  private
80  protected
81  public
82  end;
83
84  { TGtk2WSCalendarDialogForm }
85
86  TGtk2WSCalendarDialogForm = class(TWSCalendarDialogForm)
87  private
88  protected
89  public
90  end;
91
92  { TGtk2WSCalendarDialog }
93
94  TGtk2WSCalendarDialog = class(TWSCalendarDialog)
95  private
96  protected
97  public
98  end;
99
100
101implementation
102
103end.
104