1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5    <meta http-equiv="Content-Style-Type" content="text/css" />
6    <link rel="stylesheet" href="../../../../css/manpage.css" type="text/css" />
7    <style type="text/css"><!--
8      span.static_style
9      {
10        font-size			: 8pt;
11        color				: white;
12        font-weight			: bold;
13        background			: #44f;
14        border-left			: solid 1px #aaf;
15        border-top			: solid 1px #aaf;
16        border-right		: solid 1px #00c;
17        border-bottom		: solid 1px #00c;
18        padding-left		: 2px;
19        padding-right		: 2px;
20      }
21
22      span.virtual_style
23      {
24        font-size			 : 8pt;
25        color				 : white;
26        font-weight			: bold;
27        background			: #0a0;
28        border-left			: solid 1px #0f0;
29        border-top			: solid 1px #0f0;
30        border-right		: solid 1px #060;
31        border-bottom		: solid 1px #060;
32        padding-left		: 2px;
33        padding-right		: 2px;
34      }
35
36      span.protected_style
37      {
38        font-size			 : 8pt;
39        color				 : white;
40        font-weight			: bold;
41        background			: #444;
42        border-left			: solid 1px #ccc;
43        border-top			: solid 1px #ccc;
44        border-right		: solid 1px #222;
45        border-bottom		: solid 1px #222;
46        padding-left		: 2px;
47        padding-right		: 2px;
48      }
49        --></style>
50    <title>nw::lyt::res::Pane</title>
51  </head>
52  <body>
53    <h1>nw::lyt::res::Pane Structure</h1>
54    <h2>Syntax</h2>
55    <div class="section">
56      <pre class="definition">struct Pane
57{
58   <a href="../../../../nw/ut/BinaryBlockHeader/Overview.html">ut::BinaryBlockHeader</a> blockHeader;
59   <a href="../../../../nw/ut/ResU8.html">ut::ResU8</a> flag;
60   <a href="../../../../nw/ut/ResU8.html">ut::ResU8</a> basePosition;
61   <a href="../../../../nw/ut/ResU8.html">ut::ResU8</a> alpha;
62   <a href="../../../../nw/ut/ResU8.html">ut::ResU8</a> padding[1];
63   char name[ResourceNameStrMax];
64   char userData[UserDataStrMax];
65   <a href="../../../../nw/lyt/res/Vec3/Overview.html">Vec3</a> translate;
66   <a href="../../../../nw/lyt/res/Vec3/Overview.html">Vec3</a> rotate;
67   <a href="../../../../nw/lyt/res/Vec2/Overview.html">Vec2</a> scale;
68   <a href="../../../../nw/lyt/Size/Overview.html">Size</a>            size;
69};
70</pre>
71    </div>
72    <h2>Description</h2>
73    <div class="section">
74      <p>Data block for defining a null pane.</p><p><a href="../../../../nw/lyt/res/DATABLOCKKIND_PANE.html">res::DATABLOCKKIND_PANE</a> is specified for <CODE>kind</CODE> in <CODE>blockHeader</CODE>. </p></div>
75    <a name="variable" id="variable">
76      <h2>Member Variables</h2>
77      <div class="section">
78        <table class="members">
79          <tr>
80            <td width="100"> </td>
81            <th>
82              <span class="argument">blockHeader</span>
83            </th>
84            <td>Header.</td>
85          </tr>
86          <tr>
87            <td width="100"> </td>
88            <th>
89              <span class="argument">flag</span>
90            </th>
91            <td>A flag. (<a href="../../../../nw/lyt/PaneFlag.html">lyt::PaneFlag</a>)</td>
92          </tr>
93          <tr>
94            <td width="100"> </td>
95            <th>
96              <span class="argument">basePosition</span>
97            </th>
98            <td>Base position. (<a href="../../../../nw/lyt/HorizontalPosition.html">lyt::HorizontalPosition</a> * HORIZONTALPOSITION_MAX + <a href="../../../../nw/lyt/VerticalPosition.html">lyt::VerticalPosition</a>)。</td>
99          </tr>
100          <tr>
101            <td width="100"> </td>
102            <th>
103              <span class="argument">alpha</span>
104            </th>
105            <td>Alpha value.</td>
106          </tr>
107          <tr>
108            <td width="100"> </td>
109            <th>
110              <span class="argument">padding</span>
111            </th>
112            <td>(Not used.)</td>
113          </tr>
114          <tr>
115            <td width="100"> </td>
116            <th>
117              <span class="argument">name</span>
118            </th>
119            <td>Pane name.</td>
120          </tr>
121          <tr>
122            <td width="100"> </td>
123            <th>
124              <span class="argument">userData</span>
125            </th>
126            <td>User data.</td>
127          </tr>
128          <tr>
129            <td width="100"> </td>
130            <th>
131              <span class="argument">translate</span>
132            </th>
133            <td>Translation value.</td>
134          </tr>
135          <tr>
136            <td width="100"> </td>
137            <th>
138              <span class="argument">rotate</span>
139            </th>
140            <td>Rotation value.</td>
141          </tr>
142          <tr>
143            <td width="100"> </td>
144            <th>
145              <span class="argument">scale</span>
146            </th>
147            <td>The scale value.</td>
148          </tr>
149          <tr>
150            <td width="100"> </td>
151            <th>
152              <span class="argument"><CODE>size</CODE></span>
153            </th>
154            <td>Size.</td>
155          </tr> </table>
156      </div>
157    </a>
158    <h2>See Also</h2>
159    <div class="section">
160      <p class="reference"><a href="../../../../nw/lyt/res/Lyt/Overview.html">Lyt</a><br /><a href="../../../../nw/lyt/res/PaneBegin/Overview.html">PaneBegin</a><br /> </p>
161    </div>
162    <h2>Revision History</h2>
163    <div class="section">
164      <dl class="history">
165        <dt>2010/01/26</dt>
166        <dd>Initial version.<br />
167        </dd>
168      </dl>
169    </div>
170  <hr><p>CONFIDENTIAL</p></body>
171</html>