]> git.saurik.com Git - wxWidgets.git/commitdiff
wxPython 2.0b9, first phase (win32)
authorRobin Dunn <robin@alldunn.com>
Fri, 30 Apr 1999 21:13:43 +0000 (21:13 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 30 Apr 1999 21:13:43 +0000 (21:13 +0000)
Added gobs of stuff, see wxPython/README.txt for details

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2319 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/wxPython/README.txt
utils/wxPython/distrib/SelfInst-README.txt
utils/wxPython/src/controls.i

index 027c4f70e156fd3435cfd28b221edcd1c18c7c4b..8ce531403e342b135c752f6df37bb49b06eaf106 100644 (file)
@@ -87,6 +87,8 @@ Added a couple missing items from the docs.
 Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
 wxGIFHandler and wxBMPHandler.
 
+Added new methods to wxTextCtrl.
+
 
 
 What's new in 2.0b8
index 812d3446ef025b81d2704b07bf350c3c6e237bdd..c7db765bd9d6449c4d905eccc9bb0288b94e79c0 100644 (file)
@@ -63,6 +63,8 @@ Added a couple missing items from the docs.
 Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
 wxGIFHandler and wxBMPHandler.
 
+Added new methods to wxTextCtrl.
+
 
 
 What's new in 2.0b8
index 605a9d697c97a89bb11248c109be464040560dd6..6ba5feae4bfe44edc5b47dd391edfd6bffef6ce1 100644 (file)
@@ -344,6 +344,14 @@ public:
     void WriteText(const wxString& text);
     void AppendText(const wxString& text);
     long XYToPosition(long x, long y);
+
+    bool CanCopy();
+    bool CanCut();
+    bool CanPaste();
+    bool CanRedo();
+    bool CanUndo();
+    void GetSelection(long* OUTPUT, long* OUTPUT);
+    bool IsEditable();
 };
 
 //----------------------------------------------------------------------
@@ -498,7 +506,12 @@ public:
 /////////////////////////////////////////////////////////////////////////////
 //
 // $Log$
+// Revision 1.13  1999/04/30 21:13:43  RD
+// wxPython 2.0b9, first phase (win32)
+// Added gobs of stuff, see wxPython/README.txt for details
+//
 // Revision 1.12  1999/04/30 03:29:18  RD
+//
 // wxPython 2.0b9, first phase (win32)
 // Added gobs of stuff, see wxPython/README.txt for details
 //