1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/textctrl.cpp
4 // Author: Stefan Csomor
5 // Modified by: Ryan Norton (MLTE GetLineLength and GetLineText)
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/textctrl.h"
23 #include "wx/button.h"
25 #include "wx/settings.h"
26 #include "wx/msgdlg.h"
30 #include <sys/types.h>
36 #if wxUSE_STD_IOSTREAM
44 #include "wx/toplevel.h"
45 #include "wx/filefn.h"
46 #include "wx/sysopt.h"
48 #if defined(__BORLANDC__) && !defined(__WIN32__)
50 #elif !defined(__MWERKS__) && !defined(__GNUWIN32) && !defined(__DARWIN__)
59 #include <MacTextEditor.h>
60 #include <ATSUnicode.h>
61 #include <TextCommon.h>
62 #include <TextEncodingConverter.h>
65 #include "wx/mac/uma.h"
68 // if this is set to 1 then under OSX 10.2 the 'classic' MLTE implementation will be used
69 // if set to 0 then the unicode textctrl will be used
70 #ifndef wxMAC_AWAYS_USE_MLTE
71 #define wxMAC_AWAYS_USE_MLTE 1
77 kTXNVisibilityTag
= 'visb' // set the visibility state of the object
86 virtual ~wxMacFunctor() {}
88 virtual void* operator()() = 0 ;
90 static void* CallBackProc( void *param
)
92 wxMacFunctor
* f
= (wxMacFunctor
*) param
;
93 void *result
= (*f
)() ;
98 template<typename classtype
, typename param1type
>
100 class wxMacObjectFunctor1
: public wxMacFunctor
102 typedef void (classtype::*function
)( param1type p1
) ;
103 typedef void (classtype::*ref_function
)( const param1type
& p1
) ;
105 wxMacObjectFunctor1( classtype
*obj
, function f
, param1type p1
) :
113 wxMacObjectFunctor1( classtype
*obj
, ref_function f
, param1type p1
) :
121 ~wxMacObjectFunctor1() {}
123 virtual void* operator()()
125 (m_object
->*m_function
)( m_param1
) ;
130 classtype
* m_object
;
131 param1type m_param1
;
134 function m_function
;
135 ref_function m_refFunction
;
139 template<typename classtype
, typename param1type
>
140 void* wxMacMPRemoteCall( classtype
*object
, void (classtype::*function
)( param1type p1
) , param1type p1
)
142 wxMacObjectFunctor1
<classtype
, param1type
> params(object
, function
, p1
) ;
144 MPRemoteCall( wxMacFunctor::CallBackProc
, ¶ms
, kMPOwningProcessRemoteContext
) ;
148 template<typename classtype
, typename param1type
>
149 void* wxMacMPRemoteCall( classtype
*object
, void (classtype::*function
)( const param1type
& p1
) , param1type p1
)
151 wxMacObjectFunctor1
<classtype
,param1type
> params(object
, function
, p1
) ;
153 MPRemoteCall( wxMacFunctor::CallBackProc
, ¶ms
, kMPOwningProcessRemoteContext
) ;
157 template<typename classtype
, typename param1type
>
158 void* wxMacMPRemoteGUICall( classtype
*object
, void (classtype::*function
)( param1type p1
) , param1type p1
)
161 void *result
= wxMacMPRemoteCall( object
, function
, p1
) ;
166 template<typename classtype
, typename param1type
>
167 void* wxMacMPRemoteGUICall( classtype
*object
, void (classtype::*function
)( const param1type
& p1
) , param1type p1
)
170 void *result
= wxMacMPRemoteCall( object
, function
, p1
) ;
175 // common interface for all implementations
176 class wxMacTextControl
: public wxMacControl
179 wxMacTextControl( wxTextCtrl
*peer
) ;
180 ~wxMacTextControl() ;
182 virtual wxString
GetStringValue() const = 0 ;
183 virtual void SetStringValue( const wxString
&val
) = 0 ;
184 virtual void SetSelection( long from
, long to
) = 0 ;
185 virtual void GetSelection( long* from
, long* to
) const = 0 ;
186 virtual void WriteText( const wxString
& str
) = 0 ;
188 virtual void SetStyle( long start
, long end
, const wxTextAttr
& style
) ;
189 virtual void Copy() ;
191 virtual void Paste() ;
192 virtual bool CanPaste() const ;
193 virtual void SetEditable( bool editable
) ;
194 virtual wxTextPos
GetLastPosition() const ;
195 virtual void Replace( long from
, long to
, const wxString
&str
) ;
196 virtual void Remove( long from
, long to
) ;
199 virtual bool HasOwnContextMenu() const
202 virtual bool SetupCursor( const wxPoint
& pt
)
205 virtual void Clear() ;
206 virtual bool CanUndo() const;
207 virtual void Undo() ;
208 virtual bool CanRedo() const;
209 virtual void Redo() ;
210 virtual int GetNumberOfLines() const ;
211 virtual long XYToPosition(long x
, long y
) const;
212 virtual bool PositionToXY(long pos
, long *x
, long *y
) const ;
213 virtual void ShowPosition(long WXUNUSED(pos
)) ;
214 virtual int GetLineLength(long lineNo
) const ;
215 virtual wxString
GetLineText(long lineNo
) const ;
217 #ifndef __WXMAC_OSX__
218 virtual void MacControlUserPaneDrawProc(wxInt16 part
) = 0 ;
219 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
) = 0 ;
220 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
) = 0 ;
221 virtual void MacControlUserPaneIdleProc() = 0 ;
222 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
) = 0 ;
223 virtual void MacControlUserPaneActivateProc(bool activating
) = 0 ;
224 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
) = 0 ;
225 virtual void MacControlUserPaneBackgroundProc(void* info
) = 0 ;
229 // common parts for implementations based on MLTE
231 class wxMacMLTEControl
: public wxMacTextControl
234 wxMacMLTEControl( wxTextCtrl
*peer
) ;
236 virtual wxString
GetStringValue() const ;
237 virtual void SetStringValue( const wxString
&str
) ;
239 static TXNFrameOptions
FrameOptionsFromWXStyle( long wxStyle
) ;
241 void AdjustCreationAttributes( const wxColour
& background
, bool visible
) ;
243 virtual void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
) ;
244 virtual void SetBackground( const wxBrush
&brush
) ;
245 virtual void SetStyle( long start
, long end
, const wxTextAttr
& style
) ;
246 virtual void Copy() ;
248 virtual void Paste() ;
249 virtual bool CanPaste() const ;
250 virtual void SetEditable( bool editable
) ;
251 virtual wxTextPos
GetLastPosition() const ;
252 virtual void Replace( long from
, long to
, const wxString
&str
) ;
253 virtual void Remove( long from
, long to
) ;
254 virtual void GetSelection( long* from
, long* to
) const ;
255 virtual void SetSelection( long from
, long to
) ;
257 virtual void WriteText( const wxString
& str
) ;
259 virtual bool HasOwnContextMenu() const
261 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
262 if ( UMAGetSystemVersion() >= 0x1040 )
264 TXNCommandEventSupportOptions options
;
265 TXNGetCommandEventSupport( m_txn
, & options
) ;
266 return options
& kTXNSupportEditCommandProcessing
;
273 virtual void Clear() ;
275 virtual bool CanUndo() const ;
276 virtual void Undo() ;
277 virtual bool CanRedo() const;
278 virtual void Redo() ;
279 virtual int GetNumberOfLines() const ;
280 virtual long XYToPosition(long x
, long y
) const ;
281 virtual bool PositionToXY(long pos
, long *x
, long *y
) const ;
282 virtual void ShowPosition( long pos
) ;
283 virtual int GetLineLength(long lineNo
) const ;
284 virtual wxString
GetLineText(long lineNo
) const ;
286 void SetTXNData( const wxString
& st
, TXNOffset start
, TXNOffset end
) ;
287 TXNObject
GetTXNObject() { return m_txn
; }
290 void TXNSetAttribute( const wxTextAttr
& style
, long from
, long to
) ;
295 #if TARGET_API_MAC_OSX
297 // implementation available under OSX
299 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
301 class wxMacMLTEHIViewControl
: public wxMacMLTEControl
304 wxMacMLTEHIViewControl( wxTextCtrl
*wxPeer
,
307 const wxSize
& size
, long style
) ;
308 ~wxMacMLTEHIViewControl() ;
310 virtual OSStatus
SetFocus( ControlFocusPart focusPart
) ;
311 virtual bool HasFocus() const ;
312 virtual void SetBackground( const wxBrush
&brush
) ;
315 HIViewRef m_scrollView
;
316 HIViewRef m_textView
;
317 EventHandlerRef m_textEventHandlerRef
;
322 class wxMacUnicodeTextControl
: public wxMacTextControl
325 wxMacUnicodeTextControl( wxTextCtrl
*wxPeer
,
328 const wxSize
& size
, long style
) ;
329 ~wxMacUnicodeTextControl();
331 virtual void VisibilityChanged(bool shown
);
332 virtual wxString
GetStringValue() const ;
333 virtual void SetStringValue( const wxString
&str
) ;
336 virtual void Paste();
337 virtual bool CanPaste() const;
338 virtual void SetEditable(bool editable
) ;
339 virtual void GetSelection( long* from
, long* to
) const ;
340 virtual void SetSelection( long from
, long to
) ;
341 virtual void WriteText(const wxString
& str
) ;
344 // contains the tag for the content (is different for password and non-password controls)
347 // as the selection tag only works correctly when the control has the focus we have to mirror the
349 EventHandlerRef m_focusHandlerRef
;
351 ControlEditTextSelectionRec m_selection
;
356 // 'classic' MLTE implementation
358 class wxMacMLTEClassicControl
: public wxMacMLTEControl
361 wxMacMLTEClassicControl( wxTextCtrl
*wxPeer
,
364 const wxSize
& size
, long style
) ;
365 ~wxMacMLTEClassicControl() ;
367 virtual void VisibilityChanged(bool shown
) ;
368 virtual void SuperChangedPosition() ;
370 virtual void MacControlUserPaneDrawProc(wxInt16 part
) ;
371 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
) ;
372 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
) ;
373 virtual void MacControlUserPaneIdleProc() ;
374 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
) ;
375 virtual void MacControlUserPaneActivateProc(bool activating
) ;
376 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
) ;
377 virtual void MacControlUserPaneBackgroundProc(void* info
) ;
379 virtual bool SetupCursor( const wxPoint
& WXUNUSED(pt
) )
381 MacControlUserPaneIdleProc();
385 virtual void SetRect( Rect
*r
) ;
390 void MacUpdatePosition() ;
391 void MacActivatePaneText(bool setActive
) ;
392 void MacFocusPaneText(bool setFocus
) ;
393 void MacSetObjectVisibility(bool vis
) ;
396 TXNFrameID m_txnFrameID
;
398 WindowRef m_txnWindow
;
399 // bounds of the control as we last did set the txn frames
400 Rect m_txnControlBounds
;
401 Rect m_txnVisBounds
;
404 static pascal void TXNScrollActionProc( ControlRef controlRef
, ControlPartCode partCode
) ;
405 static pascal void TXNScrollInfoProc(
406 SInt32 iValue
, SInt32 iMaximumValue
,
407 TXNScrollBarOrientation iScrollBarOrientation
, SInt32 iRefCon
) ;
409 ControlRef m_sbHorizontal
;
410 SInt32 m_lastHorizontalValue
;
411 ControlRef m_sbVertical
;
412 SInt32 m_lastVerticalValue
;
417 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
419 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
420 EVT_ERASE_BACKGROUND( wxTextCtrl::OnEraseBackground
)
421 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
422 EVT_CHAR(wxTextCtrl::OnChar
)
423 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
424 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
425 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
426 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
427 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
428 EVT_MENU(wxID_CLEAR
, wxTextCtrl::OnDelete
)
429 EVT_MENU(wxID_SELECTALL
, wxTextCtrl::OnSelectAll
)
431 EVT_CONTEXT_MENU(wxTextCtrl::OnContextMenu
)
433 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
434 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
435 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
436 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
437 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
438 EVT_UPDATE_UI(wxID_CLEAR
, wxTextCtrl::OnUpdateDelete
)
439 EVT_UPDATE_UI(wxID_SELECTALL
, wxTextCtrl::OnUpdateSelectAll
)
443 void wxTextCtrl::Init()
449 m_privateContextMenu
= NULL
;
450 m_triggerOnSetValue
= true ;
453 wxTextCtrl::~wxTextCtrl()
455 delete m_privateContextMenu
;
458 bool wxTextCtrl::Create( wxWindow
*parent
,
464 const wxValidator
& validator
,
465 const wxString
& name
)
467 m_macIsUserPane
= false ;
470 if ( ! (style
& wxNO_BORDER
) )
471 style
= (style
& ~wxBORDER_MASK
) | wxSUNKEN_BORDER
;
473 if ( !wxTextCtrlBase::Create( parent
, id
, pos
, size
, style
& ~(wxHSCROLL
| wxVSCROLL
), validator
, name
) )
476 if ( m_windowStyle
& wxTE_MULTILINE
)
479 !(m_windowStyle
& wxTE_PROCESS_ENTER
),
480 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
482 m_windowStyle
|= wxTE_PROCESS_ENTER
;
483 style
|= wxTE_PROCESS_ENTER
;
486 bool forceMLTE
= false ;
488 #if wxUSE_SYSTEM_OPTIONS
489 if (wxSystemOptions::HasOption( wxMAC_TEXTCONTROL_USE_MLTE
) && (wxSystemOptions::GetOptionInt( wxMAC_TEXTCONTROL_USE_MLTE
) == 1))
496 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
497 if ( UMAGetSystemVersion() >= 0x1030 && !forceMLTE
)
499 if ( m_windowStyle
& wxTE_MULTILINE
)
500 m_peer
= new wxMacMLTEHIViewControl( this , str
, pos
, size
, style
) ;
506 if ( !(m_windowStyle
& wxTE_MULTILINE
) && !forceMLTE
)
507 m_peer
= new wxMacUnicodeTextControl( this , str
, pos
, size
, style
) ;
512 m_peer
= new wxMacMLTEClassicControl( this , str
, pos
, size
, style
) ;
514 MacPostControlCreate(pos
, size
) ;
516 // only now the embedding is correct and we can do a positioning update
518 MacSuperChangedPosition() ;
520 if ( m_windowStyle
& wxTE_READONLY
)
521 SetEditable( false ) ;
523 SetCursor( wxCursor( wxCURSOR_IBEAM
) ) ;
528 void wxTextCtrl::MacSuperChangedPosition()
530 wxWindow::MacSuperChangedPosition() ;
531 GetPeer()->SuperChangedPosition() ;
534 void wxTextCtrl::MacVisibilityChanged()
536 GetPeer()->VisibilityChanged( MacIsReallyShown() ) ;
539 void wxTextCtrl::MacEnabledStateChanged()
543 wxString
wxTextCtrl::GetValue() const
545 return GetPeer()->GetStringValue() ;
548 void wxTextCtrl::GetSelection(long* from
, long* to
) const
550 GetPeer()->GetSelection( from
, to
) ;
553 void wxTextCtrl::SetValue(const wxString
& str
)
556 if ( GetValue() == str
)
559 GetPeer()->SetStringValue( str
) ;
561 if ( m_triggerOnSetValue
)
563 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
564 event
.SetString( GetValue() );
565 event
.SetEventObject( this );
566 GetEventHandler()->ProcessEvent( event
);
570 void wxTextCtrl::SetMaxLength(unsigned long len
)
575 bool wxTextCtrl::SetFont( const wxFont
& font
)
577 if ( !wxTextCtrlBase::SetFont( font
) )
580 GetPeer()->SetFont( font
, GetForegroundColour() , GetWindowStyle() ) ;
585 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
587 GetPeer()->SetStyle( start
, end
, style
) ;
592 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
594 wxTextCtrlBase::SetDefaultStyle( style
) ;
595 SetStyle( kTXNUseCurrentSelection
, kTXNUseCurrentSelection
, GetDefaultStyle() ) ;
600 // Clipboard operations
602 void wxTextCtrl::Copy()
608 void wxTextCtrl::Cut()
614 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
615 event
.SetEventObject( this );
616 GetEventHandler()->ProcessEvent( event
);
620 void wxTextCtrl::Paste()
626 // TODO: eventually we should add setting the default style again
628 wxCommandEvent
event( wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
629 event
.SetEventObject( this );
630 GetEventHandler()->ProcessEvent( event
);
634 bool wxTextCtrl::CanCopy() const
636 // Can copy if there's a selection
638 GetSelection( &from
, &to
);
643 bool wxTextCtrl::CanCut() const
648 // Can cut if there's a selection
650 GetSelection( &from
, &to
);
655 bool wxTextCtrl::CanPaste() const
660 return GetPeer()->CanPaste() ;
663 void wxTextCtrl::SetEditable(bool editable
)
665 if ( editable
!= m_editable
)
667 m_editable
= editable
;
668 GetPeer()->SetEditable( editable
) ;
672 void wxTextCtrl::SetInsertionPoint(long pos
)
674 SetSelection( pos
, pos
) ;
677 void wxTextCtrl::SetInsertionPointEnd()
679 wxTextPos pos
= GetLastPosition();
680 SetInsertionPoint( pos
);
683 long wxTextCtrl::GetInsertionPoint() const
686 GetSelection( &begin
, &end
) ;
691 wxTextPos
wxTextCtrl::GetLastPosition() const
693 return GetPeer()->GetLastPosition() ;
696 void wxTextCtrl::Replace(long from
, long to
, const wxString
& str
)
698 GetPeer()->Replace( from
, to
, str
) ;
701 void wxTextCtrl::Remove(long from
, long to
)
703 GetPeer()->Remove( from
, to
) ;
706 void wxTextCtrl::SetSelection(long from
, long to
)
708 GetPeer()->SetSelection( from
, to
) ;
711 bool wxTextCtrl::LoadFile(const wxString
& file
)
713 return wxTextCtrlBase::LoadFile( file
);
716 void wxTextCtrl::WriteText(const wxString
& str
)
718 // TODO: this MPRemoting will be moved into a remoting peer proxy for any command
719 if ( !wxIsMainThread() )
721 // unfortunately CW 8 is not able to correctly deduce the template types,
722 // so we have to instantiate explicitly
723 wxMacMPRemoteGUICall
<wxTextCtrl
,wxString
>( this , &wxTextCtrl::WriteText
, str
) ;
728 GetPeer()->WriteText( str
) ;
731 void wxTextCtrl::AppendText(const wxString
& text
)
733 SetInsertionPointEnd();
737 void wxTextCtrl::Clear()
742 bool wxTextCtrl::IsModified() const
747 bool wxTextCtrl::IsEditable() const
749 return IsEnabled() && m_editable
;
752 bool wxTextCtrl::AcceptsFocus() const
754 // we don't want focus if we can't be edited
755 return /*IsEditable() && */ wxControl::AcceptsFocus();
758 wxSize
wxTextCtrl::DoGetBestSize() const
762 // these are the numbers from the HIG:
763 // we reduce them by the borders first
766 switch ( m_windowVariant
)
768 case wxWINDOW_VARIANT_NORMAL
:
772 case wxWINDOW_VARIANT_SMALL
:
776 case wxWINDOW_VARIANT_MINI
:
785 // as the above numbers have some free space around the text
786 // we get 5 lines like this anyway
787 if ( m_windowStyle
& wxTE_MULTILINE
)
790 if ( !HasFlag(wxNO_BORDER
) )
793 return wxSize(wText
, hText
);
796 // ----------------------------------------------------------------------------
798 // ----------------------------------------------------------------------------
800 void wxTextCtrl::Undo()
806 void wxTextCtrl::Redo()
812 bool wxTextCtrl::CanUndo() const
817 return GetPeer()->CanUndo() ;
820 bool wxTextCtrl::CanRedo() const
825 return GetPeer()->CanRedo() ;
828 void wxTextCtrl::MarkDirty()
833 void wxTextCtrl::DiscardEdits()
838 int wxTextCtrl::GetNumberOfLines() const
840 return GetPeer()->GetNumberOfLines() ;
843 long wxTextCtrl::XYToPosition(long x
, long y
) const
845 return GetPeer()->XYToPosition( x
, y
) ;
848 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
850 return GetPeer()->PositionToXY( pos
, x
, y
) ;
853 void wxTextCtrl::ShowPosition(long pos
)
855 return GetPeer()->ShowPosition(pos
) ;
858 int wxTextCtrl::GetLineLength(long lineNo
) const
860 return GetPeer()->GetLineLength(lineNo
) ;
863 wxString
wxTextCtrl::GetLineText(long lineNo
) const
865 return GetPeer()->GetLineText(lineNo
) ;
868 void wxTextCtrl::Command(wxCommandEvent
& event
)
870 SetValue(event
.GetString());
871 ProcessCommand(event
);
874 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
876 // By default, load the first file into the text window.
877 if (event
.GetNumberOfFiles() > 0)
878 LoadFile( event
.GetFiles()[0] );
881 void wxTextCtrl::OnEraseBackground(wxEraseEvent
& event
)
883 // all erasing should be done by the real mac control implementation
884 // while this is true for MLTE under classic, the HITextView is somehow
885 // transparent but background erase is not working correctly, so intercept
886 // things while we can...
890 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
892 int key
= event
.GetKeyCode() ;
893 bool eat_key
= false ;
895 if ( key
== 'a' && event
.MetaDown() )
902 if ( key
== 'c' && event
.MetaDown() )
910 if ( !IsEditable() && key
!= WXK_LEFT
&& key
!= WXK_RIGHT
&& key
!= WXK_DOWN
&& key
!= WXK_UP
&& key
!= WXK_TAB
&&
911 !( key
== WXK_RETURN
&& ( (m_windowStyle
& wxTE_PROCESS_ENTER
) || (m_windowStyle
& wxTE_MULTILINE
) ) )
912 // && key != WXK_PAGEUP && key != WXK_PAGEDOWN && key != WXK_HOME && key != WXK_END
919 // Check if we have reached the max # of chars (if it is set), but still
920 // allow navigation and deletion
921 if ( !IsMultiLine() && m_maxLength
&& GetValue().length() >= m_maxLength
&&
922 key
!= WXK_LEFT
&& key
!= WXK_RIGHT
&& key
!= WXK_TAB
&&
923 key
!= WXK_BACK
&& !( key
== WXK_RETURN
&& (m_windowStyle
& wxTE_PROCESS_ENTER
) )
926 // eat it, we don't want to add more than allowed # of characters
928 // TODO: generate EVT_TEXT_MAXLEN()
932 // assume that any key not processed yet is going to modify the control
935 if ( key
== 'v' && event
.MetaDown() )
943 if ( key
== 'x' && event
.MetaDown() )
954 if (m_windowStyle
& wxTE_PROCESS_ENTER
)
956 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
957 event
.SetEventObject( this );
958 event
.SetString( GetValue() );
959 if ( GetEventHandler()->ProcessEvent(event
) )
963 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
965 wxWindow
*parent
= GetParent();
966 while ( parent
&& !parent
->IsTopLevel() && parent
->GetDefaultItem() == NULL
)
968 parent
= parent
->GetParent() ;
971 if ( parent
&& parent
->GetDefaultItem() )
973 wxButton
*def
= wxDynamicCast(parent
->GetDefaultItem(), wxButton
);
974 if ( def
&& def
->IsEnabled() )
976 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
977 event
.SetEventObject(def
);
984 // this will make wxWidgets eat the ENTER key so that
985 // we actually prevent line wrapping in a single line text control
991 if ( !(m_windowStyle
& wxTE_PROCESS_TAB
))
994 if (!event
.ShiftDown())
995 flags
|= wxNavigationKeyEvent::IsForward
;
996 if (event
.ControlDown())
997 flags
|= wxNavigationKeyEvent::WinChange
;
1004 // This is necessary (don't know why);
1005 // otherwise the tab will not be inserted.
1006 WriteText(wxT("\t"));
1016 // perform keystroke handling
1020 if ( ( key
>= 0x20 && key
< WXK_START
) ||
1021 key
== WXK_RETURN
||
1022 key
== WXK_DELETE
||
1025 wxCommandEvent
event1(wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
1026 event1
.SetEventObject( this );
1027 wxPostEvent( GetEventHandler(), event1
);
1031 // ----------------------------------------------------------------------------
1032 // standard handlers for standard edit menu events
1033 // ----------------------------------------------------------------------------
1035 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1040 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1045 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1050 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1055 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1060 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1064 GetSelection( &from
, &to
);
1065 if (from
!= -1 && to
!= -1)
1069 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
1071 SetSelection(-1, -1);
1074 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1076 event
.Enable( CanCut() );
1079 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1081 event
.Enable( CanCopy() );
1084 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1086 event
.Enable( CanPaste() );
1089 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1091 event
.Enable( CanUndo() );
1094 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1096 event
.Enable( CanRedo() );
1099 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
1103 GetSelection( &from
, &to
);
1104 event
.Enable( from
!= -1 && to
!= -1 && from
!= to
&& IsEditable() ) ;
1107 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
1109 event
.Enable(GetLastPosition() > 0);
1112 // CS: Context Menus only work with MLTE implementations or non-multiline HIViews at the moment
1114 void wxTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
1116 if ( GetPeer()->HasOwnContextMenu() )
1122 if (m_privateContextMenu
== NULL
)
1124 m_privateContextMenu
= new wxMenu
;
1125 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
1126 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
1127 m_privateContextMenu
->AppendSeparator();
1128 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
1129 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
1130 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
1131 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
1132 m_privateContextMenu
->AppendSeparator();
1133 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
1136 if (m_privateContextMenu
!= NULL
)
1137 PopupMenu(m_privateContextMenu
);
1140 bool wxTextCtrl::MacSetupCursor( const wxPoint
& pt
)
1142 if ( !GetPeer()->SetupCursor( pt
) )
1143 return wxWindow::MacSetupCursor( pt
) ;
1148 #if !TARGET_API_MAC_OSX
1150 // user pane implementation
1152 void wxTextCtrl::MacControlUserPaneDrawProc(wxInt16 part
)
1154 GetPeer()->MacControlUserPaneDrawProc( part
) ;
1157 wxInt16
wxTextCtrl::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
1159 return GetPeer()->MacControlUserPaneHitTestProc( x
, y
) ;
1162 wxInt16
wxTextCtrl::MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
)
1164 return GetPeer()->MacControlUserPaneTrackingProc( x
, y
, actionProc
) ;
1167 void wxTextCtrl::MacControlUserPaneIdleProc()
1169 GetPeer()->MacControlUserPaneIdleProc( ) ;
1172 wxInt16
wxTextCtrl::MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
1174 return GetPeer()->MacControlUserPaneKeyDownProc( keyCode
, charCode
, modifiers
) ;
1177 void wxTextCtrl::MacControlUserPaneActivateProc(bool activating
)
1179 GetPeer()->MacControlUserPaneActivateProc( activating
) ;
1182 wxInt16
wxTextCtrl::MacControlUserPaneFocusProc(wxInt16 action
)
1184 return GetPeer()->MacControlUserPaneFocusProc( action
) ;
1187 void wxTextCtrl::MacControlUserPaneBackgroundProc(void* info
)
1189 GetPeer()->MacControlUserPaneBackgroundProc( info
) ;
1194 // ----------------------------------------------------------------------------
1195 // implementation base class
1196 // ----------------------------------------------------------------------------
1198 wxMacTextControl::wxMacTextControl(wxTextCtrl
* peer
) :
1199 wxMacControl( peer
)
1203 wxMacTextControl::~wxMacTextControl()
1207 void wxMacTextControl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
1211 void wxMacTextControl::Copy()
1215 void wxMacTextControl::Cut()
1219 void wxMacTextControl::Paste()
1223 bool wxMacTextControl::CanPaste() const
1228 void wxMacTextControl::SetEditable(bool editable
)
1232 wxTextPos
wxMacTextControl::GetLastPosition() const
1234 return GetStringValue().length() ;
1237 void wxMacTextControl::Replace( long from
, long to
, const wxString
&val
)
1239 SetSelection( from
, to
) ;
1243 void wxMacTextControl::Remove( long from
, long to
)
1245 SetSelection( from
, to
) ;
1246 WriteText( wxEmptyString
) ;
1249 void wxMacTextControl::Clear()
1251 SetStringValue( wxEmptyString
) ;
1254 bool wxMacTextControl::CanUndo() const
1259 void wxMacTextControl::Undo()
1263 bool wxMacTextControl::CanRedo() const
1268 void wxMacTextControl::Redo()
1272 long wxMacTextControl::XYToPosition(long x
, long y
) const
1277 bool wxMacTextControl::PositionToXY(long pos
, long *x
, long *y
) const
1282 void wxMacTextControl::ShowPosition( long WXUNUSED(pos
) )
1286 int wxMacTextControl::GetNumberOfLines() const
1288 ItemCount lines
= 0 ;
1289 wxString content
= GetStringValue() ;
1292 for (size_t i
= 0; i
< content
.length() ; i
++)
1294 if (content
[i
] == '\r')
1301 wxString
wxMacTextControl::GetLineText(long lineNo
) const
1303 // TODO: change this if possible to reflect real lines
1304 wxString content
= GetStringValue() ;
1308 for (size_t i
= 0; i
< content
.length() ; i
++)
1310 if (count
== lineNo
)
1312 // Add chars in line then
1315 for (size_t j
= i
; j
< content
.length(); j
++)
1317 if (content
[j
] == '\n')
1326 if (content
[i
] == '\n')
1330 return wxEmptyString
;
1333 int wxMacTextControl::GetLineLength(long lineNo
) const
1335 // TODO: change this if possible to reflect real lines
1336 wxString content
= GetStringValue() ;
1340 for (size_t i
= 0; i
< content
.length() ; i
++)
1342 if (count
== lineNo
)
1344 // Count chars in line then
1346 for (size_t j
= i
; j
< content
.length(); j
++)
1349 if (content
[j
] == '\n')
1356 if (content
[i
] == '\n')
1363 // ----------------------------------------------------------------------------
1364 // standard unicode control implementation
1365 // ----------------------------------------------------------------------------
1367 #if TARGET_API_MAC_OSX
1369 // the current unicode textcontrol implementation has a bug : only if the control
1370 // is currently having the focus, the selection can be retrieved by the corresponding
1371 // data tag. So we have a mirroring using a member variable
1372 // TODO : build event table using virtual member functions for wxMacControl
1374 static const EventTypeSpec unicodeTextControlEventList
[] =
1376 { kEventClassControl
, kEventControlSetFocusPart
} ,
1379 static pascal OSStatus
wxMacUnicodeTextControlControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
1381 OSStatus result
= eventNotHandledErr
;
1382 wxMacUnicodeTextControl
* focus
= (wxMacUnicodeTextControl
*) data
;
1383 wxMacCarbonEvent
cEvent( event
) ;
1385 switch ( GetEventKind( event
) )
1387 case kEventControlSetFocusPart
:
1389 ControlPartCode controlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
1390 if ( controlPart
== kControlFocusNoPart
)
1392 // about to loose focus -> store selection to field
1393 focus
->GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &focus
->m_selection
);
1395 result
= CallNextEventHandler(handler
,event
) ;
1396 if ( controlPart
!= kControlFocusNoPart
)
1398 // about to gain focus -> set selection from field
1399 focus
->SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &focus
->m_selection
);
1410 static pascal OSStatus
wxMacUnicodeTextControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
1412 OSStatus result
= eventNotHandledErr
;
1414 switch ( GetEventClass( event
) )
1416 case kEventClassControl
:
1417 result
= wxMacUnicodeTextControlControlEventHandler( handler
, event
, data
) ;
1426 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacUnicodeTextControlEventHandler
)
1428 wxMacUnicodeTextControl::wxMacUnicodeTextControl( wxTextCtrl
*wxPeer
,
1429 const wxString
& str
,
1431 const wxSize
& size
, long style
)
1432 : wxMacTextControl( wxPeer
)
1434 m_font
= wxPeer
->GetFont() ;
1435 m_windowStyle
= style
;
1436 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
1438 wxMacConvertNewlines10To13( &st
) ;
1439 wxMacCFStringHolder
cf(st
, m_font
.GetEncoding()) ;
1440 CFStringRef cfr
= cf
;
1441 Boolean isPassword
= ( m_windowStyle
& wxTE_PASSWORD
) != 0 ;
1442 m_valueTag
= isPassword
? kControlEditTextPasswordCFStringTag
: kControlEditTextCFStringTag
;
1444 OSStatus err
= CreateEditUnicodeTextControl(
1445 MAC_WXHWND(wxPeer
->MacGetTopLevelWindowRef()), &bounds
, cfr
,
1446 isPassword
, NULL
, &m_controlRef
) ;
1447 verify_noerr( err
);
1449 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
1450 SetData
<Boolean
>( kControlEditTextPart
, kControlEditTextSingleLineTag
, true ) ;
1452 InstallControlEventHandler( m_controlRef
, GetwxMacUnicodeTextControlEventHandlerUPP(),
1453 GetEventTypeCount(unicodeTextControlEventList
), unicodeTextControlEventList
, this,
1454 &m_focusHandlerRef
);
1457 wxMacUnicodeTextControl::~wxMacUnicodeTextControl()
1459 ::RemoveEventHandler( m_focusHandlerRef
);
1462 void wxMacUnicodeTextControl::VisibilityChanged(bool shown
)
1464 if ( !(m_windowStyle
& wxTE_MULTILINE
) && shown
)
1466 // work around a refresh issue insofar as not always the entire content is shown,
1467 // even if this would be possible
1468 ControlEditTextSelectionRec sel
;
1469 CFStringRef value
= NULL
;
1471 verify_noerr( GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) );
1472 verify_noerr( GetData
<CFStringRef
>( 0, m_valueTag
, &value
) );
1473 verify_noerr( SetData
<CFStringRef
>( 0, m_valueTag
, &value
) );
1474 verify_noerr( SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) );
1476 CFRelease( value
) ;
1480 wxString
wxMacUnicodeTextControl::GetStringValue() const
1483 CFStringRef value
= GetData
<CFStringRef
>(0, m_valueTag
) ;
1486 wxMacCFStringHolder
cf(value
) ;
1487 result
= cf
.AsString() ;
1491 wxMacConvertNewlines13To10( &result
) ;
1493 wxMacConvertNewlines10To13( &result
) ;
1499 void wxMacUnicodeTextControl::SetStringValue( const wxString
&str
)
1502 wxMacConvertNewlines10To13( &st
) ;
1503 wxMacCFStringHolder
cf( st
, m_font
.GetEncoding() ) ;
1504 verify_noerr( SetData
<CFStringRef
>( 0, m_valueTag
, cf
) ) ;
1507 void wxMacUnicodeTextControl::Copy()
1509 SendHICommand( kHICommandCopy
) ;
1512 void wxMacUnicodeTextControl::Cut()
1514 SendHICommand( kHICommandCut
) ;
1517 void wxMacUnicodeTextControl::Paste()
1519 SendHICommand( kHICommandPaste
) ;
1522 bool wxMacUnicodeTextControl::CanPaste() const
1527 void wxMacUnicodeTextControl::SetEditable(bool editable
)
1529 #if 0 // leads to problem because text cannot be selected anymore
1530 SetData
<Boolean
>( kControlEditTextPart
, kControlEditTextLockedTag
, (Boolean
) !editable
) ;
1534 void wxMacUnicodeTextControl::GetSelection( long* from
, long* to
) const
1536 ControlEditTextSelectionRec sel
;
1538 verify_noerr( GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) ) ;
1543 *from
= sel
.selStart
;
1548 void wxMacUnicodeTextControl::SetSelection( long from
, long to
)
1550 ControlEditTextSelectionRec sel
;
1552 int textLength
= 0 ;
1553 CFStringRef value
= GetData
<CFStringRef
>(0, m_valueTag
) ;
1556 wxMacCFStringHolder
cf(value
) ;
1557 textLength
= cf
.AsString().Length() ;
1560 if ((from
== -1) && (to
== -1))
1567 from
= wxMin(textLength
,wxMax(from
,0)) ;
1568 to
= wxMax(0,wxMin(textLength
,to
)) ;
1571 sel
.selStart
= from
;
1574 SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) ;
1579 void wxMacUnicodeTextControl::WriteText( const wxString
& str
)
1582 wxMacConvertNewlines10To13( &st
) ;
1584 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
1587 wxMacCFStringHolder
cf(st
, m_font
.GetEncoding() ) ;
1588 CFStringRef value
= cf
;
1589 SetData
<CFStringRef
>( 0, kControlEditTextInsertCFStringRefTag
, &value
);
1594 wxString val
= GetStringValue() ;
1596 GetSelection( &start
, &end
) ;
1597 val
.Remove( start
, end
- start
) ;
1598 val
.insert( start
, str
) ;
1599 SetStringValue( val
) ;
1600 SetSelection( start
+ str
.length() , start
+ str
.length() ) ;
1606 // ----------------------------------------------------------------------------
1607 // MLTE control implementation (common part)
1608 // ----------------------------------------------------------------------------
1610 // if MTLE is read only, no changes at all are allowed, not even from
1611 // procedural API, in order to allow changes via API all the same we must undo
1612 // the readonly status while we are executing, this class helps to do so
1614 class wxMacEditHelper
1617 wxMacEditHelper( TXNObject txn
)
1619 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
1621 TXNGetTXNObjectControls( m_txn
, 1 , tag
, m_data
) ;
1622 if ( m_data
[0].uValue
== kTXNReadOnly
)
1624 TXNControlData data
[] = { { kTXNReadWrite
} } ;
1625 TXNSetTXNObjectControls( m_txn
, false , 1 , tag
, data
) ;
1631 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
1632 if ( m_data
[0].uValue
== kTXNReadOnly
)
1633 TXNSetTXNObjectControls( m_txn
, false , 1 , tag
, m_data
) ;
1638 TXNControlData m_data
[1] ;
1641 wxMacMLTEControl::wxMacMLTEControl( wxTextCtrl
*peer
)
1642 : wxMacTextControl( peer
)
1644 SetNeedsFocusRect( true ) ;
1647 wxString
wxMacMLTEControl::GetStringValue() const
1651 Size actualSize
= 0;
1656 err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNUnicodeTextData
);
1665 actualSize
= GetHandleSize( theText
) / sizeof(UniChar
) ;
1666 if ( actualSize
> 0 )
1668 wxChar
*ptr
= NULL
;
1670 #if SIZEOF_WCHAR_T == 2
1671 ptr
= new wxChar
[actualSize
+ 1] ;
1672 wxStrncpy( ptr
, (wxChar
*)(*theText
) , actualSize
) ;
1674 SetHandleSize( theText
, (actualSize
+ 1) * sizeof(UniChar
) ) ;
1676 (((UniChar
*)*theText
)[actualSize
]) = 0 ;
1677 wxMBConvUTF16 converter
;
1678 size_t noChars
= converter
.MB2WC( NULL
, (const char*)*theText
, 0 ) ;
1679 wxASSERT_MSG( noChars
!= wxCONV_FAILED
, _T("Unable to count the number of characters in this string!") );
1680 ptr
= new wxChar
[noChars
+ 1] ;
1682 noChars
= converter
.MB2WC( ptr
, (const char*)*theText
, noChars
+ 1 ) ;
1683 wxASSERT_MSG( noChars
!= wxCONV_FAILED
, _T("Conversion of string failed!") );
1685 HUnlock( theText
) ;
1688 ptr
[actualSize
] = 0 ;
1689 result
= wxString( ptr
) ;
1693 DisposeHandle( theText
) ;
1697 err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNTextData
);
1706 actualSize
= GetHandleSize( theText
) ;
1707 if ( actualSize
> 0 )
1710 result
= wxString( *theText
, wxConvLocal
, actualSize
) ;
1711 HUnlock( theText
) ;
1714 DisposeHandle( theText
) ;
1720 wxMacConvertNewlines13To10( &result
) ;
1722 wxMacConvertNewlines10To13( &result
) ;
1728 void wxMacMLTEControl::SetStringValue( const wxString
&str
)
1731 wxMacConvertNewlines10To13( &st
);
1734 wxMacWindowClipper
c( m_peer
);
1737 wxMacEditHelper
help( m_txn
);
1738 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
);
1741 TXNSetSelection( m_txn
, 0, 0 );
1742 TXNShowSelection( m_txn
, kTXNShowStart
);
1746 TXNFrameOptions
wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle
)
1748 TXNFrameOptions frameOptions
= kTXNDontDrawCaretWhenInactiveMask
;
1750 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
1751 frameOptions
|= kTXNDoFontSubstitutionMask
;
1754 if ( ! (wxStyle
& wxTE_NOHIDESEL
) )
1755 frameOptions
|= kTXNDontDrawSelectionWhenInactiveMask
;
1757 if ( wxStyle
& (wxHSCROLL
| wxTE_DONTWRAP
) )
1758 frameOptions
|= kTXNWantHScrollBarMask
;
1760 if ( wxStyle
& wxTE_MULTILINE
)
1762 frameOptions
|= kTXNAlwaysWrapAtViewEdgeMask
;
1764 if ( !(wxStyle
& wxTE_NO_VSCROLL
) )
1766 frameOptions
|= kTXNWantVScrollBarMask
;
1768 // The following code causes drawing problems on 10.4. Perhaps it can be restored for
1769 // older versions of the OS, but I'm not sure it's appropriate to put a grow icon here
1770 // anyways, as AFAIK users can't actually use it to resize the text ctrl.
1771 // if ( frameOptions & kTXNWantHScrollBarMask )
1772 // frameOptions |= kTXNDrawGrowIconMask ;
1777 frameOptions
|= kTXNSingleLineOnlyMask
;
1780 return frameOptions
;
1783 void wxMacMLTEControl::AdjustCreationAttributes( const wxColour
&background
, bool visible
)
1785 TXNControlTag iControlTags
[] =
1787 kTXNDoFontSubstitution
,
1788 kTXNWordWrapStateTag
,
1790 TXNControlData iControlData
[] =
1796 int toptag
= WXSIZEOF( iControlTags
) ;
1798 if ( m_windowStyle
& wxTE_MULTILINE
)
1800 iControlData
[1].uValue
=
1801 (m_windowStyle
& wxTE_DONTWRAP
)
1806 OSStatus err
= TXNSetTXNObjectControls( m_txn
, false, toptag
, iControlTags
, iControlData
) ;
1807 verify_noerr( err
);
1809 // setting the default font:
1810 // under 10.2 this causes a visible caret, therefore we avoid it
1812 if ( UMAGetSystemVersion() >= 0x1030 )
1818 GetThemeFont( kThemeSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
1820 TXNTypeAttributes typeAttr
[] =
1822 { kTXNQDFontNameAttribute
, kTXNQDFontNameAttributeSize
, { (void*) fontName
} } ,
1823 { kTXNQDFontSizeAttribute
, kTXNFontSizeAttributeSize
, { (void*) (fontSize
<< 16) } } ,
1824 { kTXNQDFontStyleAttribute
, kTXNQDFontStyleAttributeSize
, { (void*) normal
} } ,
1827 err
= TXNSetTypeAttributes(
1828 m_txn
, sizeof(typeAttr
) / sizeof(TXNTypeAttributes
),
1829 typeAttr
, kTXNStartOffset
, kTXNEndOffset
);
1830 verify_noerr( err
);
1833 if ( m_windowStyle
& wxTE_PASSWORD
)
1835 UniChar c
= 0x00A5 ;
1836 err
= TXNEchoMode( m_txn
, c
, 0 , true );
1837 verify_noerr( err
);
1840 TXNBackground tback
;
1841 tback
.bgType
= kTXNBackgroundTypeRGB
;
1842 tback
.bg
.color
= MAC_WXCOLORREF( background
.GetPixel() );
1843 TXNSetBackground( m_txn
, &tback
);
1845 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
1846 if ( UMAGetSystemVersion() >= 0x1040 )
1848 TXNCommandEventSupportOptions options
;
1849 if ( TXNGetCommandEventSupport( m_txn
, &options
) == noErr
)
1852 kTXNSupportEditCommandProcessing
1853 | kTXNSupportEditCommandUpdating
1854 | kTXNSupportSpellCheckCommandProcessing
1855 | kTXNSupportSpellCheckCommandUpdating
1856 | kTXNSupportFontCommandProcessing
1857 | kTXNSupportFontCommandUpdating
;
1859 TXNSetCommandEventSupport( m_txn
, options
) ;
1865 void wxMacMLTEControl::SetBackground( const wxBrush
&brush
)
1867 // currently only solid background are supported
1868 TXNBackground tback
;
1870 tback
.bgType
= kTXNBackgroundTypeRGB
;
1871 tback
.bg
.color
= MAC_WXCOLORREF( brush
.GetColour().GetPixel() );
1872 TXNSetBackground( m_txn
, &tback
);
1875 void wxMacMLTEControl::TXNSetAttribute( const wxTextAttr
& style
, long from
, long to
)
1877 TXNTypeAttributes typeAttr
[4] ;
1881 if ( style
.HasFont() )
1883 const wxFont
&font
= style
.GetFont() ;
1885 #if 0 // old version
1886 Str255 fontName
= "\pMonaco" ;
1887 SInt16 fontSize
= 12 ;
1888 Style fontStyle
= normal
;
1889 wxMacStringToPascal( font
.GetFaceName() , fontName
) ;
1890 fontSize
= font
.GetPointSize() ;
1891 if ( font
.GetUnderlined() )
1892 fontStyle
|= underline
;
1893 if ( font
.GetWeight() == wxBOLD
)
1895 if ( font
.GetStyle() == wxITALIC
)
1896 fontStyle
|= italic
;
1898 typeAttr
[attrCount
].tag
= kTXNQDFontNameAttribute
;
1899 typeAttr
[attrCount
].size
= kTXNQDFontNameAttributeSize
;
1900 typeAttr
[attrCount
].data
.dataPtr
= (void*)fontName
;
1903 typeAttr
[attrCount
].tag
= kTXNQDFontSizeAttribute
;
1904 typeAttr
[attrCount
].size
= kTXNFontSizeAttributeSize
;
1905 typeAttr
[attrCount
].data
.dataValue
= (fontSize
<< 16) ;
1908 typeAttr
[attrCount
].tag
= kTXNQDFontStyleAttribute
;
1909 typeAttr
[attrCount
].size
= kTXNQDFontStyleAttributeSize
;
1910 typeAttr
[attrCount
].data
.dataValue
= fontStyle
;
1913 typeAttr
[attrCount
].tag
= kTXNATSUIStyle
;
1914 typeAttr
[attrCount
].size
= kTXNATSUIStyleSize
;
1915 typeAttr
[attrCount
].data
.dataValue
= (UInt32
)font
.MacGetATSUStyle() ;
1920 if ( style
.HasTextColour() )
1922 color
= MAC_WXCOLORREF(style
.GetTextColour().GetPixel()) ;
1924 typeAttr
[attrCount
].tag
= kTXNQDFontColorAttribute
;
1925 typeAttr
[attrCount
].size
= kTXNQDFontColorAttributeSize
;
1926 typeAttr
[attrCount
].data
.dataPtr
= (void*) &color
;
1930 if ( attrCount
> 0 )
1932 verify_noerr( TXNSetTypeAttributes( m_txn
, attrCount
, typeAttr
, from
, to
) );
1933 // unfortunately the relayout is not automatic
1934 TXNRecalcTextLayout( m_txn
);
1938 void wxMacMLTEControl::SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
)
1940 wxMacEditHelper
help( m_txn
) ;
1941 TXNSetAttribute( wxTextAttr( foreground
, wxNullColour
, font
), kTXNStartOffset
, kTXNEndOffset
) ;
1944 void wxMacMLTEControl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1946 wxMacEditHelper
help( m_txn
) ;
1947 TXNSetAttribute( style
, start
, end
) ;
1950 void wxMacMLTEControl::Copy()
1952 ClearCurrentScrap();
1954 TXNConvertToPublicScrap();
1957 void wxMacMLTEControl::Cut()
1959 ClearCurrentScrap();
1961 TXNConvertToPublicScrap();
1964 void wxMacMLTEControl::Paste()
1966 TXNConvertFromPublicScrap();
1970 bool wxMacMLTEControl::CanPaste() const
1972 return TXNIsScrapPastable() ;
1975 void wxMacMLTEControl::SetEditable(bool editable
)
1977 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
1978 TXNControlData data
[] = { { editable
? kTXNReadWrite
: kTXNReadOnly
} } ;
1979 TXNSetTXNObjectControls( m_txn
, false, WXSIZEOF(tag
), tag
, data
) ;
1982 wxTextPos
wxMacMLTEControl::GetLastPosition() const
1984 wxTextPos actualsize
= 0 ;
1987 OSErr err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNTextData
);
1992 actualsize
= GetHandleSize( theText
) ;
1993 DisposeHandle( theText
) ;
2003 void wxMacMLTEControl::Replace( long from
, long to
, const wxString
&str
)
2005 wxString value
= str
;
2006 wxMacConvertNewlines10To13( &value
) ;
2008 wxMacEditHelper
help( m_txn
) ;
2009 wxMacWindowClipper
c( m_peer
) ;
2011 TXNSetSelection( m_txn
, from
, to
) ;
2013 SetTXNData( value
, kTXNUseCurrentSelection
, kTXNUseCurrentSelection
) ;
2016 void wxMacMLTEControl::Remove( long from
, long to
)
2018 wxMacWindowClipper
c( m_peer
) ;
2019 wxMacEditHelper
help( m_txn
) ;
2020 TXNSetSelection( m_txn
, from
, to
) ;
2024 void wxMacMLTEControl::GetSelection( long* from
, long* to
) const
2026 TXNGetSelection( m_txn
, (TXNOffset
*) from
, (TXNOffset
*) to
) ;
2029 void wxMacMLTEControl::SetSelection( long from
, long to
)
2031 wxMacWindowClipper
c( m_peer
) ;
2033 // change the selection
2034 if ((from
== -1) && (to
== -1))
2035 TXNSelectAll( m_txn
);
2037 TXNSetSelection( m_txn
, from
, to
);
2039 TXNShowSelection( m_txn
, kTXNShowStart
);
2042 void wxMacMLTEControl::WriteText( const wxString
& str
)
2045 wxMacConvertNewlines10To13( &st
) ;
2047 long start
, end
, dummy
;
2049 GetSelection( &start
, &dummy
) ;
2050 wxMacWindowClipper
c( m_peer
) ;
2053 wxMacEditHelper
helper( m_txn
) ;
2054 SetTXNData( st
, kTXNUseCurrentSelection
, kTXNUseCurrentSelection
) ;
2057 GetSelection( &dummy
, &end
) ;
2059 // TODO: SetStyle( start , end , GetDefaultStyle() ) ;
2062 void wxMacMLTEControl::Clear()
2064 wxMacWindowClipper
c( m_peer
) ;
2065 wxMacEditHelper
st( m_txn
) ;
2066 TXNSetSelection( m_txn
, kTXNStartOffset
, kTXNEndOffset
) ;
2070 bool wxMacMLTEControl::CanUndo() const
2072 return TXNCanUndo( m_txn
, NULL
) ;
2075 void wxMacMLTEControl::Undo()
2080 bool wxMacMLTEControl::CanRedo() const
2082 return TXNCanRedo( m_txn
, NULL
) ;
2085 void wxMacMLTEControl::Redo()
2090 int wxMacMLTEControl::GetNumberOfLines() const
2092 ItemCount lines
= 0 ;
2093 TXNGetLineCount( m_txn
, &lines
) ;
2098 long wxMacMLTEControl::XYToPosition(long x
, long y
) const
2103 // TODO: find a better implementation : while we can get the
2104 // line metrics of a certain line, we don't get its starting
2105 // position, so it would probably be rather a binary search
2106 // for the start position
2107 long xpos
= 0, ypos
= 0 ;
2108 int lastHeight
= 0 ;
2111 lastpos
= GetLastPosition() ;
2112 for ( n
= 0 ; n
<= (ItemCount
) lastpos
; ++n
)
2114 if ( y
== ypos
&& x
== xpos
)
2117 TXNOffsetToPoint( m_txn
, n
, &curpt
) ;
2119 if ( curpt
.v
> lastHeight
)
2125 lastHeight
= curpt
.v
;
2134 bool wxMacMLTEControl::PositionToXY( long pos
, long *x
, long *y
) const
2144 lastpos
= GetLastPosition() ;
2145 if ( pos
<= lastpos
)
2147 // TODO: find a better implementation - while we can get the
2148 // line metrics of a certain line, we don't get its starting
2149 // position, so it would probably be rather a binary search
2150 // for the start position
2151 long xpos
= 0, ypos
= 0 ;
2152 int lastHeight
= 0 ;
2155 for ( n
= 0 ; n
<= (ItemCount
) pos
; ++n
)
2157 TXNOffsetToPoint( m_txn
, n
, &curpt
) ;
2159 if ( curpt
.v
> lastHeight
)
2165 lastHeight
= curpt
.v
;
2180 void wxMacMLTEControl::ShowPosition( long pos
)
2182 #if TARGET_RT_MAC_MACHO && defined(AVAILABLE_MAC_OS_X_VERSION_10_2_AND_LATER)
2184 Point current
, desired
;
2185 TXNOffset selstart
, selend
;
2187 TXNGetSelection( m_txn
, &selstart
, &selend
);
2188 TXNOffsetToPoint( m_txn
, selstart
, ¤t
);
2189 TXNOffsetToPoint( m_txn
, pos
, &desired
);
2191 // TODO: use HIPoints for 10.3 and above
2192 if ( (UInt32
)TXNScroll
!= (UInt32
)kUnresolvedCFragSymbolAddress
)
2194 OSErr theErr
= noErr
;
2195 SInt32 dv
= desired
.v
- current
.v
;
2196 SInt32 dh
= desired
.h
- current
.h
;
2197 TXNShowSelection( m_txn
, kTXNShowStart
) ; // NB: should this be kTXNShowStart or kTXNShowEnd ??
2198 theErr
= TXNScroll( m_txn
, kTXNScrollUnitsInPixels
, kTXNScrollUnitsInPixels
, &dv
, &dh
);
2200 // there will be an error returned for classic MLTE implementation when the control is
2201 // invisible, but HITextView works correctly, so we don't assert that one
2202 // wxASSERT_MSG( theErr == noErr, _T("TXNScroll returned an error!") );
2208 void wxMacMLTEControl::SetTXNData( const wxString
& st
, TXNOffset start
, TXNOffset end
)
2211 #if SIZEOF_WCHAR_T == 2
2212 size_t len
= st
.Len() ;
2213 TXNSetData( m_txn
, kTXNUnicodeTextData
, (void*)st
.wc_str(), len
* 2, start
, end
);
2215 wxMBConvUTF16 converter
;
2216 ByteCount byteBufferLen
= converter
.WC2MB( NULL
, st
.wc_str(), 0 ) ;
2217 UniChar
*unibuf
= (UniChar
*)malloc( byteBufferLen
) ;
2218 converter
.WC2MB( (char*)unibuf
, st
.wc_str(), byteBufferLen
) ;
2219 TXNSetData( m_txn
, kTXNUnicodeTextData
, (void*)unibuf
, byteBufferLen
, start
, end
) ;
2223 wxCharBuffer text
= st
.mb_str( wxConvLocal
) ;
2224 TXNSetData( m_txn
, kTXNTextData
, (void*)text
.data(), strlen( text
), start
, end
) ;
2228 wxString
wxMacMLTEControl::GetLineText(long lineNo
) const
2232 if ( lineNo
< GetNumberOfLines() )
2235 Fixed lineWidth
, lineHeight
, currentHeight
;
2238 // get the first possible position in the control
2239 TXNOffsetToPoint(m_txn
, 0, &firstPoint
);
2241 // Iterate through the lines until we reach the one we want,
2242 // adding to our current y pixel point position
2245 while (ypos
< lineNo
)
2247 TXNGetLineMetrics(m_txn
, ypos
++, &lineWidth
, &lineHeight
);
2248 currentHeight
+= lineHeight
;
2251 Point thePoint
= { firstPoint
.v
+ (currentHeight
>> 16), firstPoint
.h
+ (0) };
2252 TXNOffset theOffset
;
2253 TXNPointToOffset(m_txn
, thePoint
, &theOffset
);
2255 wxString content
= GetStringValue() ;
2256 Point currentPoint
= thePoint
;
2257 while (thePoint
.v
== currentPoint
.v
&& theOffset
< content
.length())
2259 line
+= content
[theOffset
];
2260 TXNOffsetToPoint(m_txn
, ++theOffset
, ¤tPoint
);
2267 int wxMacMLTEControl::GetLineLength(long lineNo
) const
2271 if ( lineNo
< GetNumberOfLines() )
2274 Fixed lineWidth
, lineHeight
, currentHeight
;
2277 // get the first possible position in the control
2278 TXNOffsetToPoint(m_txn
, 0, &firstPoint
);
2280 // Iterate through the lines until we reach the one we want,
2281 // adding to our current y pixel point position
2284 while (ypos
< lineNo
)
2286 TXNGetLineMetrics(m_txn
, ypos
++, &lineWidth
, &lineHeight
);
2287 currentHeight
+= lineHeight
;
2290 Point thePoint
= { firstPoint
.v
+ (currentHeight
>> 16), firstPoint
.h
+ (0) };
2291 TXNOffset theOffset
;
2292 TXNPointToOffset(m_txn
, thePoint
, &theOffset
);
2294 wxString content
= GetStringValue() ;
2295 Point currentPoint
= thePoint
;
2296 while (thePoint
.v
== currentPoint
.v
&& theOffset
< content
.length())
2299 TXNOffsetToPoint(m_txn
, ++theOffset
, ¤tPoint
);
2306 // ----------------------------------------------------------------------------
2307 // MLTE control implementation (classic part)
2308 // ----------------------------------------------------------------------------
2310 // OS X Notes : We still don't have a full replacement for MLTE, so this implementation
2311 // has to live on. We have different problems coming from outdated implementations on the
2312 // various OS X versions. Most deal with the scrollbars: they are not correctly embedded
2313 // while this can be solved on 10.3 by reassigning them the correct place, on 10.2 there is
2314 // no way out, therefore we are using our own implementation and our own scrollbars ....
2316 #ifdef __WXMAC_OSX__
2318 TXNScrollInfoUPP gTXNScrollInfoProc
= NULL
;
2319 ControlActionUPP gTXNScrollActionProc
= NULL
;
2321 pascal void wxMacMLTEClassicControl::TXNScrollInfoProc(
2322 SInt32 iValue
, SInt32 iMaximumValue
,
2323 TXNScrollBarOrientation iScrollBarOrientation
, SInt32 iRefCon
)
2325 wxMacMLTEClassicControl
* mlte
= (wxMacMLTEClassicControl
*) iRefCon
;
2326 SInt32 value
= wxMax( iValue
, 0 ) ;
2327 SInt32 maximum
= wxMax( iMaximumValue
, 0 ) ;
2329 if ( iScrollBarOrientation
== kTXNHorizontal
)
2331 if ( mlte
->m_sbHorizontal
)
2333 SetControl32BitValue( mlte
->m_sbHorizontal
, value
) ;
2334 SetControl32BitMaximum( mlte
->m_sbHorizontal
, maximum
) ;
2335 mlte
->m_lastHorizontalValue
= value
;
2338 else if ( iScrollBarOrientation
== kTXNVertical
)
2340 if ( mlte
->m_sbVertical
)
2342 SetControl32BitValue( mlte
->m_sbVertical
, value
) ;
2343 SetControl32BitMaximum( mlte
->m_sbVertical
, maximum
) ;
2344 mlte
->m_lastVerticalValue
= value
;
2349 pascal void wxMacMLTEClassicControl::TXNScrollActionProc( ControlRef controlRef
, ControlPartCode partCode
)
2351 wxMacMLTEClassicControl
* mlte
= (wxMacMLTEClassicControl
*) GetControlReference( controlRef
) ;
2355 if ( controlRef
!= mlte
->m_sbVertical
&& controlRef
!= mlte
->m_sbHorizontal
)
2359 bool isHorizontal
= ( controlRef
== mlte
->m_sbHorizontal
) ;
2361 SInt32 minimum
= 0 ;
2362 SInt32 maximum
= GetControl32BitMaximum( controlRef
) ;
2363 SInt32 value
= GetControl32BitValue( controlRef
) ;
2368 case kControlDownButtonPart
:
2372 case kControlUpButtonPart
:
2376 case kControlPageDownPart
:
2377 delta
= GetControlViewSize( controlRef
) ;
2380 case kControlPageUpPart
:
2381 delta
= -GetControlViewSize( controlRef
) ;
2384 case kControlIndicatorPart
:
2385 delta
= value
- (isHorizontal
? mlte
->m_lastHorizontalValue
: mlte
->m_lastVerticalValue
) ;
2394 SInt32 newValue
= value
;
2396 if ( partCode
!= kControlIndicatorPart
)
2398 if ( value
+ delta
< minimum
)
2399 delta
= minimum
- value
;
2400 if ( value
+ delta
> maximum
)
2401 delta
= maximum
- value
;
2403 SetControl32BitValue( controlRef
, value
+ delta
) ;
2404 newValue
= value
+ delta
;
2407 SInt32 verticalDelta
= isHorizontal
? 0 : delta
;
2408 SInt32 horizontalDelta
= isHorizontal
? delta
: 0 ;
2411 mlte
->m_txn
, kTXNScrollUnitsInPixels
, kTXNScrollUnitsInPixels
,
2412 &verticalDelta
, &horizontalDelta
);
2413 verify_noerr( err
);
2416 mlte
->m_lastHorizontalValue
= newValue
;
2418 mlte
->m_lastVerticalValue
= newValue
;
2423 // make correct activations
2424 void wxMacMLTEClassicControl::MacActivatePaneText(bool setActive
)
2426 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference(m_controlRef
);
2428 wxMacWindowClipper
clipper( textctrl
) ;
2429 TXNActivate( m_txn
, m_txnFrameID
, setActive
);
2431 ControlRef controlFocus
= 0 ;
2432 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
2433 if ( controlFocus
== m_controlRef
)
2434 TXNFocus( m_txn
, setActive
);
2437 void wxMacMLTEClassicControl::MacFocusPaneText(bool setFocus
)
2439 TXNFocus( m_txn
, setFocus
);
2442 // guards against inappropriate redraw (hidden objects drawing onto window)
2444 void wxMacMLTEClassicControl::MacSetObjectVisibility(bool vis
)
2446 ControlRef controlFocus
= 0 ;
2447 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
2449 if ( !vis
&& (controlFocus
== m_controlRef
) )
2450 SetKeyboardFocus( m_txnWindow
, m_controlRef
, kControlFocusNoPart
) ;
2452 TXNControlTag iControlTags
[1] = { kTXNVisibilityTag
};
2453 TXNControlData iControlData
[1] = { { (UInt32
)false } };
2455 verify_noerr( TXNGetTXNObjectControls( m_txn
, 1, iControlTags
, iControlData
) ) ;
2457 if ( iControlData
[0].uValue
!= vis
)
2459 iControlData
[0].uValue
= vis
;
2460 verify_noerr( TXNSetTXNObjectControls( m_txn
, false , 1, iControlTags
, iControlData
) ) ;
2463 // currently, we always clip as partial visibility (overlapped) visibility is also a problem,
2464 // if we run into further problems we might set the FrameBounds to an empty rect here
2467 // make sure that the TXNObject is at the right position
2469 void wxMacMLTEClassicControl::MacUpdatePosition()
2471 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
2472 if ( textctrl
== NULL
)
2476 UMAGetControlBoundsInWindowCoords( m_controlRef
, &bounds
);
2478 wxRect visRect
= textctrl
->MacGetClippedClientRect() ;
2479 Rect visBounds
= { visRect
.y
, visRect
.x
, visRect
.y
+ visRect
.height
, visRect
.x
+ visRect
.width
} ;
2482 textctrl
->MacWindowToRootWindow( &x
, &y
) ;
2483 OffsetRect( &visBounds
, x
, y
) ;
2485 if ( !EqualRect( &bounds
, &m_txnControlBounds
) || !EqualRect( &visBounds
, &m_txnVisBounds
) )
2487 m_txnControlBounds
= bounds
;
2488 m_txnVisBounds
= visBounds
;
2489 wxMacWindowClipper
cl( textctrl
) ;
2491 #ifdef __WXMAC_OSX__
2492 bool isCompositing
= textctrl
->MacGetTopLevelWindow()->MacUsesCompositing() ;
2493 if ( m_sbHorizontal
|| m_sbVertical
)
2495 int w
= bounds
.right
- bounds
.left
;
2496 int h
= bounds
.bottom
- bounds
.top
;
2498 if ( m_sbHorizontal
)
2502 sbBounds
.left
= -1 ;
2503 sbBounds
.top
= h
- 14 ;
2504 sbBounds
.right
= w
+ 1 ;
2505 sbBounds
.bottom
= h
+ 1 ;
2507 if ( !isCompositing
)
2508 OffsetRect( &sbBounds
, m_txnControlBounds
.left
, m_txnControlBounds
.top
) ;
2510 SetControlBounds( m_sbHorizontal
, &sbBounds
) ;
2511 SetControlViewSize( m_sbHorizontal
, w
) ;
2518 sbBounds
.left
= w
- 14 ;
2520 sbBounds
.right
= w
+ 1 ;
2521 sbBounds
.bottom
= m_sbHorizontal
? h
- 14 : h
+ 1 ;
2523 if ( !isCompositing
)
2524 OffsetRect( &sbBounds
, m_txnControlBounds
.left
, m_txnControlBounds
.top
) ;
2526 SetControlBounds( m_sbVertical
, &sbBounds
) ;
2527 SetControlViewSize( m_sbVertical
, h
) ;
2532 TXNLongRect olddestRect
;
2533 TXNGetRectBounds( m_txn
, &oldviewRect
, &olddestRect
, NULL
) ;
2535 Rect viewRect
= { m_txnControlBounds
.top
, m_txnControlBounds
.left
,
2536 m_txnControlBounds
.bottom
- ( m_sbHorizontal
? 14 : 0 ) ,
2537 m_txnControlBounds
.right
- ( m_sbVertical
? 14 : 0 ) } ;
2538 TXNLongRect destRect
= { m_txnControlBounds
.top
, m_txnControlBounds
.left
,
2539 m_txnControlBounds
.bottom
- ( m_sbHorizontal
? 14 : 0 ) ,
2540 m_txnControlBounds
.right
- ( m_sbVertical
? 14 : 0 ) } ;
2542 if ( olddestRect
.right
>= 10000 )
2543 destRect
.right
= destRect
.left
+ 32000 ;
2545 if ( olddestRect
.bottom
>= 0x20000000 )
2546 destRect
.bottom
= destRect
.top
+ 0x40000000 ;
2548 SectRect( &viewRect
, &visBounds
, &viewRect
) ;
2549 TXNSetRectBounds( m_txn
, &viewRect
, &destRect
, true ) ;
2554 m_txnControlBounds
.top
,
2555 m_txnControlBounds
.left
,
2556 m_txnControlBounds
.bottom
- (m_sbHorizontal
? 14 : 0),
2557 m_txnControlBounds
.right
- (m_sbVertical
? 14 : 0),
2563 m_txn
, m_txnControlBounds
.top
, m_txnControlBounds
.left
,
2564 wxMax( m_txnControlBounds
.bottom
, m_txnControlBounds
.top
),
2565 wxMax( m_txnControlBounds
.right
, m_txnControlBounds
.left
), m_txnFrameID
);
2568 // the SetFrameBounds method under Classic sometimes does not correctly scroll a selection into sight after a
2569 // movement, therefore we have to force it
2571 // this problem has been reported in OSX as well, so we use this here once again
2573 TXNLongRect textRect
;
2574 TXNGetRectBounds( m_txn
, NULL
, NULL
, &textRect
) ;
2575 if ( textRect
.left
< m_txnControlBounds
.left
)
2576 TXNShowSelection( m_txn
, kTXNShowStart
) ;
2580 void wxMacMLTEClassicControl::SetRect( Rect
*r
)
2582 wxMacControl::SetRect( r
) ;
2583 MacUpdatePosition() ;
2586 void wxMacMLTEClassicControl::MacControlUserPaneDrawProc(wxInt16 thePart
)
2588 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
2589 if ( textctrl
== NULL
)
2592 if ( textctrl
->MacIsReallyShown() )
2594 wxMacWindowClipper
clipper( textctrl
) ;
2595 TXNDraw( m_txn
, NULL
) ;
2599 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
2601 Point where
= { y
, x
} ;
2602 ControlPartCode result
= kControlNoPart
;
2604 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference( m_controlRef
);
2605 if ( (textctrl
!= NULL
) && textctrl
->MacIsReallyShown() )
2607 if (PtInRect( where
, &m_txnControlBounds
))
2609 result
= kControlEditTextPart
;
2613 // sometimes we get the coords also in control local coordinates, therefore test again
2614 if ( textctrl
->MacGetTopLevelWindow()->MacUsesCompositing() )
2617 textctrl
->MacClientToRootWindow( &x
, &y
) ;
2622 if (PtInRect( where
, &m_txnControlBounds
))
2623 result
= kControlEditTextPart
;
2630 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneTrackingProc( wxInt16 x
, wxInt16 y
, void* actionProc
)
2632 ControlPartCode result
= kControlNoPart
;
2634 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference( m_controlRef
);
2635 if ( (textctrl
!= NULL
) && textctrl
->MacIsReallyShown() )
2637 Point startPt
= { y
, x
} ;
2638 // for compositing, we must convert these into toplevel window coordinates, because hittesting expects them
2639 if ( textctrl
->MacGetTopLevelWindow()->MacUsesCompositing() )
2642 textctrl
->MacClientToRootWindow( &x
, &y
) ;
2647 switch (MacControlUserPaneHitTestProc( startPt
.h
, startPt
.v
))
2649 case kControlEditTextPart
:
2651 wxMacWindowClipper
clipper( textctrl
) ;
2654 ConvertEventRefToEventRecord( (EventRef
) wxTheApp
->MacGetCurrentEvent() , &rec
) ;
2655 TXNClick( m_txn
, &rec
);
2667 void wxMacMLTEClassicControl::MacControlUserPaneIdleProc()
2669 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
2670 if ( textctrl
== NULL
)
2673 if (textctrl
->MacIsReallyShown())
2675 if (IsControlActive(m_controlRef
))
2679 wxMacWindowClipper
clipper( textctrl
) ;
2684 if (PtInRect(mousep
, &m_txnControlBounds
))
2686 RgnHandle theRgn
= NewRgn();
2687 RectRgn(theRgn
, &m_txnControlBounds
);
2688 TXNAdjustCursor(m_txn
, theRgn
);
2695 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneKeyDownProc (wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
2697 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
2698 if ( textctrl
== NULL
)
2699 return kControlNoPart
;
2701 wxMacWindowClipper
clipper( textctrl
) ;
2704 memset( &ev
, 0 , sizeof( ev
) ) ;
2706 ev
.modifiers
= modifiers
;
2707 ev
.message
= ((keyCode
<< 8) & keyCodeMask
) | (charCode
& charCodeMask
);
2708 TXNKeyDown( m_txn
, &ev
);
2710 return kControlEntireControl
;
2713 void wxMacMLTEClassicControl::MacControlUserPaneActivateProc(bool activating
)
2715 MacActivatePaneText( activating
);
2718 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneFocusProc(wxInt16 action
)
2720 ControlPartCode focusResult
= kControlFocusNoPart
;
2722 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
2723 if ( textctrl
== NULL
)
2726 wxMacWindowClipper
clipper( textctrl
) ;
2728 ControlRef controlFocus
= NULL
;
2729 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
2730 bool wasFocused
= ( controlFocus
== m_controlRef
) ;
2734 case kControlFocusPrevPart
:
2735 case kControlFocusNextPart
:
2736 MacFocusPaneText( !wasFocused
);
2737 focusResult
= (!wasFocused
? (ControlPartCode
) kControlEditTextPart
: (ControlPartCode
) kControlFocusNoPart
);
2740 case kControlFocusNoPart
:
2742 MacFocusPaneText( false );
2743 focusResult
= kControlFocusNoPart
;
2750 void wxMacMLTEClassicControl::MacControlUserPaneBackgroundProc( void *info
)
2754 wxMacMLTEClassicControl::wxMacMLTEClassicControl( wxTextCtrl
*wxPeer
,
2755 const wxString
& str
,
2757 const wxSize
& size
, long style
)
2758 : wxMacMLTEControl( wxPeer
)
2760 m_font
= wxPeer
->GetFont() ;
2761 m_windowStyle
= style
;
2762 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
2765 kControlSupportsEmbedding
| kControlSupportsFocus
| kControlWantsIdle
2766 | kControlWantsActivate
| kControlHandlesTracking
2767 // | kControlHasSpecialBackground
2768 | kControlGetsFocusOnClick
| kControlSupportsLiveFeedback
;
2770 OSStatus err
= ::CreateUserPaneControl(
2771 MAC_WXHWND(wxPeer
->GetParent()->MacGetTopLevelWindowRef()),
2772 &bounds
, featureSet
, &m_controlRef
);
2773 verify_noerr( err
);
2777 AdjustCreationAttributes( *wxWHITE
, true ) ;
2779 MacSetObjectVisibility( wxPeer
->MacIsReallyShown() ) ;
2783 wxMacConvertNewlines10To13( &st
) ;
2784 wxMacWindowClipper
clipper( m_peer
) ;
2785 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
) ;
2786 TXNSetSelection( m_txn
, 0, 0 ) ;
2790 wxMacMLTEClassicControl::~wxMacMLTEClassicControl()
2792 TXNDeleteObject( m_txn
);
2796 void wxMacMLTEClassicControl::VisibilityChanged(bool shown
)
2798 MacSetObjectVisibility( shown
) ;
2799 wxMacControl::VisibilityChanged( shown
) ;
2802 void wxMacMLTEClassicControl::SuperChangedPosition()
2804 MacUpdatePosition() ;
2805 wxMacControl::SuperChangedPosition() ;
2808 #ifdef __WXMAC_OSX__
2810 ControlUserPaneDrawUPP gTPDrawProc
= NULL
;
2811 ControlUserPaneHitTestUPP gTPHitProc
= NULL
;
2812 ControlUserPaneTrackingUPP gTPTrackProc
= NULL
;
2813 ControlUserPaneIdleUPP gTPIdleProc
= NULL
;
2814 ControlUserPaneKeyDownUPP gTPKeyProc
= NULL
;
2815 ControlUserPaneActivateUPP gTPActivateProc
= NULL
;
2816 ControlUserPaneFocusUPP gTPFocusProc
= NULL
;
2818 static pascal void wxMacControlUserPaneDrawProc(ControlRef control
, SInt16 part
)
2820 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2821 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2823 win
->MacControlUserPaneDrawProc( part
) ;
2826 static pascal ControlPartCode
wxMacControlUserPaneHitTestProc(ControlRef control
, Point where
)
2828 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2829 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2831 return win
->MacControlUserPaneHitTestProc( where
.h
, where
.v
) ;
2833 return kControlNoPart
;
2836 static pascal ControlPartCode
wxMacControlUserPaneTrackingProc(ControlRef control
, Point startPt
, ControlActionUPP actionProc
)
2838 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2839 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2841 return win
->MacControlUserPaneTrackingProc( startPt
.h
, startPt
.v
, (void*) actionProc
) ;
2843 return kControlNoPart
;
2846 static pascal void wxMacControlUserPaneIdleProc(ControlRef control
)
2848 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2849 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2851 win
->MacControlUserPaneIdleProc() ;
2854 static pascal ControlPartCode
wxMacControlUserPaneKeyDownProc(ControlRef control
, SInt16 keyCode
, SInt16 charCode
, SInt16 modifiers
)
2856 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2857 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2859 return win
->MacControlUserPaneKeyDownProc( keyCode
, charCode
, modifiers
) ;
2861 return kControlNoPart
;
2864 static pascal void wxMacControlUserPaneActivateProc(ControlRef control
, Boolean activating
)
2866 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2867 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2869 win
->MacControlUserPaneActivateProc( activating
) ;
2872 static pascal ControlPartCode
wxMacControlUserPaneFocusProc(ControlRef control
, ControlFocusPart action
)
2874 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2875 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2877 return win
->MacControlUserPaneFocusProc( action
) ;
2879 return kControlNoPart
;
2883 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control
, ControlBackgroundPtr info
)
2885 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindControlFromMacControl(control
) , wxTextCtrl
) ;
2886 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2888 win
->MacControlUserPaneBackgroundProc(info
) ;
2892 #endif // __WXMAC_OSX__
2894 // TXNRegisterScrollInfoProc
2896 OSStatus
wxMacMLTEClassicControl::DoCreate()
2899 OSStatus err
= noErr
;
2901 // set up our globals
2902 #ifdef __WXMAC_OSX__
2903 if (gTPDrawProc
== NULL
) gTPDrawProc
= NewControlUserPaneDrawUPP(wxMacControlUserPaneDrawProc
);
2904 if (gTPHitProc
== NULL
) gTPHitProc
= NewControlUserPaneHitTestUPP(wxMacControlUserPaneHitTestProc
);
2905 if (gTPTrackProc
== NULL
) gTPTrackProc
= NewControlUserPaneTrackingUPP(wxMacControlUserPaneTrackingProc
);
2906 if (gTPIdleProc
== NULL
) gTPIdleProc
= NewControlUserPaneIdleUPP(wxMacControlUserPaneIdleProc
);
2907 if (gTPKeyProc
== NULL
) gTPKeyProc
= NewControlUserPaneKeyDownUPP(wxMacControlUserPaneKeyDownProc
);
2908 if (gTPActivateProc
== NULL
) gTPActivateProc
= NewControlUserPaneActivateUPP(wxMacControlUserPaneActivateProc
);
2909 if (gTPFocusProc
== NULL
) gTPFocusProc
= NewControlUserPaneFocusUPP(wxMacControlUserPaneFocusProc
);
2911 if (gTXNScrollInfoProc
== NULL
) gTXNScrollInfoProc
= NewTXNScrollInfoUPP(TXNScrollInfoProc
) ;
2912 if (gTXNScrollActionProc
== NULL
) gTXNScrollActionProc
= NewControlActionUPP(TXNScrollActionProc
) ;
2915 // set the initial settings for our private data
2917 m_txnWindow
= GetControlOwner(m_controlRef
);
2918 m_txnPort
= (GrafPtr
) GetWindowPort(m_txnWindow
);
2920 #ifdef __WXMAC_OSX__
2921 // set up the user pane procedures
2922 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneDrawProcTag
, sizeof(gTPDrawProc
), &gTPDrawProc
);
2923 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneHitTestProcTag
, sizeof(gTPHitProc
), &gTPHitProc
);
2924 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneTrackingProcTag
, sizeof(gTPTrackProc
), &gTPTrackProc
);
2925 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneIdleProcTag
, sizeof(gTPIdleProc
), &gTPIdleProc
);
2926 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneKeyDownProcTag
, sizeof(gTPKeyProc
), &gTPKeyProc
);
2927 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneActivateProcTag
, sizeof(gTPActivateProc
), &gTPActivateProc
);
2928 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneFocusProcTag
, sizeof(gTPFocusProc
), &gTPFocusProc
);
2931 // calculate the rectangles used by the control
2932 UMAGetControlBoundsInWindowCoords( m_controlRef
, &bounds
);
2934 m_txnControlBounds
= bounds
;
2935 m_txnVisBounds
= bounds
;
2940 GetGWorld( &origPort
, &origDev
) ;
2941 SetPort( m_txnPort
);
2943 // create the new edit field
2944 TXNFrameOptions frameOptions
= FrameOptionsFromWXStyle( m_windowStyle
);
2946 #ifdef __WXMAC_OSX__
2947 // the scrollbars are not correctly embedded but are inserted at the root:
2948 // this gives us problems as we have erratic redraws even over the structure area
2950 m_sbHorizontal
= 0 ;
2952 m_lastHorizontalValue
= 0 ;
2953 m_lastVerticalValue
= 0 ;
2955 Rect sb
= { 0 , 0 , 0 , 0 } ;
2956 if ( frameOptions
& kTXNWantVScrollBarMask
)
2958 CreateScrollBarControl( m_txnWindow
, &sb
, 0, 0, 100, 1, true, gTXNScrollActionProc
, &m_sbVertical
);
2959 SetControlReference( m_sbVertical
, (SInt32
)this );
2960 SetControlAction( m_sbVertical
, gTXNScrollActionProc
);
2961 ShowControl( m_sbVertical
);
2962 EmbedControl( m_sbVertical
, m_controlRef
);
2963 frameOptions
&= ~kTXNWantVScrollBarMask
;
2966 if ( frameOptions
& kTXNWantHScrollBarMask
)
2968 CreateScrollBarControl( m_txnWindow
, &sb
, 0, 0, 100, 1, true, gTXNScrollActionProc
, &m_sbHorizontal
);
2969 SetControlReference( m_sbHorizontal
, (SInt32
)this );
2970 SetControlAction( m_sbHorizontal
, gTXNScrollActionProc
);
2971 ShowControl( m_sbHorizontal
);
2972 EmbedControl( m_sbHorizontal
, m_controlRef
);
2973 frameOptions
&= ~(kTXNWantHScrollBarMask
| kTXNDrawGrowIconMask
);
2979 NULL
, m_txnWindow
, &bounds
, frameOptions
,
2980 kTXNTextEditStyleFrameType
, kTXNTextensionFile
, kTXNSystemDefaultEncoding
,
2981 &m_txn
, &m_txnFrameID
, NULL
);
2982 verify_noerr( err
);
2985 TXNControlTag iControlTags
[] = { kTXNUseCarbonEvents
};
2986 TXNControlData iControlData
[] = { { (UInt32
)&cInfo
} };
2987 int toptag
= WXSIZEOF( iControlTags
) ;
2988 TXNCarbonEventInfo cInfo
;
2989 cInfo
.useCarbonEvents
= false ;
2992 cInfo
.fDictionary
= NULL
;
2994 verify_noerr( TXNSetTXNObjectControls( m_txn
, false, toptag
, iControlTags
, iControlData
) );
2997 #ifdef __WXMAC_OSX__
2998 TXNRegisterScrollInfoProc( m_txn
, gTXNScrollInfoProc
, (SInt32
)this );
3001 SetGWorld( origPort
, origDev
) ;
3006 // ----------------------------------------------------------------------------
3007 // MLTE control implementation (OSX part)
3008 // ----------------------------------------------------------------------------
3010 #if TARGET_API_MAC_OSX
3012 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
3014 // tiger multi-line textcontrols with no CR in the entire content
3015 // don't scroll automatically, so we need a hack.
3016 // This attempt only works 'before' the key (ie before CallNextEventHandler)
3017 // is processed, thus the scrolling always occurs one character too late, but
3018 // better than nothing ...
3020 static const EventTypeSpec eventList
[] =
3022 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
3025 static pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
3027 OSStatus result
= eventNotHandledErr
;
3028 wxMacMLTEHIViewControl
* focus
= (wxMacMLTEHIViewControl
*) data
;
3030 switch ( GetEventKind( event
) )
3032 case kEventTextInputUnicodeForKeyEvent
:
3034 if ( UMAGetSystemVersion() >= 0x1040 )
3036 TXNOffset from
, to
;
3037 TXNGetSelection( focus
->GetTXNObject() , &from
, &to
) ;
3039 TXNShowSelection( focus
->GetTXNObject() , kTXNShowStart
);
3041 result
= CallNextEventHandler(handler
,event
);
3051 static pascal OSStatus
wxMacTextControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
3053 OSStatus result
= eventNotHandledErr
;
3055 switch ( GetEventClass( event
) )
3057 case kEventClassTextInput
:
3058 result
= wxMacUnicodeTextEventHandler( handler
, event
, data
) ;
3067 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTextControlEventHandler
)
3069 wxMacMLTEHIViewControl::wxMacMLTEHIViewControl( wxTextCtrl
*wxPeer
,
3070 const wxString
& str
,
3072 const wxSize
& size
, long style
) : wxMacMLTEControl( wxPeer
)
3074 m_font
= wxPeer
->GetFont() ;
3075 m_windowStyle
= style
;
3076 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
3078 wxMacConvertNewlines10To13( &st
) ;
3081 { bounds
.left
, bounds
.top
},
3082 { bounds
.right
- bounds
.left
, bounds
.bottom
- bounds
.top
} } ;
3084 m_scrollView
= NULL
;
3085 TXNFrameOptions frameOptions
= FrameOptionsFromWXStyle( style
) ;
3086 if ( frameOptions
& (kTXNWantVScrollBarMask
| kTXNWantHScrollBarMask
) )
3089 (frameOptions
& kTXNWantHScrollBarMask
? kHIScrollViewOptionsHorizScroll
: 0)
3090 | (frameOptions
& kTXNWantVScrollBarMask
? kHIScrollViewOptionsVertScroll
: 0) ,
3093 HIViewSetFrame( m_scrollView
, &hr
);
3094 HIViewSetVisible( m_scrollView
, true );
3098 HITextViewCreate( NULL
, 0, frameOptions
, &m_textView
) ;
3099 m_txn
= HITextViewGetTXNObject( m_textView
) ;
3100 HIViewSetVisible( m_textView
, true ) ;
3103 HIViewAddSubview( m_scrollView
, m_textView
) ;
3104 m_controlRef
= m_scrollView
;
3105 wxPeer
->MacInstallEventHandler( (WXWidget
) m_textView
) ;
3109 HIViewSetFrame( m_textView
, &hr
);
3110 m_controlRef
= m_textView
;
3113 AdjustCreationAttributes( *wxWHITE
, true ) ;
3115 wxMacWindowClipper
c( m_peer
) ;
3116 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
) ;
3118 TXNSetSelection( m_txn
, 0, 0 );
3119 TXNShowSelection( m_txn
, kTXNShowStart
);
3121 InstallControlEventHandler( m_textView
, GetwxMacTextControlEventHandlerUPP(),
3122 GetEventTypeCount(eventList
), eventList
, this,
3123 &m_textEventHandlerRef
);
3126 wxMacMLTEHIViewControl::~wxMacMLTEHIViewControl()
3128 ::RemoveEventHandler( m_textEventHandlerRef
) ;
3131 OSStatus
wxMacMLTEHIViewControl::SetFocus( ControlFocusPart focusPart
)
3133 return SetKeyboardFocus( GetControlOwner( m_textView
), m_textView
, focusPart
) ;
3136 bool wxMacMLTEHIViewControl::HasFocus() const
3138 ControlRef control
;
3139 GetKeyboardFocus( GetUserFocusWindow() , &control
) ;
3140 return control
== m_textView
;
3143 void wxMacMLTEHIViewControl::SetBackground( const wxBrush
&brush
)
3145 wxMacMLTEControl::SetBackground( brush
) ;
3148 CGColorSpaceRef rgbSpace
= CGColorSpaceCreateDeviceRGB();
3149 RGBColor col
= MAC_WXCOLORREF(brush
.GetColour().GetPixel()) ;
3151 float component
[4] ;
3152 component
[0] = col
.red
/ 65536.0 ;
3153 component
[1] = col
.green
/ 65536.0 ;
3154 component
[2] = col
.blue
/ 65536.0 ;
3155 component
[3] = 1.0 ; // alpha
3157 CGColorRef color
= CGColorCreate( rgbSpace
, component
);
3158 HITextViewSetBackgroundColor( m_textView
, color
);
3159 CGColorSpaceRelease( rgbSpace
);
3163 #endif // MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
3168 #endif // wxUSE_TEXTCTRL