wxPython 2.0b9, first phase (win32)

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
This commit is contained in:
Robin Dunn
1999-04-30 21:13:43 +00:00
parent 86975656fb
commit d403febc27
3 changed files with 17 additions and 0 deletions

View File

@@ -87,6 +87,8 @@ Added a couple missing items from the docs.
Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler, Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
wxGIFHandler and wxBMPHandler. wxGIFHandler and wxBMPHandler.
Added new methods to wxTextCtrl.
What's new in 2.0b8 What's new in 2.0b8

View File

@@ -63,6 +63,8 @@ Added a couple missing items from the docs.
Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler, Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
wxGIFHandler and wxBMPHandler. wxGIFHandler and wxBMPHandler.
Added new methods to wxTextCtrl.
What's new in 2.0b8 What's new in 2.0b8

View File

@@ -344,6 +344,14 @@ public:
void WriteText(const wxString& text); void WriteText(const wxString& text);
void AppendText(const wxString& text); void AppendText(const wxString& text);
long XYToPosition(long x, long y); 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$ // $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 // Revision 1.12 1999/04/30 03:29:18 RD
//
// wxPython 2.0b9, first phase (win32) // wxPython 2.0b9, first phase (win32)
// Added gobs of stuff, see wxPython/README.txt for details // Added gobs of stuff, see wxPython/README.txt for details
// //