| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // Datamodule for GLSViewer
- //
- unit dGLSViewer;
- interface
- uses
- System.SysUtils,
- System.Classes,
- Vcl.Dialogs,
- Vcl.ExtDlgs;
- type
- TdmGLSViewer = class(TDataModule)
- ColorDialog: TColorDialog;
- OpenDialog: TOpenDialog;
- SaveDialog: TSaveDialog;
- odTextures: TOpenDialog;
- sdTextures: TSaveDialog;
- opDialog: TOpenPictureDialog;
- private
-
- public
-
- end;
- var
- dmGLSViewer: TdmGLSViewer;
- implementation
- {%CLASSGROUP 'Vcl.Controls.TControl'}
- {$R *.dfm}
- end.
|