blob: ee3c6f7f01e90451ea1efe57614b4774a3c8d52b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
unit UScreenLoading;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses
UMenu,
SDL,
SysUtils,
UThemes,
gl;
type
TScreenLoading = class(TMenu)
public
Fadeout: boolean;
constructor Create; override;
procedure onShow; override;
function ParseInput(PressedKey: Cardinal; CharCode: WideChar; PressedDown: Boolean): Boolean; override;
function GetBGTexNum: GLUInt;
end;
implementation
uses UGraphic,
UTime;
function TScreenLoading.ParseInput(PressedKey: Cardinal; CharCode: WideChar; PressedDown: Boolean): Boolean;
begin
Result := true;
end;
constructor TScreenLoading.Create;
begin
inherited Create;
LoadFromTheme(Theme.Loading);
Fadeout := false;
end;
procedure TScreenLoading.onShow;
begin
inherited;
end;
function TScreenLoading.GetBGTexNum: GLUInt;
begin
Result := Self.BackImg.TexNum;
end;
end.
|