expertcad/POWERCAD30/UNITS/Form3d_Save.pas
2025-05-12 10:07:51 +03:00

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.