]> git.saurik.com Git - wxWidgets.git/commitdiff
wxPython doc updates
authorRobin Dunn <robin@alldunn.com>
Thu, 23 Dec 1999 20:09:58 +0000 (20:09 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 23 Dec 1999 20:09:58 +0000 (20:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5087 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/dataobj.tex
docs/latex/wx/menu.tex
docs/latex/wx/treectrl.tex

index 3e5cf060cc4b37b232799a5f8792735312a05ad8..b8e1f8d742617f61290cccf46e94ba8e01dfad13 100644 (file)
@@ -91,7 +91,7 @@ wxDataObjectSimple: \helpref{wxFileDataObject}{wxfiledataobject},
 \helpref{wxBitmapDataObject}{wxbitmapdataobject} which can be used without
 change.
 
-You may also derive your own data object classes from 
+You may also derive your own data object classes from
 \helpref{wxCustomDataObject}{wxcustomdataobject} for user-defined types. The
 format of user-defined data is given as mime-type string literal, such as
 "application/word" or "image/png". These strings are used as they are under
@@ -100,7 +100,7 @@ Windows equivalent under Win32 (using the OLE IDataObject for data exchange to
 and from the clipboard and for drag and drop). Note that the format string
 translation under Windows is not yet finished.
 
-\pythonnote{At this time this class is directly usable from wxPython.
+\pythonnote{At this time this class is not directly usable from wxPython.
 Derive a class from \helpref{wxPyDataObjectSimple}{wxdataobjectsimple}
 instead.}
 
@@ -123,15 +123,15 @@ None
 
 \wxheading{See also}
 
-\helpref{Clipboard and drag and drop overview}{wxdndoverview}, 
-\helpref{DnD sample}{samplednd}, 
-\helpref{wxFileDataObject}{wxfiledataobject}, 
-\helpref{wxTextDataObject}{wxtextdataobject}, 
-\helpref{wxBitmapDataObject}{wxbitmapdataobject}, 
-\helpref{wxCustomDataObject}{wxcustomdataobject}, 
-\helpref{wxDropTarget}{wxdroptarget}, 
-\helpref{wxDropSource}{wxdropsource}, 
-\helpref{wxTextDropTarget}{wxtextdroptarget}, 
+\helpref{Clipboard and drag and drop overview}{wxdndoverview},
+\helpref{DnD sample}{samplednd},
+\helpref{wxFileDataObject}{wxfiledataobject},
+\helpref{wxTextDataObject}{wxtextdataobject},
+\helpref{wxBitmapDataObject}{wxbitmapdataobject},
+\helpref{wxCustomDataObject}{wxcustomdataobject},
+\helpref{wxDropTarget}{wxdroptarget},
+\helpref{wxDropSource}{wxdropsource},
+\helpref{wxTextDropTarget}{wxtextdroptarget},
 \helpref{wxFileDropTarget}{wxfiledroptarget}
 
 \latexignore{\rtfignore{\wxheading{Members}}}
index 2025b94c10941664112eebdddc4129fc943ffe70..09419c77417fada88d66efc1794d4ff70fdd9aa6 100644 (file)
@@ -29,7 +29,7 @@ With a popup menu, there is a variety of ways to handle a menu selection event
 \item Provide EVT\_MENU handlers in the window which pops up the menu, or in an ancestor of
 this window.
 \item Define a callback of type wxFunction, which you pass to the wxMenu constructor.
-The callback takes a reference to the menu, and a reference to a 
+The callback takes a reference to the menu, and a reference to a
 \helpref{wxCommandEvent}{wxcommandevent}. This method is deprecated and should
 not be used in the new code, it is provided for backwards compatibility only.
 \end{enumerate}
@@ -169,7 +169,7 @@ Checks or unchecks the menu item.
 
 \func{void}{Delete}{\param{wxMenuItem *}{item}}
 
-Deletes the menu item from the menu. If the item is a submenu, it will 
+Deletes the menu item from the menu. If the item is a submenu, it will
 {\bf not} be deleted. Use \helpref{Destroy}{wxmenudestroy} if you want to
 delete a submenu.
 
@@ -191,7 +191,7 @@ delete a submenu.
 
 \func{void}{Destroy}{\param{wxMenuItem *}{item}}
 
-Deletes the menu item from the menu. If the item is a submenu, it will 
+Deletes the menu item from the menu. If the item is a submenu, it will
 be deleted. Use \helpref{Remove}{wxmenuremove} if you want to keep the submenu
 (for example, to reuse it later).
 
@@ -268,6 +268,9 @@ Returns the menu item object, or NULL if it is not found.
 
 \helpref{wxMenu::FindItem}{wxmenufinditem}
 
+\pythonnote{The name of this method in wxPython is \tt{FindItemById}
+and it does not support the second parameter.}
+
 \membersection{wxMenu::GetHelpString}\label{wxmenugethelpstring}
 
 \constfunc{wxString}{GetHelpString}{\param{int}{ id}}
@@ -706,8 +709,8 @@ Returns the number of menus in this menubar.
 \func{bool}{Insert}{\param{size\_t }{pos}, \param{wxMenu *}{menu}, \param{const wxString\& }{title}}
 
 Inserts the menu at the given position into the menu bar. Inserting menu at
-position $0$ will insert it in the very beginning of it, inserting at position 
-\helpref{GetMenuCount()}{wxmenubargetmenucount} is the same as calling 
+position $0$ will insert it in the very beginning of it, inserting at position
+\helpref{GetMenuCount()}{wxmenubargetmenucount} is the same as calling
 \helpref{Append()}{wxmenubarappend}.
 
 \wxheading{Parameters}
@@ -765,7 +768,7 @@ Redraw the menu bar
 \func{wxMenu *}{Remove}{\param{size\_t }{pos}}
 
 Removes the menu from the menu bar and returns the menu object - the caller is
-reposnbile for deleting it. This function may be used together with 
+reposnbile for deleting it. This function may be used together with
 \helpref{wxMenuBar::Insert}{wxmenubarinsert} to change the menubar
 dynamically.
 
index 845cbc65a391341bc3abcfdf3fd855ad43c38f7e..922d3904afc71e909e790380652c9ec82655af76 100644 (file)
@@ -361,6 +361,9 @@ Returns the next visible item.
 
 Returns the item's parent.
 
+\pythonnote{This method is named \tt{GetItemParent} to avoid a name
+clash with wxWindow::GetParent.}
+
 \membersection{wxTreeCtrl::GetPrevSibling}\label{wxtreectrlgetprevsibling}
 
 \constfunc{wxTreeItemId}{GetPrevSibling}{\param{const wxTreeItemId\&}{ item}}