mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 23:05:37 +03:00
25 lines
440 B
ObjectPascal
25 lines
440 B
ObjectPascal
|
unit UnitfrmAutoIndent;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
SysUtils, Windows, Messages, Classes, Graphics, Controls,
|
||
|
StdCtrls, ExtCtrls, Forms, TFlatCheckBoxUnit, TFlatButtonUnit;
|
||
|
|
||
|
type
|
||
|
TfrmAutoIndent = class(TForm)
|
||
|
chkUnindentPressingClosingBrace: TFlatCheckBox;
|
||
|
chkUnindentLine: TFlatCheckBox;
|
||
|
chkIndentOpeningBrace: TFlatCheckBox;
|
||
|
cmdClose: TFlatButton;
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
frmAutoIndent: TfrmAutoIndent;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.DFM}
|
||
|
|
||
|
end.
|