1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/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"
27 #include "wx/toplevel.h"
31 #include <sys/types.h>
37 #if wxUSE_STD_IOSTREAM
45 #include "wx/filefn.h"
46 #include "wx/sysopt.h"
47 #include "wx/thread.h"
49 #include "wx/osx/private.h"
50 #include "wx/osx/carbon/private/mactext.h"
56 virtual ~wxMacFunctor() {}
58 virtual void* operator()() = 0 ;
60 static void* CallBackProc( void *param
)
62 wxMacFunctor
* f
= (wxMacFunctor
*) param
;
63 void *result
= (*f
)() ;
68 template<typename classtype
, typename param1type
>
70 class wxMacObjectFunctor1
: public wxMacFunctor
72 typedef void (classtype::*function
)( param1type p1
) ;
73 typedef void (classtype::*ref_function
)( const param1type
& p1
) ;
75 wxMacObjectFunctor1( classtype
*obj
, function f
, param1type p1
) :
83 wxMacObjectFunctor1( classtype
*obj
, ref_function f
, param1type p1
) :
91 virtual ~wxMacObjectFunctor1() {}
93 virtual void* operator()()
95 (m_object
->*m_function
)( m_param1
) ;
100 classtype
* m_object
;
101 param1type m_param1
;
104 function m_function
;
105 ref_function m_refFunction
;
109 template<typename classtype
, typename param1type
>
110 void* wxMacMPRemoteCall( classtype
*object
, void (classtype::*function
)( param1type p1
) , param1type p1
)
112 wxMacObjectFunctor1
<classtype
, param1type
> params(object
, function
, p1
) ;
114 MPRemoteCall( wxMacFunctor::CallBackProc
, ¶ms
, kMPOwningProcessRemoteContext
) ;
118 template<typename classtype
, typename param1type
>
119 void* wxMacMPRemoteCall( classtype
*object
, void (classtype::*function
)( const param1type
& p1
) , param1type p1
)
121 wxMacObjectFunctor1
<classtype
,param1type
> params(object
, function
, p1
) ;
123 MPRemoteCall( wxMacFunctor::CallBackProc
, ¶ms
, kMPOwningProcessRemoteContext
) ;
127 template<typename classtype
, typename param1type
>
128 void* wxMacMPRemoteGUICall( classtype
*object
, void (classtype::*function
)( param1type p1
) , param1type p1
)
131 void *result
= wxMacMPRemoteCall( object
, function
, p1
) ;
136 template<typename classtype
, typename param1type
>
137 void* wxMacMPRemoteGUICall( classtype
*object
, void (classtype::*function
)( const param1type
& p1
) , param1type p1
)
140 void *result
= wxMacMPRemoteCall( object
, function
, p1
) ;
145 class WXDLLEXPORT wxMacPortSaver
147 wxDECLARE_NO_COPY_CLASS(wxMacPortSaver
);
150 wxMacPortSaver( GrafPtr port
);
158 Clips to the visible region of a control within the current port
161 class WXDLLEXPORT wxMacWindowClipper
: public wxMacPortSaver
163 wxDECLARE_NO_COPY_CLASS(wxMacWindowClipper
);
166 wxMacWindowClipper( const wxWindow
* win
);
167 ~wxMacWindowClipper();
170 RgnHandle m_formerClip
;
174 wxMacPortSaver::wxMacPortSaver( GrafPtr port
)
176 ::GetPort( &m_port
);
180 wxMacPortSaver::~wxMacPortSaver()
185 wxMacWindowClipper::wxMacWindowClipper( const wxWindow
* win
) :
186 wxMacPortSaver( (GrafPtr
) GetWindowPort( (WindowRef
) win
->MacGetTopLevelWindowRef() ) )
188 m_newPort
= (GrafPtr
) GetWindowPort( (WindowRef
) win
->MacGetTopLevelWindowRef() ) ;
189 m_formerClip
= NewRgn() ;
190 m_newClip
= NewRgn() ;
191 GetClip( m_formerClip
) ;
195 // guard against half constructed objects, this just leads to a empty clip
196 if ( win
->GetPeer() )
199 win
->MacWindowToRootWindow( &x
, &y
) ;
201 // get area including focus rect
202 HIShapeGetAsQDRgn( ((wxWindow
*)win
)->MacGetVisibleRegion(true).GetWXHRGN() , m_newClip
);
203 if ( !EmptyRgn( m_newClip
) )
204 OffsetRgn( m_newClip
, x
, y
) ;
207 SetClip( m_newClip
) ;
211 wxMacWindowClipper::~wxMacWindowClipper()
213 SetPort( m_newPort
) ;
214 SetClip( m_formerClip
) ;
215 DisposeRgn( m_newClip
) ;
216 DisposeRgn( m_formerClip
) ;
219 // common parts for implementations based on MLTE
221 class wxMacMLTEControl
: public wxMacControl
, public wxTextWidgetImpl
224 wxMacMLTEControl( wxTextCtrl
*peer
) ;
225 ~wxMacMLTEControl() {}
227 virtual bool CanFocus() const
230 virtual wxString
GetStringValue() const ;
231 virtual void SetStringValue( const wxString
&str
) ;
233 static TXNFrameOptions
FrameOptionsFromWXStyle( long wxStyle
) ;
235 void AdjustCreationAttributes( const wxColour
& background
, bool visible
) ;
237 virtual void SetFont( const wxFont
& font
, const wxColour
& foreground
, long windowStyle
, bool ignoreBlack
) ;
238 virtual void SetBackgroundColour(const wxColour
& col
);
239 virtual void SetStyle( long start
, long end
, const wxTextAttr
& style
) ;
240 virtual void Copy() ;
242 virtual void Paste() ;
243 virtual bool CanPaste() const ;
244 virtual void SetEditable( bool editable
) ;
245 virtual long GetLastPosition() const ;
246 virtual void Replace( long from
, long to
, const wxString
&str
) ;
247 virtual void Remove( long from
, long to
) ;
248 virtual void GetSelection( long* from
, long* to
) const ;
249 virtual void SetSelection( long from
, long to
) ;
251 virtual void WriteText( const wxString
& str
) ;
253 virtual bool HasOwnContextMenu() const
255 TXNCommandEventSupportOptions options
;
256 TXNGetCommandEventSupport( m_txn
, & options
) ;
257 return options
& kTXNSupportEditCommandProcessing
;
260 virtual void CheckSpelling(bool check
)
262 TXNSetSpellCheckAsYouType( m_txn
, (Boolean
) check
);
264 virtual void Clear() ;
266 virtual bool CanUndo() const ;
267 virtual void Undo() ;
268 virtual bool CanRedo() const;
269 virtual void Redo() ;
270 virtual int GetNumberOfLines() const ;
271 virtual long XYToPosition(long x
, long y
) const ;
272 virtual bool PositionToXY(long pos
, long *x
, long *y
) const ;
273 virtual void ShowPosition( long pos
) ;
274 virtual int GetLineLength(long lineNo
) const ;
275 virtual wxString
GetLineText(long lineNo
) const ;
277 void SetTXNData( const wxString
& st
, TXNOffset start
, TXNOffset end
) ;
278 TXNObject
GetTXNObject() { return m_txn
; }
281 void TXNSetAttribute( const wxTextAttr
& style
, long from
, long to
) ;
286 // implementation available under OSX
288 class wxMacMLTEHIViewControl
: public wxMacMLTEControl
291 wxMacMLTEHIViewControl( wxTextCtrl
*wxPeer
,
294 const wxSize
& size
, long style
) ;
295 virtual ~wxMacMLTEHIViewControl() ;
297 virtual bool SetFocus() ;
298 virtual bool HasFocus() const ;
299 virtual void SetBackgroundColour(const wxColour
& col
) ;
302 HIViewRef m_scrollView
;
303 HIViewRef m_textView
;
306 // 'classic' MLTE implementation
308 class wxMacMLTEClassicControl
: public wxMacMLTEControl
311 wxMacMLTEClassicControl( wxTextCtrl
*wxPeer
,
314 const wxSize
& size
, long style
) ;
315 virtual ~wxMacMLTEClassicControl() ;
317 virtual void VisibilityChanged(bool shown
) ;
318 virtual void SuperChangedPosition() ;
320 virtual void MacControlUserPaneDrawProc(wxInt16 part
) ;
321 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
) ;
322 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
) ;
323 virtual void MacControlUserPaneIdleProc() ;
324 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
) ;
325 virtual void MacControlUserPaneActivateProc(bool activating
) ;
326 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
) ;
327 virtual void MacControlUserPaneBackgroundProc(void* info
) ;
329 virtual bool SetupCursor( const wxPoint
& WXUNUSED(pt
) )
331 MacControlUserPaneIdleProc();
335 virtual void Move(int x
, int y
, int width
, int height
);
340 void MacUpdatePosition() ;
341 void MacActivatePaneText(bool setActive
) ;
342 void MacFocusPaneText(bool setFocus
) ;
343 void MacSetObjectVisibility(bool vis
) ;
346 TXNFrameID m_txnFrameID
;
348 WindowRef m_txnWindow
;
349 // bounds of the control as we last did set the txn frames
350 Rect m_txnControlBounds
;
351 Rect m_txnVisBounds
;
353 static pascal void TXNScrollActionProc( ControlRef controlRef
, ControlPartCode partCode
) ;
354 static pascal void TXNScrollInfoProc(
355 SInt32 iValue
, SInt32 iMaximumValue
,
356 TXNScrollBarOrientation iScrollBarOrientation
, SInt32 iRefCon
) ;
358 ControlRef m_sbHorizontal
;
359 SInt32 m_lastHorizontalValue
;
360 ControlRef m_sbVertical
;
361 SInt32 m_lastVerticalValue
;
364 wxWidgetImplType
* wxWidgetImpl::CreateTextControl( wxTextCtrl
* wxpeer
,
365 wxWindowMac
* WXUNUSED(parent
),
366 wxWindowID
WXUNUSED(id
),
371 long WXUNUSED(extraStyle
))
373 bool forceMLTE
= false ;
375 #if wxUSE_SYSTEM_OPTIONS
376 if (wxSystemOptions::HasOption( wxMAC_TEXTCONTROL_USE_MLTE
) && (wxSystemOptions::GetOptionInt( wxMAC_TEXTCONTROL_USE_MLTE
) == 1))
382 if ( UMAGetSystemVersion() >= 0x1050 )
385 wxMacControl
* peer
= NULL
;
389 if ( style
& wxTE_MULTILINE
|| ( UMAGetSystemVersion() >= 0x1050 ) )
390 peer
= new wxMacMLTEHIViewControl( wxpeer
, str
, pos
, size
, style
) ;
395 if ( !(style
& wxTE_MULTILINE
) && !forceMLTE
)
397 peer
= new wxMacUnicodeTextControl( wxpeer
, str
, pos
, size
, style
) ;
401 // the horizontal single line scrolling bug that made us keep the classic implementation
403 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
405 peer
= new wxMacMLTEClassicControl( wxpeer
, str
, pos
, size
, style
) ;
410 // ----------------------------------------------------------------------------
411 // standard unicode control implementation
412 // ----------------------------------------------------------------------------
414 // the current unicode textcontrol implementation has a bug : only if the control
415 // is currently having the focus, the selection can be retrieved by the corresponding
416 // data tag. So we have a mirroring using a member variable
417 // TODO : build event table using virtual member functions for wxMacControl
419 static const EventTypeSpec unicodeTextControlEventList
[] =
421 { kEventClassControl
, kEventControlSetFocusPart
} ,
424 static pascal OSStatus
wxMacUnicodeTextControlControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
426 OSStatus result
= eventNotHandledErr
;
427 wxMacUnicodeTextControl
* focus
= (wxMacUnicodeTextControl
*) data
;
428 wxMacCarbonEvent
cEvent( event
) ;
430 switch ( GetEventKind( event
) )
432 case kEventControlSetFocusPart
:
434 ControlPartCode controlPart
= cEvent
.GetParameter
<ControlPartCode
>(kEventParamControlPart
, typeControlPartCode
);
435 if ( controlPart
== kControlFocusNoPart
)
437 // about to loose focus -> store selection to field
438 focus
->GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &focus
->m_selection
);
440 result
= CallNextEventHandler(handler
,event
) ;
441 if ( controlPart
!= kControlFocusNoPart
)
443 // about to gain focus -> set selection from field
444 focus
->SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &focus
->m_selection
);
455 static pascal OSStatus
wxMacUnicodeTextControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
457 OSStatus result
= eventNotHandledErr
;
459 switch ( GetEventClass( event
) )
461 case kEventClassControl
:
462 result
= wxMacUnicodeTextControlControlEventHandler( handler
, event
, data
) ;
471 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacUnicodeTextControlEventHandler
)
473 wxMacUnicodeTextControl::wxMacUnicodeTextControl( wxTextCtrl
*wxPeer
)
474 : wxMacControl( wxPeer
),
475 wxTextWidgetImpl( wxPeer
)
479 wxMacUnicodeTextControl::wxMacUnicodeTextControl( wxTextCtrl
*wxPeer
,
482 const wxSize
& size
, long style
)
483 : wxMacControl( wxPeer
),
484 wxTextWidgetImpl( wxPeer
)
486 m_font
= wxPeer
->GetFont() ;
487 m_windowStyle
= style
;
488 m_selection
.selStart
= m_selection
.selEnd
= 0;
489 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
491 wxMacConvertNewlines10To13( &st
) ;
492 wxCFStringRef
cf(st
, m_font
.GetEncoding()) ;
494 m_valueTag
= kControlEditTextCFStringTag
;
495 Boolean isPassword
= ( m_windowStyle
& wxTE_PASSWORD
) != 0 ;
498 m_valueTag
= kControlEditTextPasswordCFStringTag
;
500 OSStatus err
= CreateEditUnicodeTextControl(
501 MAC_WXHWND(wxPeer
->MacGetTopLevelWindowRef()), &bounds
, cf
,
502 isPassword
, NULL
, &m_controlRef
) ;
505 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
506 SetData
<Boolean
>( kControlEditTextPart
, kControlEditTextSingleLineTag
, true ) ;
508 InstallEventHandlers();
511 void wxMacUnicodeTextControl::InstallEventHandlers()
513 ::InstallControlEventHandler( m_controlRef
, GetwxMacUnicodeTextControlEventHandlerUPP(),
514 GetEventTypeCount(unicodeTextControlEventList
), unicodeTextControlEventList
, this,
515 (EventHandlerRef
*) &m_macTextCtrlEventHandler
);
518 wxMacUnicodeTextControl::~wxMacUnicodeTextControl()
520 ::RemoveEventHandler((EventHandlerRef
) m_macTextCtrlEventHandler
);
523 void wxMacUnicodeTextControl::VisibilityChanged(bool shown
)
525 if ( !(m_windowStyle
& wxTE_MULTILINE
) && shown
)
527 // work around a refresh issue insofar as not always the entire content is shown,
528 // even if this would be possible
529 ControlEditTextSelectionRec sel
;
530 CFStringRef value
= NULL
;
532 verify_noerr( GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) );
533 verify_noerr( GetData
<CFStringRef
>( 0, m_valueTag
, &value
) );
534 verify_noerr( SetData
<CFStringRef
>( 0, m_valueTag
, &value
) );
535 verify_noerr( SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) );
541 wxString
wxMacUnicodeTextControl::GetStringValue() const
544 CFStringRef value
= GetData
<CFStringRef
>(0, m_valueTag
) ;
547 wxCFStringRef
cf(value
) ;
548 result
= cf
.AsString() ;
552 wxMacConvertNewlines13To10( &result
) ;
554 wxMacConvertNewlines10To13( &result
) ;
560 void wxMacUnicodeTextControl::SetStringValue( const wxString
&str
)
563 wxMacConvertNewlines10To13( &st
) ;
564 wxCFStringRef
cf( st
, m_font
.GetEncoding() ) ;
565 verify_noerr( SetData
<CFStringRef
>( 0, m_valueTag
, cf
) ) ;
568 void wxMacUnicodeTextControl::Copy()
570 SendHICommand( kHICommandCopy
) ;
573 void wxMacUnicodeTextControl::Cut()
575 SendHICommand( kHICommandCut
) ;
578 void wxMacUnicodeTextControl::Paste()
580 SendHICommand( kHICommandPaste
) ;
583 bool wxMacUnicodeTextControl::CanPaste() const
588 void wxMacUnicodeTextControl::SetEditable(bool WXUNUSED(editable
))
590 #if 0 // leads to problem because text cannot be selected anymore
591 SetData
<Boolean
>( kControlEditTextPart
, kControlEditTextLockedTag
, (Boolean
) !editable
) ;
595 void wxMacUnicodeTextControl::GetSelection( long* from
, long* to
) const
597 ControlEditTextSelectionRec sel
;
599 verify_noerr( GetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) ) ;
604 *from
= sel
.selStart
;
609 void wxMacUnicodeTextControl::SetSelection( long from
, long to
)
611 ControlEditTextSelectionRec sel
;
614 CFStringRef value
= GetData
<CFStringRef
>(0, m_valueTag
) ;
617 wxCFStringRef
cf(value
) ;
618 textLength
= cf
.AsString().length() ;
621 if ((from
== -1) && (to
== -1))
628 from
= wxMin(textLength
,wxMax(from
,0)) ;
632 to
= wxMax(0,wxMin(textLength
,to
)) ;
635 sel
.selStart
= from
;
638 SetData
<ControlEditTextSelectionRec
>( 0, kControlEditTextSelectionTag
, &sel
) ;
643 void wxMacUnicodeTextControl::WriteText( const wxString
& str
)
645 // TODO: this MPRemoting will be moved into a remoting peer proxy for any command
646 if ( !wxIsMainThread() )
649 // unfortunately CW 8 is not able to correctly deduce the template types,
650 // so we have to instantiate explicitly
651 wxMacMPRemoteGUICall
<wxTextCtrl
,wxString
>( (wxTextCtrl
*) GetWXPeer() , &wxTextCtrl::WriteText
, str
) ;
657 wxMacConvertNewlines10To13( &st
) ;
661 wxCFStringRef
cf(st
, m_font
.GetEncoding() ) ;
662 CFStringRef value
= cf
;
663 SetData
<CFStringRef
>( 0, kControlEditTextInsertCFStringRefTag
, &value
);
667 wxString val
= GetStringValue() ;
669 GetSelection( &start
, &end
) ;
670 val
.Remove( start
, end
- start
) ;
671 val
.insert( start
, str
) ;
672 SetStringValue( val
) ;
673 SetSelection( start
+ str
.length() , start
+ str
.length() ) ;
677 // ----------------------------------------------------------------------------
678 // MLTE control implementation (common part)
679 // ----------------------------------------------------------------------------
681 // if MTLE is read only, no changes at all are allowed, not even from
682 // procedural API, in order to allow changes via API all the same we must undo
683 // the readonly status while we are executing, this class helps to do so
685 class wxMacEditHelper
688 wxMacEditHelper( TXNObject txn
)
690 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
692 TXNGetTXNObjectControls( m_txn
, 1 , tag
, m_data
) ;
693 if ( m_data
[0].uValue
== kTXNReadOnly
)
695 TXNControlData data
[] = { { kTXNReadWrite
} } ;
696 TXNSetTXNObjectControls( m_txn
, false , 1 , tag
, data
) ;
702 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
703 if ( m_data
[0].uValue
== kTXNReadOnly
)
704 TXNSetTXNObjectControls( m_txn
, false , 1 , tag
, m_data
) ;
709 TXNControlData m_data
[1] ;
712 wxMacMLTEControl::wxMacMLTEControl( wxTextCtrl
*peer
)
713 : wxMacControl( peer
),
714 wxTextWidgetImpl( peer
)
716 SetNeedsFocusRect( true ) ;
719 wxString
wxMacMLTEControl::GetStringValue() const
728 err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNUnicodeTextData
);
737 actualSize
= GetHandleSize( theText
) / sizeof(UniChar
) ;
738 if ( actualSize
> 0 )
742 SetHandleSize( theText
, (actualSize
+ 1) * sizeof(UniChar
) ) ;
744 (((UniChar
*)*theText
)[actualSize
]) = 0 ;
745 wxMBConvUTF16 converter
;
746 size_t noChars
= converter
.MB2WC( NULL
, (const char*)*theText
, 0 ) ;
747 wxASSERT_MSG( noChars
!= wxCONV_FAILED
, wxT("Unable to count the number of characters in this string!") );
748 ptr
= new wxChar
[noChars
+ 1] ;
750 noChars
= converter
.MB2WC( ptr
, (const char*)*theText
, noChars
+ 1 ) ;
751 wxASSERT_MSG( noChars
!= wxCONV_FAILED
, wxT("Conversion of string failed!") );
755 ptr
[actualSize
] = 0 ;
756 result
= wxString( ptr
) ;
760 DisposeHandle( theText
) ;
762 #else // !wxUSE_UNICODE
764 err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNTextData
);
773 actualSize
= GetHandleSize( theText
) ;
774 if ( actualSize
> 0 )
777 result
= wxString( *theText
, wxConvLocal
, actualSize
) ;
781 DisposeHandle( theText
) ;
783 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
787 wxMacConvertNewlines13To10( &result
) ;
789 wxMacConvertNewlines10To13( &result
) ;
795 void wxMacMLTEControl::SetStringValue( const wxString
&str
)
798 wxMacConvertNewlines10To13( &st
);
802 wxMacWindowClipper
c( GetWXPeer() ) ;
806 wxMacEditHelper
help( m_txn
);
807 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
);
810 TXNSetSelection( m_txn
, 0, 0 );
811 TXNShowSelection( m_txn
, kTXNShowStart
);
815 TXNFrameOptions
wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle
)
817 TXNFrameOptions frameOptions
= kTXNDontDrawCaretWhenInactiveMask
;
819 frameOptions
|= kTXNDoFontSubstitutionMask
;
821 if ( ! (wxStyle
& wxTE_NOHIDESEL
) )
822 frameOptions
|= kTXNDontDrawSelectionWhenInactiveMask
;
824 if ( wxStyle
& (wxHSCROLL
| wxTE_DONTWRAP
) )
825 frameOptions
|= kTXNWantHScrollBarMask
;
827 if ( wxStyle
& wxTE_MULTILINE
)
829 if ( ! (wxStyle
& wxTE_DONTWRAP
) )
830 frameOptions
|= kTXNAlwaysWrapAtViewEdgeMask
;
832 if ( !(wxStyle
& wxTE_NO_VSCROLL
) )
834 frameOptions
|= kTXNWantVScrollBarMask
;
836 // The following code causes drawing problems on 10.4. Perhaps it can be restored for
837 // older versions of the OS, but I'm not sure it's appropriate to put a grow icon here
838 // anyways, as AFAIK users can't actually use it to resize the text ctrl.
839 // if ( frameOptions & kTXNWantHScrollBarMask )
840 // frameOptions |= kTXNDrawGrowIconMask ;
845 frameOptions
|= kTXNSingleLineOnlyMask
;
848 return frameOptions
;
851 void wxMacMLTEControl::AdjustCreationAttributes(const wxColour
&background
,
852 bool WXUNUSED(visible
))
854 TXNControlTag iControlTags
[] =
856 kTXNDoFontSubstitution
,
857 kTXNWordWrapStateTag
,
859 TXNControlData iControlData
[] =
865 int toptag
= WXSIZEOF( iControlTags
) ;
867 if ( m_windowStyle
& wxTE_MULTILINE
)
869 iControlData
[1].uValue
=
870 (m_windowStyle
& wxTE_DONTWRAP
)
875 OSStatus err
= TXNSetTXNObjectControls( m_txn
, false, toptag
, iControlTags
, iControlData
) ;
878 // setting the default font:
879 // under 10.2 this causes a visible caret, therefore we avoid it
885 GetThemeFont( kThemeSystemFont
, GetApplicationScript() , fontName
, &fontSize
, &fontStyle
) ;
887 TXNTypeAttributes typeAttr
[] =
889 { kTXNQDFontNameAttribute
, kTXNQDFontNameAttributeSize
, { (void*) fontName
} } ,
890 { kTXNQDFontSizeAttribute
, kTXNFontSizeAttributeSize
, { (void*) (fontSize
<< 16) } } ,
891 { kTXNQDFontStyleAttribute
, kTXNQDFontStyleAttributeSize
, { (void*) normal
} } ,
894 err
= TXNSetTypeAttributes(
895 m_txn
, WXSIZEOF(typeAttr
),
896 typeAttr
, kTXNStartOffset
, kTXNEndOffset
);
899 if ( m_windowStyle
& wxTE_PASSWORD
)
902 err
= TXNEchoMode( m_txn
, c
, 0 , true );
907 tback
.bgType
= kTXNBackgroundTypeRGB
;
908 background
.GetRGBColor( &tback
.bg
.color
);
909 TXNSetBackground( m_txn
, &tback
);
912 TXNCommandEventSupportOptions options
;
913 if ( TXNGetCommandEventSupport( m_txn
, &options
) == noErr
)
916 kTXNSupportEditCommandProcessing
917 | kTXNSupportEditCommandUpdating
918 | kTXNSupportFontCommandProcessing
919 | kTXNSupportFontCommandUpdating
;
921 // only spell check when not read-only
922 // use system options for the default
923 bool checkSpelling
= false ;
924 if ( !(m_windowStyle
& wxTE_READONLY
) )
926 #if wxUSE_SYSTEM_OPTIONS
927 if ( wxSystemOptions::HasOption( wxMAC_TEXTCONTROL_USE_SPELL_CHECKER
) && (wxSystemOptions::GetOptionInt( wxMAC_TEXTCONTROL_USE_SPELL_CHECKER
) == 1) )
929 checkSpelling
= true ;
936 kTXNSupportSpellCheckCommandProcessing
937 | kTXNSupportSpellCheckCommandUpdating
;
939 TXNSetCommandEventSupport( m_txn
, options
) ;
943 void wxMacMLTEControl::SetBackgroundColour(const wxColour
& col
)
946 tback
.bgType
= kTXNBackgroundTypeRGB
;
947 col
.GetRGBColor(&tback
.bg
.color
);
948 TXNSetBackground( m_txn
, &tback
);
951 static inline int wxConvertToTXN(int x
)
953 return static_cast<int>(x
/ 254.0 * 72 + 0.5);
956 void wxMacMLTEControl::TXNSetAttribute( const wxTextAttr
& style
, long from
, long to
)
958 TXNTypeAttributes typeAttr
[4] ;
960 size_t typeAttrCount
= 0 ;
963 TXNControlTag controlTags
[4];
964 TXNControlData controlData
[4];
965 size_t controlAttrCount
= 0;
969 bool relayout
= false;
972 if ( style
.HasFont() )
974 wxASSERT( typeAttrCount
< WXSIZEOF(typeAttr
) );
975 font
= style
.GetFont() ;
976 typeAttr
[typeAttrCount
].tag
= kTXNATSUIStyle
;
977 typeAttr
[typeAttrCount
].size
= kTXNATSUIStyleSize
;
978 typeAttr
[typeAttrCount
].data
.dataPtr
= font
.MacGetATSUStyle() ;
982 if ( style
.HasTextColour() )
984 wxASSERT( typeAttrCount
< WXSIZEOF(typeAttr
) );
985 style
.GetTextColour().GetRGBColor( &color
);
986 typeAttr
[typeAttrCount
].tag
= kTXNQDFontColorAttribute
;
987 typeAttr
[typeAttrCount
].size
= kTXNQDFontColorAttributeSize
;
988 typeAttr
[typeAttrCount
].data
.dataPtr
= (void*) &color
;
992 if ( style
.HasAlignment() )
994 wxASSERT( controlAttrCount
< WXSIZEOF(controlTags
) );
997 switch ( style
.GetAlignment() )
999 case wxTEXT_ALIGNMENT_LEFT
:
1000 align
= kTXNFlushLeft
;
1002 case wxTEXT_ALIGNMENT_CENTRE
:
1005 case wxTEXT_ALIGNMENT_RIGHT
:
1006 align
= kTXNFlushRight
;
1008 case wxTEXT_ALIGNMENT_JUSTIFIED
:
1009 align
= kTXNFullJust
;
1012 case wxTEXT_ALIGNMENT_DEFAULT
:
1013 align
= kTXNFlushDefault
;
1017 controlTags
[controlAttrCount
] = kTXNJustificationTag
;
1018 controlData
[controlAttrCount
].sValue
= align
;
1019 controlAttrCount
++ ;
1022 if ( style
.HasLeftIndent() || style
.HasRightIndent() )
1024 wxASSERT( controlAttrCount
< WXSIZEOF(controlTags
) );
1025 controlTags
[controlAttrCount
] = kTXNMarginsTag
;
1026 controlData
[controlAttrCount
].marginsPtr
= &margins
;
1027 verify_noerr( TXNGetTXNObjectControls (m_txn
, 1 ,
1028 &controlTags
[controlAttrCount
], &controlData
[controlAttrCount
]) );
1029 if ( style
.HasLeftIndent() )
1031 margins
.leftMargin
= wxConvertToTXN(style
.GetLeftIndent());
1033 if ( style
.HasRightIndent() )
1035 margins
.rightMargin
= wxConvertToTXN(style
.GetRightIndent());
1037 controlAttrCount
++ ;
1040 if ( style
.HasTabs() )
1042 const wxArrayInt
& tabarray
= style
.GetTabs();
1043 // unfortunately Mac only applies a tab distance, not individually different tabs
1044 controlTags
[controlAttrCount
] = kTXNTabSettingsTag
;
1045 if ( tabarray
.size() > 0 )
1046 controlData
[controlAttrCount
].tabValue
.value
= wxConvertToTXN(tabarray
[0]);
1048 controlData
[controlAttrCount
].tabValue
.value
= 72 ;
1050 controlData
[controlAttrCount
].tabValue
.tabType
= kTXNLeftTab
;
1051 controlAttrCount
++ ;
1054 // unfortunately the relayout is not automatic
1055 if ( controlAttrCount
> 0 )
1057 verify_noerr( TXNSetTXNObjectControls (m_txn
, false /* don't clear all */, controlAttrCount
,
1058 controlTags
, controlData
) );
1062 if ( typeAttrCount
> 0 )
1064 verify_noerr( TXNSetTypeAttributes( m_txn
, typeAttrCount
, typeAttr
, from
, to
) );
1076 TXNRecalcTextLayout( m_txn
);
1080 void wxMacMLTEControl::SetFont(const wxFont
& font
,
1081 const wxColour
& foreground
,
1082 long WXUNUSED(windowStyle
),
1083 bool WXUNUSED(ignoreBlack
))
1085 wxMacEditHelper
help( m_txn
) ;
1086 TXNSetAttribute( wxTextAttr( foreground
, wxNullColour
, font
), kTXNStartOffset
, kTXNEndOffset
) ;
1089 void wxMacMLTEControl::SetStyle( long start
, long end
, const wxTextAttr
& style
)
1091 wxMacEditHelper
help( m_txn
) ;
1092 TXNSetAttribute( style
, start
, end
) ;
1095 void wxMacMLTEControl::Copy()
1100 void wxMacMLTEControl::Cut()
1105 void wxMacMLTEControl::Paste()
1110 bool wxMacMLTEControl::CanPaste() const
1112 return TXNIsScrapPastable() ;
1115 void wxMacMLTEControl::SetEditable(bool editable
)
1117 TXNControlTag tag
[] = { kTXNIOPrivilegesTag
} ;
1118 TXNControlData data
[] = { { editable
? kTXNReadWrite
: kTXNReadOnly
} } ;
1119 TXNSetTXNObjectControls( m_txn
, false, WXSIZEOF(tag
), tag
, data
) ;
1122 long wxMacMLTEControl::GetLastPosition() const
1124 wxTextPos actualsize
= 0 ;
1128 OSErr err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNUnicodeTextData
);
1132 actualsize
= GetHandleSize( theText
)/sizeof(UniChar
);
1133 DisposeHandle( theText
) ;
1136 OSErr err
= TXNGetDataEncoded( m_txn
, kTXNStartOffset
, kTXNEndOffset
, &theText
, kTXNTextData
);
1141 actualsize
= GetHandleSize( theText
) ;
1142 DisposeHandle( theText
) ;
1153 void wxMacMLTEControl::Replace( long from
, long to
, const wxString
&str
)
1155 wxString value
= str
;
1156 wxMacConvertNewlines10To13( &value
) ;
1158 wxMacEditHelper
help( m_txn
) ;
1160 wxMacWindowClipper
c( GetWXPeer() ) ;
1163 TXNSetSelection( m_txn
, from
, to
== -1 ? kTXNEndOffset
: to
) ;
1165 SetTXNData( value
, kTXNUseCurrentSelection
, kTXNUseCurrentSelection
) ;
1168 void wxMacMLTEControl::Remove( long from
, long to
)
1171 wxMacWindowClipper
c( GetWXPeer() ) ;
1173 wxMacEditHelper
help( m_txn
) ;
1174 TXNSetSelection( m_txn
, from
, to
) ;
1178 void wxMacMLTEControl::GetSelection( long* from
, long* to
) const
1181 TXNGetSelection( m_txn
, &f
, &t
) ;
1186 void wxMacMLTEControl::SetSelection( long from
, long to
)
1189 wxMacWindowClipper
c( GetWXPeer() ) ;
1192 // change the selection
1193 if ((from
== -1) && (to
== -1))
1194 TXNSelectAll( m_txn
);
1196 TXNSetSelection( m_txn
, from
, to
== -1 ? kTXNEndOffset
: to
);
1198 TXNShowSelection( m_txn
, kTXNShowStart
);
1201 void wxMacMLTEControl::WriteText( const wxString
& str
)
1203 // TODO: this MPRemoting will be moved into a remoting peer proxy for any command
1204 if ( !wxIsMainThread() )
1206 #if wxOSX_USE_CARBON
1207 // unfortunately CW 8 is not able to correctly deduce the template types,
1208 // so we have to instantiate explicitly
1209 wxMacMPRemoteGUICall
<wxTextCtrl
,wxString
>( (wxTextCtrl
*) GetWXPeer() , &wxTextCtrl::WriteText
, str
) ;
1215 wxMacConvertNewlines10To13( &st
) ;
1217 long start
, end
, dummy
;
1219 GetSelection( &start
, &dummy
) ;
1221 wxMacWindowClipper
c( GetWXPeer() ) ;
1225 wxMacEditHelper
helper( m_txn
) ;
1226 SetTXNData( st
, kTXNUseCurrentSelection
, kTXNUseCurrentSelection
) ;
1229 GetSelection( &dummy
, &end
) ;
1231 // TODO: SetStyle( start , end , GetDefaultStyle() ) ;
1234 void wxMacMLTEControl::Clear()
1237 wxMacWindowClipper
c( GetWXPeer() ) ;
1239 wxMacEditHelper
st( m_txn
) ;
1240 TXNSetSelection( m_txn
, kTXNStartOffset
, kTXNEndOffset
) ;
1244 bool wxMacMLTEControl::CanUndo() const
1246 return TXNCanUndo( m_txn
, NULL
) ;
1249 void wxMacMLTEControl::Undo()
1254 bool wxMacMLTEControl::CanRedo() const
1256 return TXNCanRedo( m_txn
, NULL
) ;
1259 void wxMacMLTEControl::Redo()
1264 int wxMacMLTEControl::GetNumberOfLines() const
1266 ItemCount lines
= 0 ;
1267 TXNGetLineCount( m_txn
, &lines
) ;
1272 long wxMacMLTEControl::XYToPosition(long x
, long y
) const
1277 // TODO: find a better implementation : while we can get the
1278 // line metrics of a certain line, we don't get its starting
1279 // position, so it would probably be rather a binary search
1280 // for the start position
1281 long xpos
= 0, ypos
= 0 ;
1282 int lastHeight
= 0 ;
1285 lastpos
= GetLastPosition() ;
1286 for ( n
= 0 ; n
<= (ItemCount
) lastpos
; ++n
)
1288 if ( y
== ypos
&& x
== xpos
)
1291 TXNOffsetToPoint( m_txn
, n
, &curpt
) ;
1293 if ( curpt
.v
> lastHeight
)
1299 lastHeight
= curpt
.v
;
1308 bool wxMacMLTEControl::PositionToXY( long pos
, long *x
, long *y
) const
1318 lastpos
= GetLastPosition() ;
1319 if ( pos
<= lastpos
)
1321 // TODO: find a better implementation - while we can get the
1322 // line metrics of a certain line, we don't get its starting
1323 // position, so it would probably be rather a binary search
1324 // for the start position
1325 long xpos
= 0, ypos
= 0 ;
1326 int lastHeight
= 0 ;
1329 for ( n
= 0 ; n
<= (ItemCount
) pos
; ++n
)
1331 TXNOffsetToPoint( m_txn
, n
, &curpt
) ;
1333 if ( curpt
.v
> lastHeight
)
1339 lastHeight
= curpt
.v
;
1354 void wxMacMLTEControl::ShowPosition( long pos
)
1356 Point current
, desired
;
1357 TXNOffset selstart
, selend
;
1359 TXNGetSelection( m_txn
, &selstart
, &selend
);
1360 TXNOffsetToPoint( m_txn
, selstart
, ¤t
);
1361 TXNOffsetToPoint( m_txn
, pos
, &desired
);
1363 // TODO: use HIPoints for 10.3 and above
1365 OSErr theErr
= noErr
;
1366 long dv
= desired
.v
- current
.v
;
1367 long dh
= desired
.h
- current
.h
;
1368 TXNShowSelection( m_txn
, kTXNShowStart
) ; // NB: should this be kTXNShowStart or kTXNShowEnd ??
1369 theErr
= TXNScroll( m_txn
, kTXNScrollUnitsInPixels
, kTXNScrollUnitsInPixels
, &dv
, &dh
);
1371 // there will be an error returned for classic MLTE implementation when the control is
1372 // invisible, but HITextView works correctly, so we don't assert that one
1373 // wxASSERT_MSG( theErr == noErr, wxT("TXNScroll returned an error!") );
1376 void wxMacMLTEControl::SetTXNData( const wxString
& st
, TXNOffset start
, TXNOffset end
)
1379 wxMBConvUTF16 converter
;
1380 ByteCount byteBufferLen
= converter
.WC2MB( NULL
, st
.wc_str(), 0 ) ;
1381 wxASSERT_MSG( byteBufferLen
!= wxCONV_FAILED
,
1382 wxT("Conversion to UTF-16 unexpectedly failed") );
1383 UniChar
*unibuf
= (UniChar
*)malloc( byteBufferLen
+ 2 ) ; // 2 for NUL in UTF-16
1384 converter
.WC2MB( (char*)unibuf
, st
.wc_str(), byteBufferLen
+ 2 ) ;
1385 TXNSetData( m_txn
, kTXNUnicodeTextData
, (void*)unibuf
, byteBufferLen
, start
, end
) ;
1387 #else // !wxUSE_UNICODE
1388 wxCharBuffer text
= st
.mb_str( wxConvLocal
) ;
1389 TXNSetData( m_txn
, kTXNTextData
, (void*)text
.data(), strlen( text
), start
, end
) ;
1390 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1393 wxString
wxMacMLTEControl::GetLineText(long lineNo
) const
1397 if ( lineNo
< GetNumberOfLines() )
1400 Fixed lineWidth
, lineHeight
, currentHeight
;
1403 // get the first possible position in the control
1404 TXNOffsetToPoint(m_txn
, 0, &firstPoint
);
1406 // Iterate through the lines until we reach the one we want,
1407 // adding to our current y pixel point position
1410 while (ypos
< lineNo
)
1412 TXNGetLineMetrics(m_txn
, ypos
++, &lineWidth
, &lineHeight
);
1413 currentHeight
+= lineHeight
;
1416 Point thePoint
= { firstPoint
.v
+ (currentHeight
>> 16), firstPoint
.h
+ (0) };
1417 TXNOffset theOffset
;
1418 TXNPointToOffset(m_txn
, thePoint
, &theOffset
);
1420 wxString content
= GetStringValue() ;
1421 Point currentPoint
= thePoint
;
1422 while (thePoint
.v
== currentPoint
.v
&& theOffset
< content
.length())
1424 line
+= content
[theOffset
];
1425 TXNOffsetToPoint(m_txn
, ++theOffset
, ¤tPoint
);
1432 int wxMacMLTEControl::GetLineLength(long lineNo
) const
1436 if ( lineNo
< GetNumberOfLines() )
1439 Fixed lineWidth
, lineHeight
, currentHeight
;
1442 // get the first possible position in the control
1443 TXNOffsetToPoint(m_txn
, 0, &firstPoint
);
1445 // Iterate through the lines until we reach the one we want,
1446 // adding to our current y pixel point position
1449 while (ypos
< lineNo
)
1451 TXNGetLineMetrics(m_txn
, ypos
++, &lineWidth
, &lineHeight
);
1452 currentHeight
+= lineHeight
;
1455 Point thePoint
= { firstPoint
.v
+ (currentHeight
>> 16), firstPoint
.h
+ (0) };
1456 TXNOffset theOffset
;
1457 TXNPointToOffset(m_txn
, thePoint
, &theOffset
);
1459 wxString content
= GetStringValue() ;
1460 Point currentPoint
= thePoint
;
1461 while (thePoint
.v
== currentPoint
.v
&& theOffset
< content
.length())
1464 TXNOffsetToPoint(m_txn
, ++theOffset
, ¤tPoint
);
1471 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
1473 // ----------------------------------------------------------------------------
1474 // MLTE control implementation (classic part)
1475 // ----------------------------------------------------------------------------
1477 // OS X Notes : We still don't have a full replacement for MLTE, so this implementation
1478 // has to live on. We have different problems coming from outdated implementations on the
1479 // various OS X versions. Most deal with the scrollbars: they are not correctly embedded
1480 // while this can be solved on 10.3 by reassigning them the correct place, on 10.2 there is
1481 // no way out, therefore we are using our own implementation and our own scrollbars ....
1483 TXNScrollInfoUPP gTXNScrollInfoProc
= NULL
;
1484 ControlActionUPP gTXNScrollActionProc
= NULL
;
1486 pascal void wxMacMLTEClassicControl::TXNScrollInfoProc(
1487 SInt32 iValue
, SInt32 iMaximumValue
,
1488 TXNScrollBarOrientation iScrollBarOrientation
, SInt32 iRefCon
)
1490 wxMacMLTEClassicControl
* mlte
= (wxMacMLTEClassicControl
*) iRefCon
;
1491 SInt32 value
= wxMax( iValue
, 0 ) ;
1492 SInt32 maximum
= wxMax( iMaximumValue
, 0 ) ;
1494 if ( iScrollBarOrientation
== kTXNHorizontal
)
1496 if ( mlte
->m_sbHorizontal
)
1498 SetControl32BitValue( mlte
->m_sbHorizontal
, value
) ;
1499 SetControl32BitMaximum( mlte
->m_sbHorizontal
, maximum
) ;
1500 mlte
->m_lastHorizontalValue
= value
;
1503 else if ( iScrollBarOrientation
== kTXNVertical
)
1505 if ( mlte
->m_sbVertical
)
1507 SetControl32BitValue( mlte
->m_sbVertical
, value
) ;
1508 SetControl32BitMaximum( mlte
->m_sbVertical
, maximum
) ;
1509 mlte
->m_lastVerticalValue
= value
;
1514 pascal void wxMacMLTEClassicControl::TXNScrollActionProc( ControlRef controlRef
, ControlPartCode partCode
)
1516 wxMacMLTEClassicControl
* mlte
= (wxMacMLTEClassicControl
*) GetControlReference( controlRef
) ;
1520 if ( controlRef
!= mlte
->m_sbVertical
&& controlRef
!= mlte
->m_sbHorizontal
)
1524 bool isHorizontal
= ( controlRef
== mlte
->m_sbHorizontal
) ;
1526 SInt32 minimum
= 0 ;
1527 SInt32 maximum
= GetControl32BitMaximum( controlRef
) ;
1528 SInt32 value
= GetControl32BitValue( controlRef
) ;
1533 case kControlDownButtonPart
:
1537 case kControlUpButtonPart
:
1541 case kControlPageDownPart
:
1542 delta
= GetControlViewSize( controlRef
) ;
1545 case kControlPageUpPart
:
1546 delta
= -GetControlViewSize( controlRef
) ;
1549 case kControlIndicatorPart
:
1550 delta
= value
- (isHorizontal
? mlte
->m_lastHorizontalValue
: mlte
->m_lastVerticalValue
) ;
1559 SInt32 newValue
= value
;
1561 if ( partCode
!= kControlIndicatorPart
)
1563 if ( value
+ delta
< minimum
)
1564 delta
= minimum
- value
;
1565 if ( value
+ delta
> maximum
)
1566 delta
= maximum
- value
;
1568 SetControl32BitValue( controlRef
, value
+ delta
) ;
1569 newValue
= value
+ delta
;
1572 SInt32 verticalDelta
= isHorizontal
? 0 : delta
;
1573 SInt32 horizontalDelta
= isHorizontal
? delta
: 0 ;
1576 mlte
->m_txn
, kTXNScrollUnitsInPixels
, kTXNScrollUnitsInPixels
,
1577 &verticalDelta
, &horizontalDelta
);
1578 verify_noerr( err
);
1581 mlte
->m_lastHorizontalValue
= newValue
;
1583 mlte
->m_lastVerticalValue
= newValue
;
1587 // make correct activations
1588 void wxMacMLTEClassicControl::MacActivatePaneText(bool setActive
)
1590 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference(m_controlRef
);
1592 wxMacWindowClipper
clipper( textctrl
) ;
1593 TXNActivate( m_txn
, m_txnFrameID
, setActive
);
1595 ControlRef controlFocus
= 0 ;
1596 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
1597 if ( controlFocus
== m_controlRef
)
1598 TXNFocus( m_txn
, setActive
);
1601 void wxMacMLTEClassicControl::MacFocusPaneText(bool setFocus
)
1603 TXNFocus( m_txn
, setFocus
);
1606 // guards against inappropriate redraw (hidden objects drawing onto window)
1608 void wxMacMLTEClassicControl::MacSetObjectVisibility(bool vis
)
1610 ControlRef controlFocus
= 0 ;
1611 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
1613 if ( !vis
&& (controlFocus
== m_controlRef
) )
1614 SetKeyboardFocus( m_txnWindow
, m_controlRef
, kControlFocusNoPart
) ;
1616 TXNControlTag iControlTags
[1] = { kTXNVisibilityTag
};
1617 TXNControlData iControlData
[1] = { { (UInt32
)false } };
1619 verify_noerr( TXNGetTXNObjectControls( m_txn
, 1, iControlTags
, iControlData
) ) ;
1621 if ( iControlData
[0].uValue
!= vis
)
1623 iControlData
[0].uValue
= vis
;
1624 verify_noerr( TXNSetTXNObjectControls( m_txn
, false , 1, iControlTags
, iControlData
) ) ;
1627 // currently, we always clip as partial visibility (overlapped) visibility is also a problem,
1628 // if we run into further problems we might set the FrameBounds to an empty rect here
1631 // make sure that the TXNObject is at the right position
1633 void wxMacMLTEClassicControl::MacUpdatePosition()
1635 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
1636 if ( textctrl
== NULL
)
1640 GetRectInWindowCoords( &bounds
);
1642 wxRect visRect
= textctrl
->MacGetClippedClientRect() ;
1643 Rect visBounds
= { visRect
.y
, visRect
.x
, visRect
.y
+ visRect
.height
, visRect
.x
+ visRect
.width
} ;
1646 textctrl
->MacWindowToRootWindow( &x
, &y
) ;
1647 OffsetRect( &visBounds
, x
, y
) ;
1649 if ( !EqualRect( &bounds
, &m_txnControlBounds
) || !EqualRect( &visBounds
, &m_txnVisBounds
) )
1651 m_txnControlBounds
= bounds
;
1652 m_txnVisBounds
= visBounds
;
1653 wxMacWindowClipper
cl( textctrl
) ;
1655 if ( m_sbHorizontal
|| m_sbVertical
)
1657 int w
= bounds
.right
- bounds
.left
;
1658 int h
= bounds
.bottom
- bounds
.top
;
1660 if ( m_sbHorizontal
)
1664 sbBounds
.left
= -1 ;
1665 sbBounds
.top
= h
- 14 ;
1666 sbBounds
.right
= w
+ 1 ;
1667 sbBounds
.bottom
= h
+ 1 ;
1669 SetControlBounds( m_sbHorizontal
, &sbBounds
) ;
1670 SetControlViewSize( m_sbHorizontal
, w
) ;
1677 sbBounds
.left
= w
- 14 ;
1679 sbBounds
.right
= w
+ 1 ;
1680 sbBounds
.bottom
= m_sbHorizontal
? h
- 14 : h
+ 1 ;
1682 SetControlBounds( m_sbVertical
, &sbBounds
) ;
1683 SetControlViewSize( m_sbVertical
, h
) ;
1688 TXNLongRect olddestRect
;
1689 TXNGetRectBounds( m_txn
, &oldviewRect
, &olddestRect
, NULL
) ;
1691 Rect viewRect
= { m_txnControlBounds
.top
, m_txnControlBounds
.left
,
1692 m_txnControlBounds
.bottom
- ( m_sbHorizontal
? 14 : 0 ) ,
1693 m_txnControlBounds
.right
- ( m_sbVertical
? 14 : 0 ) } ;
1694 TXNLongRect destRect
= { m_txnControlBounds
.top
, m_txnControlBounds
.left
,
1695 m_txnControlBounds
.bottom
- ( m_sbHorizontal
? 14 : 0 ) ,
1696 m_txnControlBounds
.right
- ( m_sbVertical
? 14 : 0 ) } ;
1698 if ( olddestRect
.right
>= 10000 )
1699 destRect
.right
= destRect
.left
+ 32000 ;
1701 if ( olddestRect
.bottom
>= 0x20000000 )
1702 destRect
.bottom
= destRect
.top
+ 0x40000000 ;
1704 SectRect( &viewRect
, &visBounds
, &viewRect
) ;
1705 TXNSetRectBounds( m_txn
, &viewRect
, &destRect
, true ) ;
1710 m_txnControlBounds
.top
,
1711 m_txnControlBounds
.left
,
1712 m_txnControlBounds
.bottom
- (m_sbHorizontal
? 14 : 0),
1713 m_txnControlBounds
.right
- (m_sbVertical
? 14 : 0),
1717 // the SetFrameBounds method under Classic sometimes does not correctly scroll a selection into sight after a
1718 // movement, therefore we have to force it
1720 // this problem has been reported in OSX as well, so we use this here once again
1722 TXNLongRect textRect
;
1723 TXNGetRectBounds( m_txn
, NULL
, NULL
, &textRect
) ;
1724 if ( textRect
.left
< m_txnControlBounds
.left
)
1725 TXNShowSelection( m_txn
, kTXNShowStart
) ;
1729 void wxMacMLTEClassicControl::Move(int x
, int y
, int width
, int height
)
1731 wxMacControl::Move(x
,y
,width
,height
) ;
1732 MacUpdatePosition() ;
1735 void wxMacMLTEClassicControl::MacControlUserPaneDrawProc(wxInt16
WXUNUSED(thePart
))
1737 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
1738 if ( textctrl
== NULL
)
1741 if ( textctrl
->IsShownOnScreen() )
1743 wxMacWindowClipper
clipper( textctrl
) ;
1744 TXNDraw( m_txn
, NULL
) ;
1748 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
)
1750 Point where
= { y
, x
} ;
1751 ControlPartCode result
= kControlNoPart
;
1753 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference( m_controlRef
);
1754 if ( (textctrl
!= NULL
) && textctrl
->IsShownOnScreen() )
1756 if (PtInRect( where
, &m_txnControlBounds
))
1758 result
= kControlEditTextPart
;
1762 // sometimes we get the coords also in control local coordinates, therefore test again
1764 textctrl
->MacClientToRootWindow( &x
, &y
) ;
1768 if (PtInRect( where
, &m_txnControlBounds
))
1769 result
= kControlEditTextPart
;
1776 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneTrackingProc( wxInt16 x
, wxInt16 y
, void* WXUNUSED(actionProc
) )
1778 ControlPartCode result
= kControlNoPart
;
1780 wxTextCtrl
* textctrl
= (wxTextCtrl
*) GetControlReference( m_controlRef
);
1781 if ( (textctrl
!= NULL
) && textctrl
->IsShownOnScreen() )
1783 Point startPt
= { y
, x
} ;
1785 // for compositing, we must convert these into toplevel window coordinates, because hittesting expects them
1787 textctrl
->MacClientToRootWindow( &x
, &y
) ;
1791 switch (MacControlUserPaneHitTestProc( startPt
.h
, startPt
.v
))
1793 case kControlEditTextPart
:
1795 wxMacWindowClipper
clipper( textctrl
) ;
1798 ConvertEventRefToEventRecord( (EventRef
) wxTheApp
->MacGetCurrentEvent() , &rec
) ;
1799 TXNClick( m_txn
, &rec
);
1811 void wxMacMLTEClassicControl::MacControlUserPaneIdleProc()
1813 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
1814 if ( textctrl
== NULL
)
1817 if (textctrl
->IsShownOnScreen())
1819 if (IsControlActive(m_controlRef
))
1823 wxMacWindowClipper
clipper( textctrl
) ;
1828 if (PtInRect(mousep
, &m_txnControlBounds
))
1830 RgnHandle theRgn
= NewRgn();
1831 RectRgn(theRgn
, &m_txnControlBounds
);
1832 TXNAdjustCursor(m_txn
, theRgn
);
1839 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneKeyDownProc (wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
)
1841 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
1842 if ( textctrl
== NULL
)
1843 return kControlNoPart
;
1845 wxMacWindowClipper
clipper( textctrl
) ;
1848 memset( &ev
, 0 , sizeof( ev
) ) ;
1850 ev
.modifiers
= modifiers
;
1851 ev
.message
= ((keyCode
<< 8) & keyCodeMask
) | (charCode
& charCodeMask
);
1852 TXNKeyDown( m_txn
, &ev
);
1854 return kControlEntireControl
;
1857 void wxMacMLTEClassicControl::MacControlUserPaneActivateProc(bool activating
)
1859 MacActivatePaneText( activating
);
1862 wxInt16
wxMacMLTEClassicControl::MacControlUserPaneFocusProc(wxInt16 action
)
1864 ControlPartCode focusResult
= kControlFocusNoPart
;
1866 wxTextCtrl
* textctrl
= (wxTextCtrl
*)GetControlReference( m_controlRef
);
1867 if ( textctrl
== NULL
)
1870 wxMacWindowClipper
clipper( textctrl
) ;
1872 ControlRef controlFocus
= NULL
;
1873 GetKeyboardFocus( m_txnWindow
, &controlFocus
) ;
1874 bool wasFocused
= ( controlFocus
== m_controlRef
) ;
1878 case kControlFocusPrevPart
:
1879 case kControlFocusNextPart
:
1880 MacFocusPaneText( !wasFocused
);
1881 focusResult
= (!wasFocused
? (ControlPartCode
) kControlEditTextPart
: (ControlPartCode
) kControlFocusNoPart
);
1884 case kControlFocusNoPart
:
1886 MacFocusPaneText( false );
1887 focusResult
= kControlFocusNoPart
;
1894 void wxMacMLTEClassicControl::MacControlUserPaneBackgroundProc( void *WXUNUSED(info
) )
1898 wxMacMLTEClassicControl::wxMacMLTEClassicControl( wxTextCtrl
*wxPeer
,
1899 const wxString
& str
,
1901 const wxSize
& size
, long style
)
1902 : wxMacMLTEControl( wxPeer
)
1904 m_font
= wxPeer
->GetFont() ;
1905 m_windowStyle
= style
;
1906 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
1909 kControlSupportsEmbedding
| kControlSupportsFocus
| kControlWantsIdle
1910 | kControlWantsActivate
| kControlHandlesTracking
1911 // | kControlHasSpecialBackground
1912 | kControlGetsFocusOnClick
| kControlSupportsLiveFeedback
;
1914 OSStatus err
= ::CreateUserPaneControl(
1915 MAC_WXHWND(wxPeer
->GetParent()->MacGetTopLevelWindowRef()),
1916 &bounds
, featureSet
, &m_controlRef
);
1917 verify_noerr( err
);
1918 SetControlReference( m_controlRef
, (URefCon
) wxPeer
);
1922 AdjustCreationAttributes( *wxWHITE
, true ) ;
1924 MacSetObjectVisibility( wxPeer
->IsShownOnScreen() ) ;
1928 wxMacConvertNewlines10To13( &st
) ;
1929 wxMacWindowClipper
clipper( GetWXPeer() ) ;
1930 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
) ;
1931 TXNSetSelection( m_txn
, 0, 0 ) ;
1935 wxMacMLTEClassicControl::~wxMacMLTEClassicControl()
1937 TXNDeleteObject( m_txn
);
1941 void wxMacMLTEClassicControl::VisibilityChanged(bool shown
)
1943 MacSetObjectVisibility( shown
) ;
1944 wxMacControl::VisibilityChanged( shown
) ;
1947 void wxMacMLTEClassicControl::SuperChangedPosition()
1949 MacUpdatePosition() ;
1950 wxMacControl::SuperChangedPosition() ;
1953 ControlUserPaneDrawUPP gTPDrawProc
= NULL
;
1954 ControlUserPaneHitTestUPP gTPHitProc
= NULL
;
1955 ControlUserPaneTrackingUPP gTPTrackProc
= NULL
;
1956 ControlUserPaneIdleUPP gTPIdleProc
= NULL
;
1957 ControlUserPaneKeyDownUPP gTPKeyProc
= NULL
;
1958 ControlUserPaneActivateUPP gTPActivateProc
= NULL
;
1959 ControlUserPaneFocusUPP gTPFocusProc
= NULL
;
1961 static pascal void wxMacControlUserPaneDrawProc(ControlRef control
, SInt16 part
)
1963 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget( (WXWidget
) control
) , wxTextCtrl
) ;
1964 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
1966 win
->MacControlUserPaneDrawProc( part
) ;
1969 static pascal ControlPartCode
wxMacControlUserPaneHitTestProc(ControlRef control
, Point where
)
1971 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget( (WXWidget
) control
) , wxTextCtrl
) ;
1972 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
1974 return win
->MacControlUserPaneHitTestProc( where
.h
, where
.v
) ;
1976 return kControlNoPart
;
1979 static pascal ControlPartCode
wxMacControlUserPaneTrackingProc(ControlRef control
, Point startPt
, ControlActionUPP actionProc
)
1981 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget( (WXWidget
) control
) , wxTextCtrl
) ;
1982 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
1984 return win
->MacControlUserPaneTrackingProc( startPt
.h
, startPt
.v
, (void*) actionProc
) ;
1986 return kControlNoPart
;
1989 static pascal void wxMacControlUserPaneIdleProc(ControlRef control
)
1991 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget((WXWidget
) control
) , wxTextCtrl
) ;
1992 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
1994 win
->MacControlUserPaneIdleProc() ;
1997 static pascal ControlPartCode
wxMacControlUserPaneKeyDownProc(ControlRef control
, SInt16 keyCode
, SInt16 charCode
, SInt16 modifiers
)
1999 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget((WXWidget
) control
) , wxTextCtrl
) ;
2000 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2002 return win
->MacControlUserPaneKeyDownProc( keyCode
, charCode
, modifiers
) ;
2004 return kControlNoPart
;
2007 static pascal void wxMacControlUserPaneActivateProc(ControlRef control
, Boolean activating
)
2009 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget( (WXWidget
)control
) , wxTextCtrl
) ;
2010 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2012 win
->MacControlUserPaneActivateProc( activating
) ;
2015 static pascal ControlPartCode
wxMacControlUserPaneFocusProc(ControlRef control
, ControlFocusPart action
)
2017 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget((WXWidget
) control
) , wxTextCtrl
) ;
2018 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2020 return win
->MacControlUserPaneFocusProc( action
) ;
2022 return kControlNoPart
;
2026 static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control
, ControlBackgroundPtr info
)
2028 wxTextCtrl
*textCtrl
= wxDynamicCast( wxFindWindowFromWXWidget(control
) , wxTextCtrl
) ;
2029 wxMacMLTEClassicControl
* win
= textCtrl
? (wxMacMLTEClassicControl
*)(textCtrl
->GetPeer()) : NULL
;
2031 win
->MacControlUserPaneBackgroundProc(info
) ;
2035 // TXNRegisterScrollInfoProc
2037 OSStatus
wxMacMLTEClassicControl::DoCreate()
2040 OSStatus err
= noErr
;
2042 // set up our globals
2043 if (gTPDrawProc
== NULL
) gTPDrawProc
= NewControlUserPaneDrawUPP(wxMacControlUserPaneDrawProc
);
2044 if (gTPHitProc
== NULL
) gTPHitProc
= NewControlUserPaneHitTestUPP(wxMacControlUserPaneHitTestProc
);
2045 if (gTPTrackProc
== NULL
) gTPTrackProc
= NewControlUserPaneTrackingUPP(wxMacControlUserPaneTrackingProc
);
2046 if (gTPIdleProc
== NULL
) gTPIdleProc
= NewControlUserPaneIdleUPP(wxMacControlUserPaneIdleProc
);
2047 if (gTPKeyProc
== NULL
) gTPKeyProc
= NewControlUserPaneKeyDownUPP(wxMacControlUserPaneKeyDownProc
);
2048 if (gTPActivateProc
== NULL
) gTPActivateProc
= NewControlUserPaneActivateUPP(wxMacControlUserPaneActivateProc
);
2049 if (gTPFocusProc
== NULL
) gTPFocusProc
= NewControlUserPaneFocusUPP(wxMacControlUserPaneFocusProc
);
2051 if (gTXNScrollInfoProc
== NULL
) gTXNScrollInfoProc
= NewTXNScrollInfoUPP(TXNScrollInfoProc
) ;
2052 if (gTXNScrollActionProc
== NULL
) gTXNScrollActionProc
= NewControlActionUPP(TXNScrollActionProc
) ;
2054 // set the initial settings for our private data
2056 m_txnWindow
= GetControlOwner(m_controlRef
);
2057 m_txnPort
= (GrafPtr
) GetWindowPort(m_txnWindow
);
2059 // set up the user pane procedures
2060 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneDrawProcTag
, sizeof(gTPDrawProc
), &gTPDrawProc
);
2061 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneHitTestProcTag
, sizeof(gTPHitProc
), &gTPHitProc
);
2062 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneTrackingProcTag
, sizeof(gTPTrackProc
), &gTPTrackProc
);
2063 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneIdleProcTag
, sizeof(gTPIdleProc
), &gTPIdleProc
);
2064 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneKeyDownProcTag
, sizeof(gTPKeyProc
), &gTPKeyProc
);
2065 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneActivateProcTag
, sizeof(gTPActivateProc
), &gTPActivateProc
);
2066 SetControlData(m_controlRef
, kControlEntireControl
, kControlUserPaneFocusProcTag
, sizeof(gTPFocusProc
), &gTPFocusProc
);
2068 // calculate the rectangles used by the control
2069 GetRectInWindowCoords( &bounds
);
2071 m_txnControlBounds
= bounds
;
2072 m_txnVisBounds
= bounds
;
2077 GetGWorld( &origPort
, &origDev
) ;
2078 SetPort( m_txnPort
);
2080 // create the new edit field
2081 TXNFrameOptions frameOptions
= FrameOptionsFromWXStyle( m_windowStyle
);
2083 // the scrollbars are not correctly embedded but are inserted at the root:
2084 // this gives us problems as we have erratic redraws even over the structure area
2086 m_sbHorizontal
= 0 ;
2088 m_lastHorizontalValue
= 0 ;
2089 m_lastVerticalValue
= 0 ;
2091 Rect sb
= { 0 , 0 , 0 , 0 } ;
2092 if ( frameOptions
& kTXNWantVScrollBarMask
)
2094 CreateScrollBarControl( m_txnWindow
, &sb
, 0, 0, 100, 1, true, gTXNScrollActionProc
, &m_sbVertical
);
2095 SetControlReference( m_sbVertical
, (SInt32
)this );
2096 SetControlAction( m_sbVertical
, gTXNScrollActionProc
);
2097 ShowControl( m_sbVertical
);
2098 EmbedControl( m_sbVertical
, m_controlRef
);
2099 frameOptions
&= ~kTXNWantVScrollBarMask
;
2102 if ( frameOptions
& kTXNWantHScrollBarMask
)
2104 CreateScrollBarControl( m_txnWindow
, &sb
, 0, 0, 100, 1, true, gTXNScrollActionProc
, &m_sbHorizontal
);
2105 SetControlReference( m_sbHorizontal
, (SInt32
)this );
2106 SetControlAction( m_sbHorizontal
, gTXNScrollActionProc
);
2107 ShowControl( m_sbHorizontal
);
2108 EmbedControl( m_sbHorizontal
, m_controlRef
);
2109 frameOptions
&= ~(kTXNWantHScrollBarMask
| kTXNDrawGrowIconMask
);
2113 NULL
, m_txnWindow
, &bounds
, frameOptions
,
2114 kTXNTextEditStyleFrameType
, kTXNTextensionFile
, kTXNSystemDefaultEncoding
,
2115 &m_txn
, &m_txnFrameID
, NULL
);
2116 verify_noerr( err
);
2119 TXNControlTag iControlTags
[] = { kTXNUseCarbonEvents
};
2120 TXNControlData iControlData
[] = { { (UInt32
)&cInfo
} };
2121 int toptag
= WXSIZEOF( iControlTags
) ;
2122 TXNCarbonEventInfo cInfo
;
2123 cInfo
.useCarbonEvents
= false ;
2126 cInfo
.fDictionary
= NULL
;
2128 verify_noerr( TXNSetTXNObjectControls( m_txn
, false, toptag
, iControlTags
, iControlData
) );
2131 TXNRegisterScrollInfoProc( m_txn
, gTXNScrollInfoProc
, (SInt32
)this );
2133 SetGWorld( origPort
, origDev
) ;
2139 // ----------------------------------------------------------------------------
2140 // MLTE control implementation (OSX part)
2141 // ----------------------------------------------------------------------------
2143 // tiger multi-line textcontrols with no CR in the entire content
2144 // don't scroll automatically, so we need a hack.
2145 // This attempt only works 'before' the key (ie before CallNextEventHandler)
2146 // is processed, thus the scrolling always occurs one character too late, but
2147 // better than nothing ...
2149 static const EventTypeSpec eventList
[] =
2151 { kEventClassTextInput
, kEventTextInputUnicodeForKeyEvent
} ,
2154 static pascal OSStatus
wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
2156 OSStatus result
= eventNotHandledErr
;
2157 wxMacMLTEHIViewControl
* focus
= (wxMacMLTEHIViewControl
*) data
;
2159 switch ( GetEventKind( event
) )
2161 case kEventTextInputUnicodeForKeyEvent
:
2163 TXNOffset from
, to
;
2164 TXNGetSelection( focus
->GetTXNObject() , &from
, &to
) ;
2166 TXNShowSelection( focus
->GetTXNObject() , kTXNShowStart
);
2167 result
= CallNextEventHandler(handler
,event
);
2177 static pascal OSStatus
wxMacTextControlEventHandler( EventHandlerCallRef handler
, EventRef event
, void *data
)
2179 OSStatus result
= eventNotHandledErr
;
2181 switch ( GetEventClass( event
) )
2183 case kEventClassTextInput
:
2184 result
= wxMacUnicodeTextEventHandler( handler
, event
, data
) ;
2193 DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTextControlEventHandler
)
2195 wxMacMLTEHIViewControl::wxMacMLTEHIViewControl( wxTextCtrl
*wxPeer
,
2196 const wxString
& str
,
2198 const wxSize
& size
, long style
) : wxMacMLTEControl( wxPeer
)
2200 m_font
= wxPeer
->GetFont() ;
2201 m_windowStyle
= style
;
2202 Rect bounds
= wxMacGetBoundsForControl( wxPeer
, pos
, size
) ;
2204 wxMacConvertNewlines10To13( &st
) ;
2207 { bounds
.left
, bounds
.top
},
2208 { bounds
.right
- bounds
.left
, bounds
.bottom
- bounds
.top
} } ;
2210 m_scrollView
= NULL
;
2211 TXNFrameOptions frameOptions
= FrameOptionsFromWXStyle( style
) ;
2212 if (( frameOptions
& (kTXNWantVScrollBarMask
| kTXNWantHScrollBarMask
)) || (frameOptions
&kTXNSingleLineOnlyMask
))
2214 if ( frameOptions
& (kTXNWantVScrollBarMask
| kTXNWantHScrollBarMask
) )
2217 (frameOptions
& kTXNWantHScrollBarMask
? kHIScrollViewOptionsHorizScroll
: 0)
2218 | (frameOptions
& kTXNWantVScrollBarMask
? kHIScrollViewOptionsVertScroll
: 0) ,
2223 HIScrollViewCreate(kHIScrollViewOptionsVertScroll
,&m_scrollView
);
2224 HIScrollViewSetScrollBarAutoHide(m_scrollView
,true);
2227 HIViewSetFrame( m_scrollView
, &hr
);
2228 HIViewSetVisible( m_scrollView
, true );
2232 HITextViewCreate( NULL
, 0, frameOptions
, &m_textView
) ;
2233 m_txn
= HITextViewGetTXNObject( m_textView
) ;
2234 HIViewSetVisible( m_textView
, true ) ;
2237 HIViewAddSubview( m_scrollView
, m_textView
) ;
2238 m_controlRef
= m_scrollView
;
2239 InstallEventHandler( (WXWidget
) m_textView
) ;
2243 HIViewSetFrame( m_textView
, &hr
);
2244 m_controlRef
= m_textView
;
2247 AdjustCreationAttributes( *wxWHITE
, true ) ;
2249 wxMacWindowClipper
c( GetWXPeer() ) ;
2251 SetTXNData( st
, kTXNStartOffset
, kTXNEndOffset
) ;
2253 TXNSetSelection( m_txn
, 0, 0 );
2254 TXNShowSelection( m_txn
, kTXNShowStart
);
2256 ::InstallControlEventHandler( m_textView
, GetwxMacTextControlEventHandlerUPP(),
2257 GetEventTypeCount(eventList
), eventList
, this,
2261 wxMacMLTEHIViewControl::~wxMacMLTEHIViewControl()
2265 bool wxMacMLTEHIViewControl::SetFocus()
2267 return SetKeyboardFocus( GetControlOwner( m_textView
), m_textView
, kControlFocusNextPart
) == noErr
;
2270 bool wxMacMLTEHIViewControl::HasFocus() const
2272 ControlRef control
;
2273 if ( GetUserFocusWindow() == NULL
)
2276 GetKeyboardFocus( GetUserFocusWindow() , &control
) ;
2277 return control
== m_textView
;
2280 void wxMacMLTEHIViewControl::SetBackgroundColour(const wxColour
& col
)
2282 HITextViewSetBackgroundColor( m_textView
, col
.GetPixel() );
2285 #endif // wxUSE_TEXTCTRL