mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-03 16:10:50 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@76 b9cfdab3-6d41-4d17-bbe4-086880011989
104 lines
1.4 KiB
HTML
104 lines
1.4 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
|
<title>Milsko GUI Toolkit Documentation</title>
|
|
</head>
|
|
<body>
|
|
<h1 align="center">Milsko GUI Toolkit Documentation</h1>
|
|
<hr>
|
|
<h2 align="center">Mw/Button.h</h2>
|
|
<p>
|
|
Button widget.
|
|
</p>
|
|
<hr>
|
|
<pre><code>MWDECL MwClass MwButtonClass;</code></pre>
|
|
<dd>
|
|
Button class.
|
|
</dd>
|
|
<hr>
|
|
<h2 align="center">Mw/Core.h</h2>
|
|
<p>
|
|
Core.
|
|
</p>
|
|
<hr>
|
|
<pre><code>#define MwDispatch(x, y)</code></pre>
|
|
<dd>
|
|
Dispatches a handler of widget class.
|
|
</dd>
|
|
<dt>
|
|
<img src="warning.gif" alt="warning">
|
|
</dt>
|
|
<dd>
|
|
Used internally.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>x</code>
|
|
</dt>
|
|
<dd>
|
|
Widget.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>y</code>
|
|
</dt>
|
|
<dd>
|
|
Handler name.
|
|
</dd>
|
|
<hr>
|
|
<pre><code>MWDECL MwWidget MwCreateWidget (
|
|
MwClass widget_class,
|
|
const char* name,
|
|
MwWidget parent,
|
|
int x,
|
|
int y,
|
|
unsigned int width,
|
|
unsigned int height
|
|
);</code></pre>
|
|
<dd>
|
|
Creates a widget.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>widget_class</code>
|
|
</dt>
|
|
<dd>
|
|
Widget class.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>name</code>
|
|
</dt>
|
|
<dd>
|
|
Widget name.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>parent</code>
|
|
</dt>
|
|
<dd>
|
|
Parent widget or <code>NULL</code>.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>x</code>
|
|
</dt>
|
|
<dd>
|
|
X.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>y</code>
|
|
</dt>
|
|
<dd>
|
|
Y.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>width</code>
|
|
</dt>
|
|
<dd>
|
|
Width.
|
|
</dd>
|
|
<dt>
|
|
Parameter <code>height</code>
|
|
</dt>
|
|
<dd>
|
|
Height.
|
|
</dd>
|
|
<hr>
|
|
</body>
|
|
</html>
|