| 1 |
lars |
1 |
{include file="header.tpl" top3=true}
|
|
|
2 |
<!-- Start of Class Data -->
|
|
|
3 |
<h2>
|
|
|
4 |
{if $is_interface}Interface{else}Class{/if} {$class_name}
|
|
|
5 |
</h2> (line <span class="linenumber">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>)
|
|
|
6 |
<div class="tab-pane" id="tabPane1">
|
|
|
7 |
<script type="text/javascript">
|
|
|
8 |
tp1 = new WebFXTabPane( document.getElementById( "tabPane1" ));
|
|
|
9 |
</script>
|
|
|
10 |
|
|
|
11 |
<div class="tab-page" id="Description">
|
|
|
12 |
<h2 class="tab">Description</h2>
|
|
|
13 |
<pre>
|
|
|
14 |
{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}
|
|
|
15 |
</pre>
|
|
|
16 |
{if $tutorial}
|
|
|
17 |
<div class="maintutorial">Class Tutorial: {$tutorial}</div>
|
|
|
18 |
{/if}
|
|
|
19 |
{if $conflicts.conflict_type}
|
|
|
20 |
<div align="left"><span class="font10bold" style="color:#FF0000">Warning:</span> Conflicts with classes:<br />
|
|
|
21 |
{section name=me loop=$conflicts.conflicts}
|
|
|
22 |
{$conflicts.conflicts[me]}<br />
|
|
|
23 |
{/section}
|
|
|
24 |
</div>
|
|
|
25 |
{/if}
|
|
|
26 |
<p>
|
|
|
27 |
<b><i>Located in File: <a href="{$page_link}">{$source_location}</a></i></b><br>
|
|
|
28 |
</p>
|
|
|
29 |
{include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc}
|
|
|
30 |
<br /><hr />
|
|
|
31 |
{if $children}
|
|
|
32 |
<span class="type">Classes extended from {$class_name}:</span>
|
|
|
33 |
{section name=kids loop=$children}
|
|
|
34 |
<dl>
|
|
|
35 |
<dt>{$children[kids].link}</dt>
|
|
|
36 |
<dd>{$children[kids].sdesc}</dd>
|
|
|
37 |
</dl>
|
|
|
38 |
{/section}</p>
|
|
|
39 |
{/if}
|
|
|
40 |
</div>
|
|
|
41 |
<script type="text/javascript">tp1.addTabPage( document.getElementById( "Description" ) );</script>
|
|
|
42 |
<div class="tab-page" id="tabPage1">
|
|
|
43 |
{include file="var.tpl"}
|
|
|
44 |
</div>
|
|
|
45 |
<div class="tab-page" id="constantsTabpage">
|
|
|
46 |
{include file="const.tpl"}
|
|
|
47 |
</div>
|
|
|
48 |
<div class="tab-page" id="tabPage2">
|
|
|
49 |
{include file="method.tpl"}
|
|
|
50 |
</div>
|
|
|
51 |
<div class="tab-page" id="iVars">
|
|
|
52 |
<h2 class="tab">Inherited Variables</h2>
|
|
|
53 |
<script type="text/javascript">tp1.addTabPage( document.getElementById( "iVars" ) );</script>
|
|
|
54 |
<!-- =========== VAR INHERITED SUMMARY =========== -->
|
|
|
55 |
<A NAME='var_inherited_summary'><!-- --></A>
|
|
|
56 |
<h3>Inherited Class Variable Summary</h3>
|
|
|
57 |
|
|
|
58 |
{section name=ivars loop=$ivars}
|
|
|
59 |
<!-- =========== Summary =========== -->
|
|
|
60 |
<h4>Inherited From Class {$ivars[ivars].parent_class}</h4>
|
|
|
61 |
{section name=ivars2 loop=$ivars[ivars].ivars}
|
|
|
62 |
<h4>
|
|
|
63 |
<img src="{$subdir}media/images/PublicProperty.gif" border="0" /><strong class="property"> {$ivars[ivars].ivars[ivars2].link}</strong> - {$ivars[ivars].ivars[ivars2].sdesc}
|
|
|
64 |
</h4>
|
|
|
65 |
{/section}
|
|
|
66 |
{/section}
|
|
|
67 |
</div>
|
|
|
68 |
<div class="tab-page" id="iMethods">
|
|
|
69 |
<h2 class="tab">Inherited Methods</h2>
|
|
|
70 |
<script type="text/javascript">tp1.addTabPage( document.getElementById( "iMethods" ) );</script>
|
|
|
71 |
<!-- =========== INHERITED METHOD SUMMARY =========== -->
|
|
|
72 |
<A NAME='functions_inherited'><!-- --></A>
|
|
|
73 |
<h3>Inherited Method Summary</h3>
|
|
|
74 |
|
|
|
75 |
{section name=imethods loop=$imethods}
|
|
|
76 |
<!-- =========== Summary =========== -->
|
|
|
77 |
<h4>Inherited From Class {$imethods[imethods].parent_class}</h4>
|
|
|
78 |
{section name=im2 loop=$imethods[imethods].imethods}
|
|
|
79 |
<h4>
|
|
|
80 |
<img src="{$subdir}media/images/{if $imethods[imethods].imethods[im2].constructor}Constructor{elseif $imethods[imethods].imethods[im2].destructor}Destructor{else}PublicMethod{/if}.gif" border="0" /><strong class="method"> {$imethods[imethods].imethods[im2].link}</strong> - {$imethods[imethods].imethods[im2].sdesc}
|
|
|
81 |
</h4>
|
|
|
82 |
|
|
|
83 |
{/section}
|
|
|
84 |
<br />
|
|
|
85 |
{/section}
|
|
|
86 |
</div>
|
|
|
87 |
</div>
|
|
|
88 |
<script type="text/javascript">
|
|
|
89 |
//<![CDATA[
|
|
|
90 |
|
|
|
91 |
setupAllTabs();
|
|
|
92 |
|
|
|
93 |
//]]>
|
|
|
94 |
</script>
|
|
|
95 |
{include file="footer.tpl"}
|