amxmodx/editor/studio/UnitfrmAutoIndent.pas

33 lines
694 B
ObjectPascal
Raw Normal View History

2005-08-26 22:29:39 +04:00
unit UnitfrmAutoIndent;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, TFlatCheckBoxUnit, TFlatButtonUnit,
TFlatEditUnit, TFlatRadioButtonUnit;
2005-08-26 22:29:39 +04:00
type
TfrmAutoIndent = class(TForm)
cmdClose: TFlatButton;
pnlCheckboxes: TPanel;
2005-08-26 22:29:39 +04:00
chkUnindentPressingClosingBrace: TFlatCheckBox;
chkUnindentLine: TFlatCheckBox;
chkIndentOpeningBrace: TFlatCheckBox;
pnlIndentStyle: TPanel;
optTwoSpaces: TFlatRadioButton;
optTabs: TFlatRadioButton;
Label1: TLabel;
optSomethingElse: TFlatRadioButton;
txtSomethingElse: TFlatEdit;
2005-08-26 22:29:39 +04:00
end;
var
frmAutoIndent: TfrmAutoIndent;
implementation
{$R *.DFM}
end.