mirror of
https://github.com/blondie7575/WeeGUI.git
synced 2024-12-13 00:29:12 +00:00
Markdown test
This commit is contained in:
parent
56f2461b64
commit
29897d54c6
@ -317,10 +317,31 @@ These routines are used for creating, modifying, and working with views.
|
||||
Creates a new WeeGUI view. Up to 16 are allowed in one program. If a view is created with the same ID as a previous view, the previous view is destroyed. Views are not shown when created. Call *WGPaintView* to display it.
|
||||
|
||||
|
||||
<table>
|
||||
<tr><td>Hello</td><td>
|
||||
World</td></tr>
|
||||
</table>
|
||||
<table width="100%">
|
||||
<tr><th>Assembly</th><th>Applesoft</th></tr><tr><td><pre>
|
||||
X: WGCreateView
|
||||
PARAM0: Pointer to configuration block (LSB)
|
||||
PARAM1: Pointer to configuration block (MSB)
|
||||
|
||||
Configuration block consists of eight bytes:
|
||||
0: View ID (0-15)
|
||||
1: Style (0 for plain, 1 for fancy)
|
||||
2: Left edge of view
|
||||
3: Top edge of view
|
||||
4: Visible width of view
|
||||
5: Visible height of view
|
||||
6: Width of view's content
|
||||
7: Height of view's content
|
||||
</pre></td><td><pre>
|
||||
&WINDW( View ID,
|
||||
Style (0 for plain, 1 for fancy),
|
||||
Left edge,
|
||||
Top edge,
|
||||
View width,
|
||||
View height,
|
||||
Content width,
|
||||
Content height)
|
||||
</pre></td></tr></table>
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user