diff --git a/doc/index.html b/doc/index.html index 8ce470b..a127939 100644 --- a/doc/index.html +++ b/doc/index.html @@ -29,6 +29,9 @@
MwDispatch2
+
+ MwDispatch3 +
MwCreateWidget
@@ -110,6 +113,12 @@
MwCursorCrossMask
+
+ MwCursorText +
+
+ MwCursorTextMask +
Mw/Default.h
@@ -206,6 +215,12 @@
MwCheckBoxClass
+
+ Mw/Widget/Entry.h +
+
+ MwEntryClass +
Mw/Widget/Frame.h
@@ -416,6 +431,34 @@
+
#define MwDispatch3(x, y, name)
+
+
+ Dispatches the handler of widget class. +
+
+
warningUsed internally.
+
+
+ Parameter x +
+
+ Widget. +
+
+ Parameter y +
+
+ Handler name. +
+
+ Parameter name +
+
+ Property name. +
+
+
MWDECL MwWidget MwCreateWidget (
 	MwClass widget_class,
 	const char* name,
@@ -1105,6 +1148,20 @@
 
 
 
+
MWDECL MwCursor MwCursorText;
+
+
+ Text cursor. +
+
+
+
MWDECL MwCursor MwCursorTextMask;
+
+
+ Text cursor mask. +
+
+

Mw/Default.h

@@ -1373,6 +1430,7 @@ MwPoint* point, const char* text, int bold, + int align, MwLLColor color );
@@ -1403,6 +1461,12 @@
Bold.
+
+ Parameter align +
+
+ Align. +
Parameter color
@@ -1619,6 +1683,20 @@

+

Mw/Widget/Entry.h

+
+
+ Entry widget. +
+
+
+
MWDECL MwClass MwEntryClass;
+
+
+ Entry widget class. +
+
+

Mw/Widget/Frame.h

diff --git a/tools/doc.pl b/tools/doc.pl index adc015f..772bafe 100755 --- a/tools/doc.pl +++ b/tools/doc.pl @@ -283,6 +283,6 @@ $html = $html . $stuff; out(" "); out(""); -open(OUT, "<", "doc/index.html"); +open(OUT, ">", "doc/index.html"); print(OUT $html); close(OUT);