91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
38 lines
No EOL
1,013 B
Lua
38 lines
No EOL
1,013 B
Lua
-- In this file we define functions that serves for help windows
|
|
|
|
------------------------------------------------------------------------------------------------------------
|
|
-- create the game namespace without reseting if already created in an other file.
|
|
if (help==nil) then
|
|
help= {};
|
|
end
|
|
|
|
------------------------------------------------------------------------------------------------------------
|
|
--
|
|
function help:closeCSBrowserHeader()
|
|
local ui = getUI('ui:interface:cs_browser');
|
|
|
|
-- save size
|
|
ui_cs_browser_h = ui.h;
|
|
ui_cs_browser_w = ui.w;
|
|
|
|
-- reduce window size
|
|
ui.pop_min_h = 32;
|
|
ui.h = 0;
|
|
ui.w = 216;
|
|
end
|
|
|
|
------------------------------------------------------------------------------------------------------------
|
|
--
|
|
function help:openCSBrowserHeader()
|
|
local ui = getUI('ui:interface:cs_browser');
|
|
ui.pop_min_h = 96;
|
|
|
|
-- set size from saved values
|
|
if (ui_cs_browser_h ~= nil) then
|
|
ui.h = ui_cs_browser_h;
|
|
end
|
|
|
|
if (ui_cs_browser_w ~= nil) then
|
|
ui.w = ui_cs_browser_w;
|
|
end
|
|
end |