Copied roadmap from wxWebSite module

added newline to end of hashmap.tex
Reworded wxView::OnCreate doc


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2002-03-26 21:42:34 +00:00
parent b272b6dc42
commit 6b3d51cc35
3 changed files with 11 additions and 8 deletions

View File

@ -9,11 +9,11 @@
<font face="Arial, Lucida Sans, Helvetica"> <font face="Arial, Lucida Sans, Helvetica">
<table width=100% border=4 cellpadding=5 cellspacing=0> <table width=100% border=0 cellpadding=3 cellspacing=0>
<tr> <tr>
<td bgcolor="#660000"> <td bgcolor="#004080" align=left height=24 background="images/bluetitlegradient.gif">
<font size=+1 face="Arial, Lucida Sans, Helvetica" color="#FFFFFF"> <font size=+1 face="Arial, Lucida Sans, Helvetica" color="#FFFFFF">
wxWindows Roadmap <b>wxWindows Roadmap</b>
</font> </font>
</td> </td>
</tr> </tr>

View File

@ -209,3 +209,4 @@ default {\tt value\_type()} is inserted in the table.
\constfunc{size\_type}{size}{} \constfunc{size\_type}{size}{}
Returns the numbers of elements in the map. Returns the numbers of elements in the map.

View File

@ -130,12 +130,14 @@ frame associated with the view.
\func{virtual bool}{OnCreate}{\param{wxDocument* }{doc}, \param{long}{ flags}} \func{virtual bool}{OnCreate}{\param{wxDocument* }{doc}, \param{long}{ flags}}
Called just after view construction to give the view a chance to initialize wxDocManager or wxDocument creates a wxView via a wxDocTemplate.
itself based on the passed document and flags (unused). By default, simply Just after the wxDocTemplate creates the wxView, it calls
returns TRUE. If the function returns FALSE, the view will be deleted. wxView::OnCreate. In its OnCreate member function, the wxView can create a wxDocChildFrame
or a derived class. This wxDocChildFrame provides user interface
elements to view and/or edit the contents of the wxDocument.
The predefined document child frame, wxDocChildFrame, calls this function By default, simply returns TRUE. If the function returns FALSE, the
automatically. view will be deleted.
\membersection{wxView::OnCreatePrintout} \membersection{wxView::OnCreatePrintout}