mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-07 19:37:37 +01:00
implemented compiler function Low(array)
git-svn-id: trunk@2996 -
This commit is contained in:
parent
8c2ccf110c
commit
910433f714
11
ide/main.pp
11
ide/main.pp
@ -95,6 +95,7 @@ type
|
||||
//procedure FormShow(Sender : TObject);
|
||||
procedure FormClose(Sender : TObject; var Action: TCloseAction);
|
||||
procedure FormCloseQuery(Sender : TObject; var CanClose: boolean);
|
||||
procedure MainIDEResize(Sender: TObject);
|
||||
//procedure FormPaint(Sender : TObject);
|
||||
procedure OnApplicationUserInput(Sender: TObject; Msg: Cardinal);
|
||||
procedure OnApplicationIdle(Sender: TObject);
|
||||
@ -819,6 +820,7 @@ begin
|
||||
// build and position the MainIDE form
|
||||
Name := NonModalIDEWindowNames[nmiwMainIDEName];
|
||||
EnvironmentOptions.IDEWindowLayoutList.Apply(TForm(Self),Name);
|
||||
OnResize:=@MainIDEResize;
|
||||
|
||||
{$IFNDEF EnablePkgs}
|
||||
InitIDEComponents;
|
||||
@ -988,6 +990,12 @@ begin
|
||||
CanClose:=(DoCloseProject <> mrAbort);
|
||||
end;
|
||||
|
||||
procedure TMainIDE.MainIDEResize(Sender: TObject);
|
||||
begin
|
||||
if ComponentNotebook<>nil then
|
||||
ComponentNotebook.Width:=ClientWidth-ComponentNotebook.Left;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------}
|
||||
type
|
||||
TMoveFlags = set of (mfTop, mfLeft);
|
||||
@ -8653,6 +8661,9 @@ end.
|
||||
|
||||
{ =============================================================================
|
||||
$Log$
|
||||
Revision 1.557 2003/05/06 21:54:57 mattias
|
||||
implemented compiler function Low(array)
|
||||
|
||||
Revision 1.556 2003/05/06 08:40:57 mattias
|
||||
added export procedure specifier
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user