cursor setting corrected
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
a86831340f
commit
f2c3f2a8c9
1 changed files with 9 additions and 1 deletions
|
|
@ -196,6 +196,7 @@ public :
|
|||
virtual void ShowPosition( long WXUNUSED(pos) ) ;
|
||||
virtual int GetLineLength(long lineNo) const ;
|
||||
virtual wxString GetLineText(long lineNo) const ;
|
||||
virtual bool SetupCursor( const wxPoint& pt ) { return false ; }
|
||||
|
||||
#ifndef __WXMAC_OSX__
|
||||
virtual void MacControlUserPaneDrawProc(wxInt16 part) = 0 ;
|
||||
|
|
@ -327,6 +328,8 @@ public :
|
|||
virtual wxInt16 MacControlUserPaneFocusProc(wxInt16 action) ;
|
||||
virtual void MacControlUserPaneBackgroundProc(void* info) ;
|
||||
|
||||
virtual bool SetupCursor( const wxPoint& WXUNUSED(pt) ) { MacControlUserPaneIdleProc() ; return true ;}
|
||||
|
||||
virtual void SetRect( Rect *r ) ;
|
||||
|
||||
protected :
|
||||
|
|
@ -442,6 +445,8 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
|
|||
{
|
||||
SetEditable( false ) ;
|
||||
}
|
||||
|
||||
SetCursor( wxCursor( wxCURSOR_IBEAM ) ) ;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
@ -1010,7 +1015,10 @@ void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
|
|||
|
||||
bool wxTextCtrl::MacSetupCursor( const wxPoint& pt )
|
||||
{
|
||||
return true ;
|
||||
if ( !GetPeer()->SetupCursor(pt) )
|
||||
return wxWindow::MacSetupCursor( pt ) ;
|
||||
else
|
||||
return true ;
|
||||
}
|
||||
#if !TARGET_API_MAC_OSX
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue