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