Last change
on this file since 8555 was
7403,
checked in by dafrick, 14 years ago
|
Merged notifications branch back to trunk.
|
-
Property svn:eol-style set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | -- GUISheet.lua |
---|
2 | |
---|
3 | local P = {} |
---|
4 | _G[_REQUIREDNAME or "GUISheet"] = P |
---|
5 | P.__index = P |
---|
6 | |
---|
7 | -- Don't use directly --> use HUDSheet.new or MenuSheet.new |
---|
8 | function P.new(_name) |
---|
9 | local newSheet = { name = _name } |
---|
10 | setmetatable(newSheet, P) |
---|
11 | return newSheet |
---|
12 | end |
---|
13 | |
---|
14 | -- Override this function if you need to do work on load |
---|
15 | function P:onLoad() |
---|
16 | end |
---|
17 | |
---|
18 | -- show function for the GUI |
---|
19 | function P:show() |
---|
20 | self.window:show() |
---|
21 | self.bVisible = true |
---|
22 | |
---|
23 | self:onShow() |
---|
24 | end |
---|
25 | |
---|
26 | -- Override this function if you need to do work on show |
---|
27 | function P:onShow() |
---|
28 | end |
---|
29 | |
---|
30 | -- hide function for the GUI |
---|
31 | function P:hide() |
---|
32 | self.window:hide() |
---|
33 | self.bVisible = false |
---|
34 | |
---|
35 | self:onHide() |
---|
36 | end |
---|
37 | |
---|
38 | -- Override this function if you need to do work on hide |
---|
39 | function P:onHide() |
---|
40 | end |
---|
41 | |
---|
42 | -- Override this function if you need to do work just after the sheet has been hidden |
---|
43 | function P:afterHide() |
---|
44 | end |
---|
45 | |
---|
46 | function P:load() |
---|
47 | -- Load the layout that describes the sheet |
---|
48 | self.window = winMgr:loadWindowLayout(self.name .. ".layout") |
---|
49 | if self.window == nil then |
---|
50 | error("Could not load layout file for GUI sheet '"..self.name.."'") |
---|
51 | end |
---|
52 | -- Hide it at first |
---|
53 | self:hide() |
---|
54 | -- Allow sheets to do some work upon loading |
---|
55 | self:onLoad() |
---|
56 | |
---|
57 | -- Also load additional sheets to avoid display lags |
---|
58 | if self.loadAlong then |
---|
59 | for k, sheet in pairs(self.loadAlong) do |
---|
60 | loadSheet(sheet) |
---|
61 | end |
---|
62 | end |
---|
63 | return self |
---|
64 | end |
---|
65 | |
---|
66 | return P |
---|
Note: See
TracBrowser
for help on using the repository browser.