git-svn-id: https://spexeah.com:8443/svn/Asuro@633 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
b94a5932a2
commit
0618e0a10a
BIN
bin/kernel.bin
BIN
bin/kernel.bin
Binary file not shown.
Binary file not shown.
BIN
lib/asuro.ppu
BIN
lib/asuro.ppu
Binary file not shown.
BIN
lib/console.o
BIN
lib/console.o
Binary file not shown.
BIN
lib/console.ppu
BIN
lib/console.ppu
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/libpsystem.a
BIN
lib/libpsystem.a
Binary file not shown.
BIN
lib/terminal.ppu
BIN
lib/terminal.ppu
Binary file not shown.
@ -356,14 +356,22 @@ end;
|
|||||||
procedure RemoveFromZOrder(WND : HWND);
|
procedure RemoveFromZOrder(WND : HWND);
|
||||||
var
|
var
|
||||||
i : uint32;
|
i : uint32;
|
||||||
|
idx : uint32;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
idx:= MAX_WINDOWS;
|
||||||
for i:=0 to MAX_WINDOWS-1 do begin
|
for i:=0 to MAX_WINDOWS-1 do begin
|
||||||
if WindowManager.Z_Order[i] = WND then begin
|
if WindowManager.Z_Order[i] = WND then begin
|
||||||
WindowManager.Z_Order[i]:= MAX_WINDOWS;
|
WindowManager.Z_Order[i]:= MAX_WINDOWS;
|
||||||
|
idx:= i;
|
||||||
break;
|
break;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
if idx <> MAX_WINDOWS then begin
|
||||||
|
for i:=idx to MAX_WINDOWS-1 do begin
|
||||||
|
WindowManager.Z_Order[i]:= WindowManager.Z_Order[i+1];
|
||||||
|
end;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure FocusZOrder(WND : HWND);
|
procedure FocusZOrder(WND : HWND);
|
||||||
|
@ -3,11 +3,11 @@ unit asuro;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
const
|
const
|
||||||
VERSION = '1.0.0-625a';
|
VERSION = '1.0.0-632a';
|
||||||
VERSION_MAJOR = '1';
|
VERSION_MAJOR = '1';
|
||||||
VERSION_MINOR = '0';
|
VERSION_MINOR = '0';
|
||||||
VERSION_SUB = '0';
|
VERSION_SUB = '0';
|
||||||
REVISION = '625';
|
REVISION = '632';
|
||||||
RELEASE = 'a';
|
RELEASE = 'a';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user