amxmodx/editor/studio/UnitfrmAutoIndent.pas

26 lines
467 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;
type
TfrmAutoIndent = class(TForm)
cmdClose: TFlatButton;
pnlCheckboxes: TPanel;
2005-08-26 22:29:39 +04:00
chkUnindentPressingClosingBrace: TFlatCheckBox;
chkUnindentLine: TFlatCheckBox;
chkIndentOpeningBrace: TFlatCheckBox;
end;
var
frmAutoIndent: TfrmAutoIndent;
implementation
{$R *.DFM}
end.