2008-03-29 15:19:45 +00:00
|
|
|
-- This needs to be an ActorFrame because children will want to load the base and merge their own elements into the table.
|
2008-07-21 08:02:45 +00:00
|
|
|
t = Def.ActorFrame {};
|
2008-08-17 00:57:23 +00:00
|
|
|
t[#t+1] = StandardDecorationFromFile( "LeftFrame", "LeftFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "RightFrame", "RightFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "Header", "Header" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFile( "Footer", "Footer" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional( "Help", "Help" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional( "StyleIcon", "StyleIcon" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional( "StageFrame", "StageFrame" );
|
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional( "StageDisplay", "StageDisplay" );
|
2008-07-21 08:02:45 +00:00
|
|
|
return t;
|
|
|
|
|
|