mirror of
http://gitlab.expertsoft.com.ua/git/expertcad
synced 2026-01-11 17:25:39 +02:00
34 lines
689 B
ObjectPascal
34 lines
689 B
ObjectPascal
unit Form3d_Save;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, cxLookAndFeelPainters, StdCtrls, cxButtons, cxRadioGroup,
|
|
cxControls, cxGroupBox, siComp, siLngLnk, cxGraphics, cxLookAndFeels, Menus,
|
|
cxContainer, cxEdit;
|
|
|
|
type
|
|
Tfrm3D_Save = class(TForm)
|
|
bOK: TcxButton;
|
|
bCancel: TcxButton;
|
|
cxGroupBox1: TcxGroupBox;
|
|
rbLow: TcxRadioButton;
|
|
rbNormal: TcxRadioButton;
|
|
rbHigh: TcxRadioButton;
|
|
lng_Forms: TsiLangLinked;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frm3D_Save: Tfrm3D_Save;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|