]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/dobjsmpl.tex
Misc small changes
[wxWidgets.git] / docs / latex / wx / dobjsmpl.tex
index d874bde9ddc2f275d264611fb1fd3d1a51a2cbd4..2d98a385d43a1fd32c4d0f357763be985abb4828 100644 (file)
@@ -11,7 +11,7 @@
 
 \section{\class{wxDataObjectSimple}}\label{wxdataobjectsimple}
 
-This is the simplest possible implementation of 
+This is the simplest possible implementation of the 
 \helpref{wxDataObject}{wxdataobject} class. The data object of (a class derived
 from) this class only supports one format, so the number of virtual functions
 to be implemented is reduced.
@@ -19,6 +19,11 @@ to be implemented is reduced.
 Notice that this is still an abstract base class and cannot be used but should
 be derived from.
 
+\pythonnote{If you wish to create a derived wxDataObjectSimple class in
+wxPython you should derive the class from wxPyDataObjectSimple
+in order to get Python-aware capabilities for the various virtual
+methods.}
+
 \wxheading{Virtual functions to override}
 
 The objects supporting rendering the data must override 
@@ -38,7 +43,7 @@ methods.
 
 \wxheading{See also}
 
-\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, 
+\helpref{Clipboard and drag and drop overview}{wxdndoverview}, 
 \helpref{DnD sample}{samplednd}, 
 \helpref{wxFileDataObject}{wxfiledataobject}, 
 \helpref{wxTextDataObject}{wxtextdataobject}, 
@@ -80,6 +85,10 @@ object supports rendering its data.
 Copy the data to the buffer, return TRUE on success. Must be implemented in the
 derived class if the object supports rendering its data.
 
+\pythonnote{When implementing this method in wxPython, no additional
+parameters are required and the data should be returned from the
+method as a string.}
+
 \membersection{wxDataObjectSimple::SetData}\label{wxdataobjectsimplesetdata}
 
 \func{virtual bool}{SetData}{\param{size\_t }{len}, \param{const void }{*buf}}
@@ -87,4 +96,6 @@ derived class if the object supports rendering its data.
 Copy the data from the buffer, return TRUE on success. Must be implemented in
 the derived class if the object supports setting its data.
 
+\pythonnote{When implementing this method in wxPython, the data comes
+as a single string parameter rather than the two shown here.}