mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-05 00:50:53 +00:00
more methods
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@330 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
117
doc/index.html
117
doc/index.html
@@ -188,6 +188,9 @@
|
||||
<dd>
|
||||
<a href="#Mw_Draw_h__MwDrawText">MwDrawText</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="#Mw_Draw_h__MwDrawTextEx">MwDrawTextEx</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="#Mw_Draw_h__MwLoadImage">MwLoadImage</a>
|
||||
</dd>
|
||||
@@ -335,6 +338,12 @@
|
||||
<dd>
|
||||
<a href="#Mw_Widget_ListBox_h__MwListBoxClass">MwListBoxClass</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="#Mw_Widget_ListBox_h__MwListBoxInsert">MwListBoxInsert</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="#Mw_Widget_ListBox_h__MwListBoxDelete">MwListBoxDelete</a>
|
||||
</dd>
|
||||
<dt>
|
||||
<a href="#Mw_Widget_Menu_h">Mw/Widget/Menu.h</a>
|
||||
</dt>
|
||||
@@ -1684,6 +1693,63 @@
|
||||
</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<pre id="Mw_Draw_h__MwDrawTextEx">MWDECL <B><FONT COLOR="#228B22">void</FONT></B> <B><FONT COLOR="#0000FF">MwDrawTextEx</FONT></B> (
|
||||
MwWidget handle,
|
||||
MwPoint* point,
|
||||
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* text,
|
||||
<B><FONT COLOR="#228B22">int</FONT></B> bold,
|
||||
<B><FONT COLOR="#228B22">int</FONT></B> align,
|
||||
MwLLColor color,
|
||||
MwLLColor bgcolor
|
||||
);</pre>
|
||||
<dl>
|
||||
<dd>
|
||||
Draws a text.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>handle</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Widget.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>point</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Center point of the text.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>text</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Text.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>bold</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Bold.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>align</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Align.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>color</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Color.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>bgcolor</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Background color.
|
||||
</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<pre id="Mw_Draw_h__MwLoadImage">MWDECL MwLLPixmap <B><FONT COLOR="#0000FF">MwLoadImage</FONT></B> (
|
||||
MwWidget handle,
|
||||
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* path
|
||||
@@ -2289,6 +2355,57 @@
|
||||
</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<pre id="Mw_Widget_ListBox_h__MwListBoxInsert">MWDECL <B><FONT COLOR="#228B22">void</FONT></B> <B><FONT COLOR="#0000FF">MwListBoxInsert</FONT></B> (
|
||||
MwWidget handle,
|
||||
<B><FONT COLOR="#228B22">int</FONT></B> index,
|
||||
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* text
|
||||
);</pre>
|
||||
<dl>
|
||||
<dd>
|
||||
Inserts item on the listbox.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>handle</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Widget.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>index</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Index.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>text</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Text.
|
||||
</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<pre id="Mw_Widget_ListBox_h__MwListBoxDelete">MWDECL <B><FONT COLOR="#228B22">void</FONT></B> <B><FONT COLOR="#0000FF">MwListBoxDelete</FONT></B> (
|
||||
MwWidget handle,
|
||||
<B><FONT COLOR="#228B22">int</FONT></B> index
|
||||
);</pre>
|
||||
<dl>
|
||||
<dd>
|
||||
Deletes item from the listbox.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>handle</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Widget.
|
||||
</dd>
|
||||
<dt>
|
||||
Parameter <code>index</code>
|
||||
</dt>
|
||||
<dd>
|
||||
Index.
|
||||
</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<h2 align="center" id="Mw_Widget_Menu_h">Mw/Widget/Menu.h</h2>
|
||||
<dl>
|
||||
<dt>
|
||||
|
||||
Reference in New Issue
Block a user