]> git.saurik.com Git - wxWidgets.git/commitdiff
Copied roadmap from wxWebSite module
authorJulian Smart <julian@anthemion.co.uk>
Tue, 26 Mar 2002 21:42:34 +0000 (21:42 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 26 Mar 2002 21:42:34 +0000 (21:42 +0000)
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

docs/html/roadmap.htm
docs/latex/wx/hashmap.tex
docs/latex/wx/view.tex

index 572fe1d23ffc60ea1850f6defa9a74e3b7900568..005b72ecdff11a2971f3bdf5eb9621bb8e28f85f 100644 (file)
@@ -9,11 +9,11 @@
 
 <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>
-<td bgcolor="#660000">
+<td bgcolor="#004080" align=left height=24 background="images/bluetitlegradient.gif">
 <font size=+1 face="Arial, Lucida Sans, Helvetica" color="#FFFFFF">
-wxWindows Roadmap
+<b>wxWindows Roadmap</b>
 </font>
 </td>
 </tr>
index 7216f954f92024ee68c114c412935b1c9112ad1c..738ad03c29cb6732f166df2b8c348ab8030c17a6 100644 (file)
@@ -209,3 +209,4 @@ default {\tt value\_type()} is inserted in the table.
 \constfunc{size\_type}{size}{}
 
 Returns the numbers of elements in the map.
+
index e977bd41dfcdd64a3e609c21a02f36f9c725b6ac..77b0811952b06c0b803a4b420fbf726752197d00 100644 (file)
@@ -130,12 +130,14 @@ frame associated with the view.
 
 \func{virtual bool}{OnCreate}{\param{wxDocument* }{doc}, \param{long}{ flags}}
 
-Called just after view construction to give the view a chance to initialize
-itself based on the passed document and flags (unused). By default, simply
-returns TRUE. If the function returns FALSE, the view will be deleted.
-
-The predefined document child frame, wxDocChildFrame, calls this function
-automatically.
+wxDocManager or wxDocument creates a wxView via a wxDocTemplate.
+Just after the wxDocTemplate creates the wxView, it calls
+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.
+
+By default, simply returns TRUE. If the function returns FALSE, the
+view will be deleted.
 
 \membersection{wxView::OnCreatePrintout}