mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-21 07:19:25 +02:00
126 lines
3.7 KiB
ObjectPascal
126 lines
3.7 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* Gtk2WSExtDlgs.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 copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
unit Gtk2WSExtDlgs;
|
|
|
|
{$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
|
|
|
|
{ TGtk2WSPreviewFileControl }
|
|
|
|
TGtk2WSPreviewFileControl = class(TWSPreviewFileControl)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSPreviewFileDialog }
|
|
|
|
TGtk2WSPreviewFileDialog = class(TWSPreviewFileDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSOpenPictureDialog }
|
|
|
|
TGtk2WSOpenPictureDialog = class(TWSOpenPictureDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSSavePictureDialog }
|
|
|
|
TGtk2WSSavePictureDialog = class(TWSSavePictureDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSCalculatorDialog }
|
|
|
|
TGtk2WSCalculatorDialog = class(TWSCalculatorDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSCalculatorForm }
|
|
|
|
TGtk2WSCalculatorForm = class(TWSCalculatorForm)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSCalendarDialogForm }
|
|
|
|
TGtk2WSCalendarDialogForm = class(TWSCalendarDialogForm)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TGtk2WSCalendarDialog }
|
|
|
|
TGtk2WSCalendarDialog = class(TWSCalendarDialog)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
// RegisterWSComponent(TPreviewFileControl, TGtk2WSPreviewFileControl);
|
|
// RegisterWSComponent(TPreviewFileDialog, TGtk2WSPreviewFileDialog);
|
|
// RegisterWSComponent(TOpenPictureDialog, TGtk2WSOpenPictureDialog);
|
|
// RegisterWSComponent(TSavePictureDialog, TGtk2WSSavePictureDialog);
|
|
// RegisterWSComponent(TCalculatorDialog, TGtk2WSCalculatorDialog);
|
|
// RegisterWSComponent(TCalculatorForm, TGtk2WSCalculatorForm);
|
|
// RegisterWSComponent(TCalendarDialogForm, TGtk2WSCalendarDialogForm);
|
|
// RegisterWSComponent(TCalendarDialog, TGtk2WSCalendarDialog);
|
|
////////////////////////////////////////////////////
|
|
end. |