]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/textctrl.cpp
64 bit fixes
[wxWidgets.git] / src / mac / carbon / textctrl.cpp
CommitLineData
e9576ca5 1/////////////////////////////////////////////////////////////////////////////
faa94f3e 2// Name: src/mac/carbon/textctrl.cpp
e9576ca5 3// Purpose: wxTextCtrl
a31a5f85 4// Author: Stefan Csomor
6af16761 5// Modified by: Ryan Norton (MLTE GetLineLength and GetLineText)
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
3d1a4878 12#include "wx/wxprec.h"
fedad417
GD
13
14#if wxUSE_TEXTCTRL
15
88a7a4e1
WS
16#include "wx/textctrl.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/intl.h"
670f9935 20 #include "wx/app.h"
de6185e2 21 #include "wx/utils.h"
da80ae71 22 #include "wx/dc.h"
f1e01716 23 #include "wx/button.h"
3b3dc801 24 #include "wx/menu.h"
9eddec69 25 #include "wx/settings.h"
246c5004 26 #include "wx/msgdlg.h"
1832043f 27 #include "wx/toplevel.h"
88a7a4e1 28#endif
5ca0d812 29
f5c6eb5c 30#ifdef __DARWIN__
88a7a4e1
WS
31 #include <sys/types.h>
32 #include <sys/stat.h>
e9576ca5 33#else
88a7a4e1 34 #include <stat.h>
e9576ca5 35#endif
2b5f62a0
VZ
36
37#if wxUSE_STD_IOSTREAM
38 #if wxUSE_IOSTREAMH
39 #include <fstream.h>
40 #else
41 #include <fstream>
42 #endif
43#endif
e9576ca5 44
e9576ca5 45#include "wx/filefn.h"
823c4e96 46#include "wx/sysopt.h"
e9576ca5 47
fef981b4 48#include "wx/mac/uma.h"
3f7f284d 49#include "wx/mac/carbon/private/mactext.h"
fef981b4 50
5ca0d812 51class wxMacFunctor
587bc950 52{
7d8268a1 53public :
a8d2fb31 54 wxMacFunctor() {}
5ca0d812 55 virtual ~wxMacFunctor() {}
fef981b4 56
5ca0d812 57 virtual void* operator()() = 0 ;
fef981b4 58
c88b7d28 59 static void* CallBackProc( void *param )
587bc950 60 {
5ca0d812
SC
61 wxMacFunctor* f = (wxMacFunctor*) param ;
62 void *result = (*f)() ;
63 return result ;
587bc950 64 }
5ca0d812 65} ;
587bc950 66
fef981b4
DS
67template<typename classtype, typename param1type>
68
5ca0d812 69class wxMacObjectFunctor1 : public wxMacFunctor
587bc950 70{
5ca0d812
SC
71 typedef void (classtype::*function)( param1type p1 ) ;
72 typedef void (classtype::*ref_function)( const param1type& p1 ) ;
7d8268a1 73public :
5ca0d812 74 wxMacObjectFunctor1( classtype *obj , function f , param1type p1 ) :
fef981b4 75 wxMacFunctor()
587bc950 76 {
5ca0d812
SC
77 m_object = obj ;
78 m_function = f ;
79 m_param1 = p1 ;
587bc950 80 }
587bc950 81
5ca0d812 82 wxMacObjectFunctor1( classtype *obj , ref_function f , param1type p1 ) :
fef981b4 83 wxMacFunctor()
5ca0d812
SC
84 {
85 m_object = obj ;
86 m_refFunction = f ;
87 m_param1 = p1 ;
88 }
587bc950 89
d3c7fc99 90 virtual ~wxMacObjectFunctor1() {}
7d8268a1
WS
91
92 virtual void* operator()()
587bc950 93 {
c88b7d28 94 (m_object->*m_function)( m_param1 ) ;
5ca0d812
SC
95 return NULL ;
96 }
a8d2fb31 97
5ca0d812
SC
98private :
99 classtype* m_object ;
100 param1type m_param1 ;
101 union
102 {
fef981b4
DS
103 function m_function ;
104 ref_function m_refFunction ;
587bc950 105 } ;
5ca0d812 106} ;
587bc950 107
7d8268a1 108template<typename classtype, typename param1type>
5ca0d812
SC
109void* wxMacMPRemoteCall( classtype *object , void (classtype::*function)( param1type p1 ) , param1type p1 )
110{
fef981b4 111 wxMacObjectFunctor1<classtype, param1type> params(object, function, p1) ;
7d8268a1 112 void *result =
fef981b4 113 MPRemoteCall( wxMacFunctor::CallBackProc , &params , kMPOwningProcessRemoteContext ) ;
5ca0d812
SC
114 return result ;
115}
587bc950 116
7d8268a1 117template<typename classtype, typename param1type>
5ca0d812
SC
118void* wxMacMPRemoteCall( classtype *object , void (classtype::*function)( const param1type& p1 ) , param1type p1 )
119{
fef981b4 120 wxMacObjectFunctor1<classtype,param1type> params(object, function, p1) ;
7d8268a1 121 void *result =
fef981b4 122 MPRemoteCall( wxMacFunctor::CallBackProc , &params , kMPOwningProcessRemoteContext ) ;
5ca0d812 123 return result ;
587bc950
SC
124}
125
7d8268a1 126template<typename classtype, typename param1type>
5ca0d812
SC
127void* wxMacMPRemoteGUICall( classtype *object , void (classtype::*function)( param1type p1 ) , param1type p1 )
128{
129 wxMutexGuiLeave() ;
130 void *result = wxMacMPRemoteCall( object , function , p1 ) ;
131 wxMutexGuiEnter() ;
132 return result ;
133}
29b30405 134
7d8268a1 135template<typename classtype, typename param1type>
5ca0d812
SC
136void* wxMacMPRemoteGUICall( classtype *object , void (classtype::*function)( const param1type& p1 ) , param1type p1 )
137{
138 wxMutexGuiLeave() ;
139 void *result = wxMacMPRemoteCall( object , function , p1 ) ;
140 wxMutexGuiEnter() ;
141 return result ;
142}
a8d2fb31 143
72055702 144
5ca0d812 145// common parts for implementations based on MLTE
72055702 146
5ca0d812
SC
147class wxMacMLTEControl : public wxMacTextControl
148{
149public :
789ae0cf 150 wxMacMLTEControl( wxTextCtrl *peer ) ;
c88b7d28 151
5ca0d812 152 virtual wxString GetStringValue() const ;
c88b7d28 153 virtual void SetStringValue( const wxString &str ) ;
7d8268a1 154
5ca0d812 155 static TXNFrameOptions FrameOptionsFromWXStyle( long wxStyle ) ;
fef981b4 156
c88b7d28 157 void AdjustCreationAttributes( const wxColour& background, bool visible ) ;
5ca0d812 158
c88b7d28
DS
159 virtual void SetFont( const wxFont & font, const wxColour& foreground, long windowStyle ) ;
160 virtual void SetBackground( const wxBrush &brush ) ;
161 virtual void SetStyle( long start, long end, const wxTextAttr& style ) ;
5ca0d812
SC
162 virtual void Copy() ;
163 virtual void Cut() ;
164 virtual void Paste() ;
165 virtual bool CanPaste() const ;
c88b7d28 166 virtual void SetEditable( bool editable ) ;
7d8268a1 167 virtual wxTextPos GetLastPosition() const ;
c88b7d28
DS
168 virtual void Replace( long from, long to, const wxString &str ) ;
169 virtual void Remove( long from, long to ) ;
170 virtual void GetSelection( long* from, long* to ) const ;
171 virtual void SetSelection( long from, long to ) ;
7d8268a1 172
c88b7d28 173 virtual void WriteText( const wxString& str ) ;
fef981b4 174
0207e969
DS
175 virtual bool HasOwnContextMenu() const
176 {
d8f3e9da
SC
177 TXNCommandEventSupportOptions options ;
178 TXNGetCommandEventSupport( m_txn , & options ) ;
179 return options & kTXNSupportEditCommandProcessing ;
64bd657c
SC
180 }
181
6df87058
KO
182 virtual void CheckSpelling(bool check)
183 {
d8f3e9da 184 TXNSetSpellCheckAsYouType( m_txn, (Boolean) check );
6df87058 185 }
5ca0d812
SC
186 virtual void Clear() ;
187
188 virtual bool CanUndo() const ;
189 virtual void Undo() ;
190 virtual bool CanRedo() const;
191 virtual void Redo() ;
192 virtual int GetNumberOfLines() const ;
193 virtual long XYToPosition(long x, long y) const ;
194 virtual bool PositionToXY(long pos, long *x, long *y) const ;
195 virtual void ShowPosition( long pos ) ;
196 virtual int GetLineLength(long lineNo) const ;
197 virtual wxString GetLineText(long lineNo) const ;
198
199 void SetTXNData( const wxString& st , TXNOffset start , TXNOffset end ) ;
09660720 200 TXNObject GetTXNObject() { return m_txn ; }
5ca0d812
SC
201
202protected :
8623a883 203 void TXNSetAttribute( const wxTextAttr& style , long from , long to ) ;
fef981b4 204
5ca0d812
SC
205 TXNObject m_txn ;
206} ;
72055702 207
5ca0d812
SC
208// implementation available under OSX
209
7d8268a1 210class wxMacMLTEHIViewControl : public wxMacMLTEControl
5ca0d812
SC
211{
212public :
0f7817ab 213 wxMacMLTEHIViewControl( wxTextCtrl *wxPeer,
5ca0d812
SC
214 const wxString& str,
215 const wxPoint& pos,
216 const wxSize& size, long style ) ;
d3c7fc99 217 virtual ~wxMacMLTEHIViewControl() ;
9eddec69 218
5ca0d812
SC
219 virtual OSStatus SetFocus( ControlFocusPart focusPart ) ;
220 virtual bool HasFocus() const ;
44aa865d 221 virtual void SetBackground( const wxBrush &brush) ;
a8d2fb31 222
5ca0d812
SC
223protected :
224 HIViewRef m_scrollView ;
225 HIViewRef m_textView ;
fef981b4 226};
ef4a634b 227
24260aae 228// 'classic' MLTE implementation
72055702 229
5ca0d812
SC
230class wxMacMLTEClassicControl : public wxMacMLTEControl
231{
232public :
0f7817ab 233 wxMacMLTEClassicControl( wxTextCtrl *wxPeer,
5ca0d812
SC
234 const wxString& str,
235 const wxPoint& pos,
236 const wxSize& size, long style ) ;
d3c7fc99 237 virtual ~wxMacMLTEClassicControl() ;
ffafe6ca 238
5ca0d812 239 virtual void VisibilityChanged(bool shown) ;
4e477040 240 virtual void SuperChangedPosition() ;
24260aae
SC
241
242 virtual void MacControlUserPaneDrawProc(wxInt16 part) ;
243 virtual wxInt16 MacControlUserPaneHitTestProc(wxInt16 x, wxInt16 y) ;
244 virtual wxInt16 MacControlUserPaneTrackingProc(wxInt16 x, wxInt16 y, void* actionProc) ;
245 virtual void MacControlUserPaneIdleProc() ;
246 virtual wxInt16 MacControlUserPaneKeyDownProc(wxInt16 keyCode, wxInt16 charCode, wxInt16 modifiers) ;
247 virtual void MacControlUserPaneActivateProc(bool activating) ;
248 virtual wxInt16 MacControlUserPaneFocusProc(wxInt16 action) ;
249 virtual void MacControlUserPaneBackgroundProc(void* info) ;
250
ffafe6ca
DS
251 virtual bool SetupCursor( const wxPoint& WXUNUSED(pt) )
252 {
253 MacControlUserPaneIdleProc();
254 return true;
255 }
f2c3f2a8 256
0f7817ab
SC
257 virtual void SetRect( Rect *r ) ;
258
5ca0d812
SC
259protected :
260 OSStatus DoCreate();
3dee36ae 261
0f7817ab 262 void MacUpdatePosition() ;
fef981b4
DS
263 void MacActivatePaneText(bool setActive) ;
264 void MacFocusPaneText(bool setFocus) ;
265 void MacSetObjectVisibility(bool vis) ;
a8d2fb31 266
0f7817ab
SC
267private :
268 TXNFrameID m_txnFrameID ;
269 GrafPtr m_txnPort ;
5de694f0 270 WindowRef m_txnWindow ;
0f7817ab
SC
271 // bounds of the control as we last did set the txn frames
272 Rect m_txnControlBounds ;
ba75e603 273 Rect m_txnVisBounds ;
fef981b4 274
fef981b4
DS
275 static pascal void TXNScrollActionProc( ControlRef controlRef , ControlPartCode partCode ) ;
276 static pascal void TXNScrollInfoProc(
277 SInt32 iValue, SInt32 iMaximumValue,
278 TXNScrollBarOrientation iScrollBarOrientation, SInt32 iRefCon ) ;
279
4e477040 280 ControlRef m_sbHorizontal ;
5de694f0 281 SInt32 m_lastHorizontalValue ;
4e477040 282 ControlRef m_sbVertical ;
5de694f0 283 SInt32 m_lastVerticalValue ;
fef981b4 284};
facd6764 285
fef981b4 286
9d112688 287IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase)
72055702 288
9d112688 289BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase)
7ea087b7 290 EVT_ERASE_BACKGROUND( wxTextCtrl::OnEraseBackground )
5ca0d812
SC
291 EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
292 EVT_CHAR(wxTextCtrl::OnChar)
293 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
294 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
295 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
296 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
297 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
24eef584
SC
298 EVT_MENU(wxID_CLEAR, wxTextCtrl::OnDelete)
299 EVT_MENU(wxID_SELECTALL, wxTextCtrl::OnSelectAll)
300
301 EVT_CONTEXT_MENU(wxTextCtrl::OnContextMenu)
5ca0d812
SC
302
303 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
304 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
305 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
306 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
307 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
24eef584
SC
308 EVT_UPDATE_UI(wxID_CLEAR, wxTextCtrl::OnUpdateDelete)
309 EVT_UPDATE_UI(wxID_SELECTALL, wxTextCtrl::OnUpdateSelectAll)
5ca0d812 310END_EVENT_TABLE()
5ca0d812 311
fef981b4 312
a8d2fb31 313void wxTextCtrl::Init()
facd6764 314{
24eef584
SC
315 m_editable = true ;
316 m_dirty = false;
5ca0d812 317
b9bae707 318 m_maxLength = 0;
c88b7d28 319 m_privateContextMenu = NULL;
51478cd6 320 m_triggerOnSetValue = true ;
facd6764
SC
321}
322
5ca0d812 323wxTextCtrl::~wxTextCtrl()
facd6764 324{
24eef584 325 delete m_privateContextMenu;
facd6764
SC
326}
327
ffafe6ca 328bool wxTextCtrl::Create( wxWindow *parent,
c88b7d28
DS
329 wxWindowID id,
330 const wxString& str,
331 const wxPoint& pos,
332 const wxSize& size,
333 long style,
334 const wxValidator& validator,
ffafe6ca 335 const wxString& name )
5ca0d812 336{
7d8268a1 337 m_macIsUserPane = false ;
5ca0d812
SC
338 m_editable = true ;
339
c88b7d28
DS
340 if ( ! (style & wxNO_BORDER) )
341 style = (style & ~wxBORDER_MASK) | wxSUNKEN_BORDER ;
7d8268a1 342
ffafe6ca 343 if ( !wxTextCtrlBase::Create( parent, id, pos, size, style & ~(wxHSCROLL | wxVSCROLL), validator, name ) )
7d8268a1 344 return false;
ef4a634b 345
5ca0d812 346 if ( m_windowStyle & wxTE_MULTILINE )
facd6764 347 {
9e15c718 348 // always turn on this style for multi-line controls
5ca0d812
SC
349 m_windowStyle |= wxTE_PROCESS_ENTER;
350 style |= wxTE_PROCESS_ENTER ;
ed8c2780 351 }
3556e470 352
3f7f284d
RD
353 CreatePeer( str, pos, size, style );
354
355 MacPostControlCreate(pos, size) ;
356
357 // only now the embedding is correct and we can do a positioning update
358
359 MacSuperChangedPosition() ;
360
361 if ( m_windowStyle & wxTE_READONLY)
362 SetEditable( false ) ;
363
364 SetCursor( wxCursor( wxCURSOR_IBEAM ) ) ;
365
366 return true;
367}
368
369void wxTextCtrl::CreatePeer(
370 const wxString& str,
371 const wxPoint& pos,
372 const wxSize& size, long style )
373{
4d7528a1 374 bool forceMLTE = false ;
fef981b4 375
823c4e96 376#if wxUSE_SYSTEM_OPTIONS
ffafe6ca 377 if (wxSystemOptions::HasOption( wxMAC_TEXTCONTROL_USE_MLTE ) && (wxSystemOptions::GetOptionInt( wxMAC_TEXTCONTROL_USE_MLTE ) == 1))
823c4e96 378 {
4d7528a1 379 forceMLTE = true ;
823c4e96
SC
380 }
381#endif
4d7528a1 382
6239ee05
SC
383 if ( UMAGetSystemVersion() >= 0x1050 )
384 forceMLTE = false;
385
9d463591 386 if ( !forceMLTE )
788e118f 387 {
4d7528a1
SC
388 if ( m_windowStyle & wxTE_MULTILINE )
389 m_peer = new wxMacMLTEHIViewControl( this , str , pos , size , style ) ;
788e118f 390 }
fef981b4 391
3556e470 392 if ( !m_peer )
7d8268a1 393 {
c88b7d28 394 if ( !(m_windowStyle & wxTE_MULTILINE) && !forceMLTE )
4f74e0d1 395 {
4d7528a1 396 m_peer = new wxMacUnicodeTextControl( this , str , pos , size , style ) ;
4f74e0d1 397 }
788e118f 398 }
fef981b4 399
6239ee05
SC
400 // the horizontal single line scrolling bug that made us keep the classic implementation
401 // is fixed in 10.5
402#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
3556e470 403 if ( !m_peer )
3556e470 404 m_peer = new wxMacMLTEClassicControl( this , str , pos , size , style ) ;
4f74e0d1 405#endif
facd6764
SC
406}
407
3dee36ae 408void wxTextCtrl::MacSuperChangedPosition()
4e477040
SC
409{
410 wxWindow::MacSuperChangedPosition() ;
411 GetPeer()->SuperChangedPosition() ;
412}
413
7d8268a1 414void wxTextCtrl::MacVisibilityChanged()
5ca0d812
SC
415{
416 GetPeer()->VisibilityChanged( MacIsReallyShown() ) ;
417}
facd6764 418
7d8268a1 419void wxTextCtrl::MacEnabledStateChanged()
5ca0d812 420{
72055702
SC
421}
422
6df87058
KO
423void wxTextCtrl::MacCheckSpelling(bool check)
424{
425 GetPeer()->CheckSpelling(check);
426}
427
5ca0d812
SC
428wxString wxTextCtrl::GetValue() const
429{
430 return GetPeer()->GetStringValue() ;
431}
ef4a634b 432
5ca0d812 433void wxTextCtrl::GetSelection(long* from, long* to) const
7d8268a1 434{
5ca0d812
SC
435 GetPeer()->GetSelection( from , to ) ;
436}
437
ee2ec18e 438void wxTextCtrl::DoSetValue(const wxString& str, int flags)
5ca0d812
SC
439{
440 // optimize redraws
441 if ( GetValue() == str )
ee2ec18e 442 return;
facd6764 443
c88b7d28 444 GetPeer()->SetStringValue( str ) ;
e8b4fd4b 445
ee2ec18e 446 if ( (flags & SetValue_SendEvent) && m_triggerOnSetValue )
51478cd6 447 {
ee2ec18e 448 SendTextUpdatedEvent();
51478cd6 449 }
72055702
SC
450}
451
5ca0d812
SC
452void wxTextCtrl::SetMaxLength(unsigned long len)
453{
454 m_maxLength = len ;
455}
72055702 456
5ca0d812
SC
457bool wxTextCtrl::SetFont( const wxFont& font )
458{
459 if ( !wxTextCtrlBase::SetFont( font ) )
7d8268a1
WS
460 return false ;
461
5ca0d812 462 GetPeer()->SetFont( font , GetForegroundColour() , GetWindowStyle() ) ;
fef981b4 463
5ca0d812
SC
464 return true ;
465}
466
467bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style)
468{
469 GetPeer()->SetStyle( start , end , style ) ;
fef981b4 470
5ca0d812
SC
471 return true ;
472}
473
474bool wxTextCtrl::SetDefaultStyle(const wxTextAttr& style)
475{
476 wxTextCtrlBase::SetDefaultStyle( style ) ;
477 SetStyle( kTXNUseCurrentSelection , kTXNUseCurrentSelection , GetDefaultStyle() ) ;
fef981b4 478
7d8268a1 479 return true ;
5ca0d812
SC
480}
481
482// Clipboard operations
fef981b4 483
5ca0d812
SC
484void wxTextCtrl::Copy()
485{
486 if (CanCopy())
7d8268a1 487 GetPeer()->Copy() ;
72055702
SC
488}
489
5ca0d812
SC
490void wxTextCtrl::Cut()
491{
492 if (CanCut())
493 {
7d8268a1 494 GetPeer()->Cut() ;
72055702 495
c88b7d28 496 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, m_windowId );
5ca0d812 497 event.SetEventObject( this );
c88b7d28 498 GetEventHandler()->ProcessEvent( event );
5ca0d812
SC
499 }
500}
72055702 501
5ca0d812
SC
502void wxTextCtrl::Paste()
503{
504 if (CanPaste())
505 {
7d8268a1 506 GetPeer()->Paste() ;
fef981b4
DS
507
508 // TODO: eventually we should add setting the default style again
72055702 509
c88b7d28 510 wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, m_windowId );
5ca0d812 511 event.SetEventObject( this );
c88b7d28 512 GetEventHandler()->ProcessEvent( event );
5ca0d812
SC
513 }
514}
72055702 515
5ca0d812
SC
516bool wxTextCtrl::CanCopy() const
517{
518 // Can copy if there's a selection
519 long from, to;
c88b7d28 520 GetSelection( &from, &to );
ffafe6ca 521
5ca0d812
SC
522 return (from != to);
523}
ef4a634b 524
5ca0d812
SC
525bool wxTextCtrl::CanCut() const
526{
527 if ( !IsEditable() )
c88b7d28 528 return false;
a8d2fb31 529
5ca0d812
SC
530 // Can cut if there's a selection
531 long from, to;
c88b7d28 532 GetSelection( &from, &to );
ffafe6ca 533
5ca0d812 534 return (from != to);
72055702
SC
535}
536
5ca0d812
SC
537bool wxTextCtrl::CanPaste() const
538{
539 if (!IsEditable())
7d8268a1 540 return false;
72055702 541
5ca0d812
SC
542 return GetPeer()->CanPaste() ;
543}
facd6764 544
5ca0d812
SC
545void wxTextCtrl::SetEditable(bool editable)
546{
547 if ( editable != m_editable )
548 {
549 m_editable = editable ;
550 GetPeer()->SetEditable( editable ) ;
ed8c2780 551 }
72055702
SC
552}
553
5ca0d812
SC
554void wxTextCtrl::SetInsertionPoint(long pos)
555{
556 SetSelection( pos , pos ) ;
557}
72055702 558
5ca0d812
SC
559void wxTextCtrl::SetInsertionPointEnd()
560{
7d8268a1 561 wxTextPos pos = GetLastPosition();
ffafe6ca 562 SetInsertionPoint( pos );
5ca0d812 563}
facd6764 564
5ca0d812
SC
565long wxTextCtrl::GetInsertionPoint() const
566{
ffafe6ca 567 long begin, end ;
5ca0d812 568 GetSelection( &begin , &end ) ;
ffafe6ca 569
5ca0d812
SC
570 return begin ;
571}
facd6764 572
7d8268a1 573wxTextPos wxTextCtrl::GetLastPosition() const
5ca0d812 574{
c88b7d28 575 return GetPeer()->GetLastPosition() ;
72055702
SC
576}
577
5ca0d812
SC
578void wxTextCtrl::Replace(long from, long to, const wxString& str)
579{
ffafe6ca 580 GetPeer()->Replace( from , to , str ) ;
5ca0d812 581}
72055702 582
5ca0d812
SC
583void wxTextCtrl::Remove(long from, long to)
584{
585 GetPeer()->Remove( from , to ) ;
586}
facd6764 587
5ca0d812
SC
588void wxTextCtrl::SetSelection(long from, long to)
589{
590 GetPeer()->SetSelection( from , to ) ;
591}
592
5ca0d812
SC
593void wxTextCtrl::WriteText(const wxString& str)
594{
fef981b4 595 // TODO: this MPRemoting will be moved into a remoting peer proxy for any command
5ca0d812
SC
596 if ( !wxIsMainThread() )
597 {
fef981b4
DS
598 // unfortunately CW 8 is not able to correctly deduce the template types,
599 // so we have to instantiate explicitly
5ca0d812 600 wxMacMPRemoteGUICall<wxTextCtrl,wxString>( this , &wxTextCtrl::WriteText , str ) ;
ffafe6ca 601
5ca0d812
SC
602 return ;
603 }
ffafe6ca
DS
604
605 GetPeer()->WriteText( str ) ;
5ca0d812 606}
72055702 607
5ca0d812
SC
608void wxTextCtrl::AppendText(const wxString& text)
609{
610 SetInsertionPointEnd();
ffafe6ca 611 WriteText( text );
5ca0d812 612}
facd6764 613
5ca0d812
SC
614void wxTextCtrl::Clear()
615{
616 GetPeer()->Clear() ;
617}
facd6764 618
5ca0d812
SC
619bool wxTextCtrl::IsModified() const
620{
621 return m_dirty;
622}
facd6764 623
5ca0d812
SC
624bool wxTextCtrl::IsEditable() const
625{
626 return IsEnabled() && m_editable ;
72055702
SC
627}
628
5ca0d812
SC
629bool wxTextCtrl::AcceptsFocus() const
630{
631 // we don't want focus if we can't be edited
632 return /*IsEditable() && */ wxControl::AcceptsFocus();
633}
72055702 634
5ca0d812 635wxSize wxTextCtrl::DoGetBestSize() const
1b2b1638 636{
c88b7d28 637 int wText, hText;
ef4a634b 638
a8d2fb31
DS
639 // these are the numbers from the HIG:
640 // we reduce them by the borders first
c88b7d28 641 wText = 100 ;
72463754 642
fef981b4 643 switch ( m_windowVariant )
5ca0d812
SC
644 {
645 case wxWINDOW_VARIANT_NORMAL :
72463754 646 hText = 22 - 6 ;
5ca0d812 647 break ;
a8d2fb31 648
5ca0d812 649 case wxWINDOW_VARIANT_SMALL :
72463754 650 hText = 19 - 6 ;
5ca0d812 651 break ;
a8d2fb31 652
5ca0d812 653 case wxWINDOW_VARIANT_MINI :
c88b7d28 654 hText = 15 - 6 ;
5ca0d812 655 break ;
a8d2fb31 656
5ca0d812 657 default :
72463754 658 hText = 22 - 6;
7d8268a1 659 break ;
5ca0d812 660 }
72055702 661
72463754
SC
662 // as the above numbers have some free space around the text
663 // we get 5 lines like this anyway
5ca0d812 664 if ( m_windowStyle & wxTE_MULTILINE )
5ca0d812 665 hText *= 5 ;
ef4a634b 666
72463754
SC
667 if ( !HasFlag(wxNO_BORDER) )
668 hText += 6 ;
669
5ca0d812
SC
670 return wxSize(wText, hText);
671}
ef4a634b 672
5ca0d812
SC
673// ----------------------------------------------------------------------------
674// Undo/redo
675// ----------------------------------------------------------------------------
facd6764 676
5ca0d812
SC
677void wxTextCtrl::Undo()
678{
679 if (CanUndo())
5ca0d812 680 GetPeer()->Undo() ;
72055702
SC
681}
682
5ca0d812 683void wxTextCtrl::Redo()
587bc950 684{
5ca0d812 685 if (CanRedo())
5ca0d812 686 GetPeer()->Redo() ;
5ca0d812 687}
1b2b1638 688
5ca0d812
SC
689bool wxTextCtrl::CanUndo() const
690{
7d8268a1 691 if ( !IsEditable() )
7d8268a1 692 return false ;
a8d2fb31 693
5ca0d812
SC
694 return GetPeer()->CanUndo() ;
695}
72055702 696
5ca0d812 697bool wxTextCtrl::CanRedo() const
6bdd4f5d 698{
7d8268a1 699 if ( !IsEditable() )
7d8268a1 700 return false ;
a8d2fb31 701
5ca0d812 702 return GetPeer()->CanRedo() ;
6bdd4f5d
SC
703}
704
5ca0d812
SC
705void wxTextCtrl::MarkDirty()
706{
707 m_dirty = true;
708}
587bc950 709
5ca0d812
SC
710void wxTextCtrl::DiscardEdits()
711{
712 m_dirty = false;
713}
587bc950 714
5ca0d812
SC
715int wxTextCtrl::GetNumberOfLines() const
716{
717 return GetPeer()->GetNumberOfLines() ;
718}
587bc950 719
5ca0d812
SC
720long wxTextCtrl::XYToPosition(long x, long y) const
721{
722 return GetPeer()->XYToPosition( x , y ) ;
723}
587bc950 724
5ca0d812 725bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
72055702 726{
ffafe6ca 727 return GetPeer()->PositionToXY( pos , x , y ) ;
5ca0d812 728}
1fa29bdc 729
5ca0d812
SC
730void wxTextCtrl::ShowPosition(long pos)
731{
732 return GetPeer()->ShowPosition(pos) ;
733}
1fa29bdc 734
5ca0d812
SC
735int wxTextCtrl::GetLineLength(long lineNo) const
736{
737 return GetPeer()->GetLineLength(lineNo) ;
1b2b1638
SC
738}
739
5ca0d812 740wxString wxTextCtrl::GetLineText(long lineNo) const
1b2b1638 741{
5ca0d812 742 return GetPeer()->GetLineText(lineNo) ;
72055702
SC
743}
744
5ca0d812 745void wxTextCtrl::Command(wxCommandEvent & event)
72055702 746{
c88b7d28
DS
747 SetValue(event.GetString());
748 ProcessCommand(event);
5ca0d812 749}
72055702 750
5ca0d812
SC
751void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
752{
753 // By default, load the first file into the text window.
754 if (event.GetNumberOfFiles() > 0)
ffafe6ca 755 LoadFile( event.GetFiles()[0] );
5ca0d812 756}
ef4a634b 757
7ea087b7
SC
758void wxTextCtrl::OnEraseBackground(wxEraseEvent& event)
759{
760 // all erasing should be done by the real mac control implementation
761 // while this is true for MLTE under classic, the HITextView is somehow
762 // transparent but background erase is not working correctly, so intercept
763 // things while we can...
395480fb 764 event.Skip() ;
7ea087b7
SC
765}
766
5ca0d812
SC
767void wxTextCtrl::OnChar(wxKeyEvent& event)
768{
769 int key = event.GetKeyCode() ;
770 bool eat_key = false ;
72055702 771
c4d9fc39
SC
772 if ( key == 'a' && event.MetaDown() )
773 {
88a7a4e1
WS
774 SelectAll() ;
775
c4d9fc39
SC
776 return ;
777 }
778
5ca0d812 779 if ( key == 'c' && event.MetaDown() )
72055702 780 {
5ca0d812
SC
781 if ( CanCopy() )
782 Copy() ;
fef981b4 783
5ca0d812 784 return ;
72055702
SC
785 }
786
5ca0d812 787 if ( !IsEditable() && key != WXK_LEFT && key != WXK_RIGHT && key != WXK_DOWN && key != WXK_UP && key != WXK_TAB &&
8e13c1ec 788 !( key == WXK_RETURN && ( (m_windowStyle & wxTE_PROCESS_ENTER) || (m_windowStyle & wxTE_MULTILINE) ) )
faa94f3e 789// && key != WXK_PAGEUP && key != WXK_PAGEDOWN && key != WXK_HOME && key != WXK_END
5ca0d812 790 )
29e4a190 791 {
5ca0d812
SC
792 // eat it
793 return ;
794 }
d3016f30 795
b9bae707
VZ
796 // Check if we have reached the max # of chars (if it is set), but still
797 // allow navigation and deletion
faa94f3e 798 if ( !IsMultiLine() && m_maxLength && GetValue().length() >= m_maxLength &&
bdf0c19c 799 key != WXK_LEFT && key != WXK_RIGHT && key != WXK_TAB &&
8e13c1ec 800 key != WXK_BACK && !( key == WXK_RETURN && (m_windowStyle & wxTE_PROCESS_ENTER) )
bdf0c19c
KH
801 )
802 {
803 // eat it, we don't want to add more than allowed # of characters
b9bae707
VZ
804
805 // TODO: generate EVT_TEXT_MAXLEN()
bdf0c19c
KH
806 return;
807 }
808
5ca0d812
SC
809 // assume that any key not processed yet is going to modify the control
810 m_dirty = true;
587bc950 811
5ca0d812
SC
812 if ( key == 'v' && event.MetaDown() )
813 {
814 if ( CanPaste() )
815 Paste() ;
0207e969 816
5ca0d812 817 return ;
29e4a190 818 }
fef981b4 819
5ca0d812 820 if ( key == 'x' && event.MetaDown() )
ed8c2780 821 {
5ca0d812
SC
822 if ( CanCut() )
823 Cut() ;
fef981b4 824
5ca0d812 825 return ;
1b2b1638 826 }
a8d2fb31 827
5ca0d812
SC
828 switch ( key )
829 {
830 case WXK_RETURN:
8e13c1ec 831 if (m_windowStyle & wxTE_PROCESS_ENTER)
5ca0d812
SC
832 {
833 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
834 event.SetEventObject( this );
835 event.SetString( GetValue() );
836 if ( GetEventHandler()->ProcessEvent(event) )
837 return;
838 }
fef981b4 839
5ca0d812
SC
840 if ( !(m_windowStyle & wxTE_MULTILINE) )
841 {
6c20e8f8
VZ
842 wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow);
843 if ( tlw && tlw->GetDefaultItem() )
fef981b4 844 {
6c20e8f8 845 wxButton *def = wxDynamicCast(tlw->GetDefaultItem(), wxButton);
5ca0d812
SC
846 if ( def && def->IsEnabled() )
847 {
848 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, def->GetId() );
849 event.SetEventObject(def);
850 def->Command(event);
fef981b4 851
5ca0d812 852 return ;
3dee36ae 853 }
5ca0d812
SC
854 }
855
856 // this will make wxWidgets eat the ENTER key so that
0207e969 857 // we actually prevent line wrapping in a single line text control
7d8268a1 858 eat_key = true;
5ca0d812 859 }
5ca0d812 860 break;
facd6764 861
5ca0d812
SC
862 case WXK_TAB:
863 if ( !(m_windowStyle & wxTE_PROCESS_TAB))
864 {
865 int flags = 0;
866 if (!event.ShiftDown())
867 flags |= wxNavigationKeyEvent::IsForward ;
868 if (event.ControlDown())
869 flags |= wxNavigationKeyEvent::WinChange ;
870 Navigate(flags);
fef981b4 871
5ca0d812
SC
872 return;
873 }
874 else
875 {
fef981b4
DS
876 // This is necessary (don't know why);
877 // otherwise the tab will not be inserted.
5ca0d812 878 WriteText(wxT("\t"));
4e6cc020 879 eat_key = true;
5ca0d812 880 }
a8d2fb31 881 break;
7d8268a1 882
a8d2fb31 883 default:
5ca0d812
SC
884 break;
885 }
facd6764 886
5ca0d812 887 if (!eat_key)
7f1de2b2 888 {
5ca0d812 889 // perform keystroke handling
665b537f 890 event.Skip(true) ;
7f1de2b2 891 }
a8d2fb31 892
5ca0d812 893 if ( ( key >= 0x20 && key < WXK_START ) ||
fce161de 894 ( key >= WXK_NUMPAD0 && key <= WXK_DIVIDE ) ||
5ca0d812
SC
895 key == WXK_RETURN ||
896 key == WXK_DELETE ||
897 key == WXK_BACK)
7f1de2b2 898 {
5ca0d812 899 wxCommandEvent event1(wxEVT_COMMAND_TEXT_UPDATED, m_windowId);
5ca0d812 900 event1.SetEventObject( this );
c88b7d28 901 wxPostEvent( GetEventHandler(), event1 );
7f1de2b2 902 }
5ca0d812 903}
facd6764 904
5ca0d812
SC
905// ----------------------------------------------------------------------------
906// standard handlers for standard edit menu events
907// ----------------------------------------------------------------------------
908
909void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
910{
911 Cut();
72055702
SC
912}
913
5ca0d812 914void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
facd6764 915{
5ca0d812
SC
916 Copy();
917}
7f1de2b2 918
5ca0d812
SC
919void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
920{
921 Paste();
facd6764
SC
922}
923
5ca0d812 924void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
facd6764 925{
5ca0d812 926 Undo();
facd6764
SC
927}
928
5ca0d812
SC
929void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
930{
931 Redo();
932}
facd6764 933
24eef584
SC
934void wxTextCtrl::OnDelete(wxCommandEvent& WXUNUSED(event))
935{
936 long from, to;
ffafe6ca 937
c88b7d28 938 GetSelection( &from, &to );
24eef584 939 if (from != -1 && to != -1)
c88b7d28 940 Remove( from, to );
24eef584
SC
941}
942
943void wxTextCtrl::OnSelectAll(wxCommandEvent& WXUNUSED(event))
944{
945 SetSelection(-1, -1);
946}
947
5ca0d812 948void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
72055702 949{
5ca0d812 950 event.Enable( CanCut() );
72055702
SC
951}
952
5ca0d812
SC
953void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
954{
955 event.Enable( CanCopy() );
72055702
SC
956}
957
5ca0d812 958void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
72055702 959{
5ca0d812 960 event.Enable( CanPaste() );
72055702
SC
961}
962
5ca0d812 963void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
29b30405 964{
5ca0d812 965 event.Enable( CanUndo() );
29b30405
SC
966}
967
5ca0d812 968void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
facd6764 969{
5ca0d812 970 event.Enable( CanRedo() );
facd6764
SC
971}
972
24eef584
SC
973void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent& event)
974{
975 long from, to;
ffafe6ca 976
c88b7d28 977 GetSelection( &from, &to );
0207e969 978 event.Enable( from != -1 && to != -1 && from != to && IsEditable() ) ;
24eef584
SC
979}
980
981void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent& event)
982{
983 event.Enable(GetLastPosition() > 0);
984}
985
a8d2fb31 986// CS: Context Menus only work with MLTE implementations or non-multiline HIViews at the moment
24eef584
SC
987
988void wxTextCtrl::OnContextMenu(wxContextMenuEvent& event)
989{
64bd657c
SC
990 if ( GetPeer()->HasOwnContextMenu() )
991 {
992 event.Skip() ;
993 return ;
994 }
0207e969 995
24eef584
SC
996 if (m_privateContextMenu == NULL)
997 {
998 m_privateContextMenu = new wxMenu;
999 m_privateContextMenu->Append(wxID_UNDO, _("&Undo"));
1000 m_privateContextMenu->Append(wxID_REDO, _("&Redo"));
1001 m_privateContextMenu->AppendSeparator();
1002 m_privateContextMenu->Append(wxID_CUT, _("Cu&t"));
1003 m_privateContextMenu->Append(wxID_COPY, _("&Copy"));
1004 m_privateContextMenu->Append(wxID_PASTE, _("&Paste"));
1005 m_privateContextMenu->Append(wxID_CLEAR, _("&Delete"));
1006 m_privateContextMenu->AppendSeparator();
1007 m_privateContextMenu->Append(wxID_SELECTALL, _("Select &All"));
1008 }
faa94f3e 1009
24eef584
SC
1010 if (m_privateContextMenu != NULL)
1011 PopupMenu(m_privateContextMenu);
1012}
1013
5ca0d812 1014bool wxTextCtrl::MacSetupCursor( const wxPoint& pt )
29b30405 1015{
0207e969 1016 if ( !GetPeer()->SetupCursor( pt ) )
f2c3f2a8
SC
1017 return wxWindow::MacSetupCursor( pt ) ;
1018 else
1019 return true ;
5ca0d812 1020}
a8d2fb31 1021
5ca0d812
SC
1022// ----------------------------------------------------------------------------
1023// implementation base class
1024// ----------------------------------------------------------------------------
1025
0f7817ab
SC
1026wxMacTextControl::wxMacTextControl(wxTextCtrl* peer) :
1027 wxMacControl( peer )
5ca0d812 1028{
72055702
SC
1029}
1030
7d8268a1 1031wxMacTextControl::~wxMacTextControl()
72055702 1032{
72055702
SC
1033}
1034
89954433
VZ
1035void wxMacTextControl::SetStyle(long WXUNUSED(start),
1036 long WXUNUSED(end),
1037 const wxTextAttr& WXUNUSED(style))
72055702 1038{
72055702
SC
1039}
1040
7d8268a1 1041void wxMacTextControl::Copy()
72055702 1042{
72055702
SC
1043}
1044
7d8268a1 1045void wxMacTextControl::Cut()
72055702 1046{
72055702
SC
1047}
1048
7d8268a1 1049void wxMacTextControl::Paste()
72055702 1050{
72055702
SC
1051}
1052
7d8268a1
WS
1053bool wxMacTextControl::CanPaste() const
1054{
5ca0d812
SC
1055 return false ;
1056}
1057
89954433 1058void wxMacTextControl::SetEditable(bool WXUNUSED(editable))
72055702 1059{
7d8268a1 1060}
facd6764 1061
7d8268a1 1062wxTextPos wxMacTextControl::GetLastPosition() const
5ca0d812 1063{
faa94f3e 1064 return GetStringValue().length() ;
5ca0d812 1065}
facd6764 1066
44aa865d
SC
1067void wxMacTextControl::Replace( long from , long to , const wxString &val )
1068{
1069 SetSelection( from , to ) ;
fef981b4 1070 WriteText( val ) ;
44aa865d
SC
1071}
1072
1073void wxMacTextControl::Remove( long from , long to )
5ca0d812 1074{
44aa865d
SC
1075 SetSelection( from , to ) ;
1076 WriteText( wxEmptyString) ;
72055702
SC
1077}
1078
7d8268a1 1079void wxMacTextControl::Clear()
72055702 1080{
5ca0d812 1081 SetStringValue( wxEmptyString ) ;
72055702
SC
1082}
1083
7d8268a1 1084bool wxMacTextControl::CanUndo() const
72055702 1085{
5ca0d812
SC
1086 return false ;
1087}
587bc950 1088
a8d2fb31
DS
1089void wxMacTextControl::Undo()
1090{
1091}
5ca0d812
SC
1092
1093bool wxMacTextControl::CanRedo() const
1094{
1095 return false ;
7d8268a1 1096}
5ca0d812 1097
7d8268a1 1098void wxMacTextControl::Redo()
5ca0d812 1099{
72055702
SC
1100}
1101
89954433 1102long wxMacTextControl::XYToPosition(long WXUNUSED(x), long WXUNUSED(y)) const
72055702 1103{
5ca0d812
SC
1104 return 0 ;
1105}
72055702 1106
89954433
VZ
1107bool wxMacTextControl::PositionToXY(long WXUNUSED(pos),
1108 long *WXUNUSED(x),
1109 long *WXUNUSED(y)) const
5ca0d812
SC
1110{
1111 return false ;
72055702
SC
1112}
1113
7d8268a1
WS
1114void wxMacTextControl::ShowPosition( long WXUNUSED(pos) )
1115{
1116}
5ca0d812 1117
7d8268a1 1118int wxMacTextControl::GetNumberOfLines() const
7548762c 1119{
5ca0d812
SC
1120 ItemCount lines = 0 ;
1121 wxString content = GetStringValue() ;
1122 lines = 1;
fef981b4 1123
faa94f3e 1124 for (size_t i = 0; i < content.length() ; i++)
7548762c 1125 {
fef981b4
DS
1126 if (content[i] == '\r')
1127 lines++;
7548762c 1128 }
a8d2fb31 1129
5ca0d812
SC
1130 return lines ;
1131}
7548762c 1132
5ca0d812 1133wxString wxMacTextControl::GetLineText(long lineNo) const
7548762c 1134{
fef981b4 1135 // TODO: change this if possible to reflect real lines
5ca0d812 1136 wxString content = GetStringValue() ;
7d8268a1 1137
5ca0d812
SC
1138 // Find line first
1139 int count = 0;
faa94f3e 1140 for (size_t i = 0; i < content.length() ; i++)
7548762c 1141 {
5ca0d812
SC
1142 if (count == lineNo)
1143 {
1144 // Add chars in line then
1145 wxString tmp;
7d8268a1 1146
faa94f3e 1147 for (size_t j = i; j < content.length(); j++)
5ca0d812
SC
1148 {
1149 if (content[j] == '\n')
1150 return tmp;
7d8268a1 1151
5ca0d812
SC
1152 tmp += content[j];
1153 }
7d8268a1 1154
5ca0d812
SC
1155 return tmp;
1156 }
a8d2fb31 1157
fef981b4
DS
1158 if (content[i] == '\n')
1159 count++;
7548762c 1160 }
a8d2fb31 1161
5ca0d812
SC
1162 return wxEmptyString ;
1163}
7548762c 1164
a8d2fb31 1165int wxMacTextControl::GetLineLength(long lineNo) const
5ca0d812 1166{
fef981b4 1167 // TODO: change this if possible to reflect real lines
5ca0d812 1168 wxString content = GetStringValue() ;
7d8268a1 1169
5ca0d812
SC
1170 // Find line first
1171 int count = 0;
faa94f3e 1172 for (size_t i = 0; i < content.length() ; i++)
7548762c 1173 {
5ca0d812
SC
1174 if (count == lineNo)
1175 {
1176 // Count chars in line then
1177 count = 0;
faa94f3e 1178 for (size_t j = i; j < content.length(); j++)
5ca0d812
SC
1179 {
1180 count++;
a8d2fb31
DS
1181 if (content[j] == '\n')
1182 return count;
5ca0d812 1183 }
7d8268a1 1184
5ca0d812
SC
1185 return count;
1186 }
a8d2fb31 1187
fef981b4
DS
1188 if (content[i] == '\n')
1189 count++;
7548762c 1190 }
a8d2fb31 1191
5ca0d812
SC
1192 return 0 ;
1193}
7548762c 1194
5ca0d812
SC
1195// ----------------------------------------------------------------------------
1196// standard unicode control implementation
1197// ----------------------------------------------------------------------------
1198
ad604d0f
SC
1199// the current unicode textcontrol implementation has a bug : only if the control
1200// is currently having the focus, the selection can be retrieved by the corresponding
1201// data tag. So we have a mirroring using a member variable
1202// TODO : build event table using virtual member functions for wxMacControl
1203
1204static const EventTypeSpec unicodeTextControlEventList[] =
1205{
1206 { kEventClassControl , kEventControlSetFocusPart } ,
1207} ;
1208
1209static pascal OSStatus wxMacUnicodeTextControlControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
1210{
1211 OSStatus result = eventNotHandledErr ;
1212 wxMacUnicodeTextControl* focus = (wxMacUnicodeTextControl*) data ;
1213 wxMacCarbonEvent cEvent( event ) ;
9eddec69 1214
ad604d0f
SC
1215 switch ( GetEventKind( event ) )
1216 {
1217 case kEventControlSetFocusPart :
1218 {
1219 ControlPartCode controlPart = cEvent.GetParameter<ControlPartCode>(kEventParamControlPart , typeControlPartCode );
1220 if ( controlPart == kControlFocusNoPart )
1221 {
1222 // about to loose focus -> store selection to field
1223 focus->GetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &focus->m_selection );
1224 }
1225 result = CallNextEventHandler(handler,event) ;
1226 if ( controlPart != kControlFocusNoPart )
1227 {
1228 // about to gain focus -> set selection from field
1229 focus->SetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &focus->m_selection );
1230 }
1231 break;
1232 }
1233 default:
1234 break ;
1235 }
9eddec69 1236
ad604d0f
SC
1237 return result ;
1238}
1239
1240static pascal OSStatus wxMacUnicodeTextControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
1241{
1242 OSStatus result = eventNotHandledErr ;
9eddec69 1243
ad604d0f
SC
1244 switch ( GetEventClass( event ) )
1245 {
1246 case kEventClassControl :
1247 result = wxMacUnicodeTextControlControlEventHandler( handler , event , data ) ;
1248 break ;
9eddec69 1249
ad604d0f
SC
1250 default :
1251 break ;
1252 }
1253 return result ;
1254}
1255
1256DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacUnicodeTextControlEventHandler )
1257
3f7f284d
RD
1258wxMacUnicodeTextControl::wxMacUnicodeTextControl( wxTextCtrl *wxPeer ) : wxMacTextControl( wxPeer )
1259{
1260}
1261
0f7817ab 1262wxMacUnicodeTextControl::wxMacUnicodeTextControl( wxTextCtrl *wxPeer,
ffafe6ca
DS
1263 const wxString& str,
1264 const wxPoint& pos,
1265 const wxSize& size, long style )
1266 : wxMacTextControl( wxPeer )
3f7f284d
RD
1267{
1268 Create( wxPeer, str, pos, size, style );
1269}
1270
1271bool wxMacUnicodeTextControl::Create( wxTextCtrl *wxPeer,
1272 const wxString& str,
1273 const wxPoint& pos,
1274 const wxSize& size, long style )
5ca0d812
SC
1275{
1276 m_font = wxPeer->GetFont() ;
1277 m_windowStyle = style ;
6239ee05 1278 m_selection.selStart = m_selection.selEnd = 0;
7d8268a1 1279 Rect bounds = wxMacGetBoundsForControl( wxPeer , pos , size ) ;
5ca0d812 1280 wxString st = str ;
395480fb 1281 wxMacConvertNewlines10To13( &st ) ;
5ca0d812
SC
1282 wxMacCFStringHolder cf(st , m_font.GetEncoding()) ;
1283 CFStringRef cfr = cf ;
44cc96a8 1284
3f7f284d
RD
1285 m_valueTag = kControlEditTextCFStringTag ;
1286 CreateControl( wxPeer, &bounds, cfr );
7d8268a1 1287
5ca0d812 1288 if ( !(m_windowStyle & wxTE_MULTILINE) )
5ca0d812 1289 SetData<Boolean>( kControlEditTextPart , kControlEditTextSingleLineTag , true ) ;
ad604d0f
SC
1290
1291 InstallControlEventHandler( m_controlRef , GetwxMacUnicodeTextControlEventHandlerUPP(),
1292 GetEventTypeCount(unicodeTextControlEventList), unicodeTextControlEventList, this,
6239ee05 1293 NULL);
44cc96a8 1294
3f7f284d 1295 return true;
5ca0d812 1296}
7548762c 1297
5ca0d812 1298wxMacUnicodeTextControl::~wxMacUnicodeTextControl()
7548762c 1299{
7548762c
SC
1300}
1301
7d8268a1 1302void wxMacUnicodeTextControl::VisibilityChanged(bool shown)
7548762c 1303{
5ca0d812
SC
1304 if ( !(m_windowStyle & wxTE_MULTILINE) && shown )
1305 {
fef981b4
DS
1306 // work around a refresh issue insofar as not always the entire content is shown,
1307 // even if this would be possible
5ca0d812
SC
1308 ControlEditTextSelectionRec sel ;
1309 CFStringRef value = NULL ;
7548762c 1310
5ca0d812 1311 verify_noerr( GetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &sel ) );
c88b7d28 1312 verify_noerr( GetData<CFStringRef>( 0, m_valueTag, &value ) );
5ca0d812
SC
1313 verify_noerr( SetData<CFStringRef>( 0, m_valueTag, &value ) );
1314 verify_noerr( SetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &sel ) );
7d8268a1 1315
5ca0d812
SC
1316 CFRelease( value ) ;
1317 }
1318}
a8d2fb31 1319
7d8268a1 1320wxString wxMacUnicodeTextControl::GetStringValue() const
7548762c 1321{
5ca0d812 1322 wxString result ;
c88b7d28 1323 CFStringRef value = GetData<CFStringRef>(0, m_valueTag) ;
5ca0d812
SC
1324 if ( value )
1325 {
1326 wxMacCFStringHolder cf(value) ;
1327 result = cf.AsString() ;
1328 }
a8d2fb31 1329
2e7573f7 1330#if '\n' == 10
395480fb
SC
1331 wxMacConvertNewlines13To10( &result ) ;
1332#else
5ca0d812 1333 wxMacConvertNewlines10To13( &result ) ;
395480fb 1334#endif
a8d2fb31 1335
7548762c
SC
1336 return result ;
1337}
a8d2fb31 1338
c88b7d28 1339void wxMacUnicodeTextControl::SetStringValue( const wxString &str )
5ca0d812
SC
1340{
1341 wxString st = str ;
395480fb 1342 wxMacConvertNewlines10To13( &st ) ;
ffafe6ca 1343 wxMacCFStringHolder cf( st , m_font.GetEncoding() ) ;
0207e969 1344 verify_noerr( SetData<CFStringRef>( 0, m_valueTag , cf ) ) ;
5ca0d812 1345}
a8d2fb31 1346
3f7f284d
RD
1347void wxMacUnicodeTextControl::CreateControl( wxTextCtrl* peer, const Rect* bounds, CFStringRef cfr )
1348{
1349 Boolean isPassword = ( m_windowStyle & wxTE_PASSWORD ) != 0 ;
1350 if ( isPassword )
1351 {
1352 m_valueTag = kControlEditTextPasswordCFStringTag ;
1353 }
1354 OSStatus err = CreateEditUnicodeTextControl(
1355 MAC_WXHWND(peer->MacGetTopLevelWindowRef()), bounds , cfr ,
1356 isPassword , NULL , &m_controlRef ) ;
1357 verify_noerr( err );
1358}
1359
5ca0d812
SC
1360void wxMacUnicodeTextControl::Copy()
1361{
1362 SendHICommand( kHICommandCopy ) ;
1363}
a8d2fb31 1364
5ca0d812
SC
1365void wxMacUnicodeTextControl::Cut()
1366{
1367 SendHICommand( kHICommandCut ) ;
1368}
a8d2fb31 1369
5ca0d812
SC
1370void wxMacUnicodeTextControl::Paste()
1371{
1372 SendHICommand( kHICommandPaste ) ;
1373}
a8d2fb31 1374
5ca0d812
SC
1375bool wxMacUnicodeTextControl::CanPaste() const
1376{
1377 return true ;
1378}
a8d2fb31 1379
89954433 1380void wxMacUnicodeTextControl::SetEditable(bool WXUNUSED(editable))
5ca0d812 1381{
35d9ac06
SC
1382#if 0 // leads to problem because text cannot be selected anymore
1383 SetData<Boolean>( kControlEditTextPart , kControlEditTextLockedTag , (Boolean) !editable ) ;
1384#endif
5ca0d812 1385}
7548762c 1386
0207e969 1387void wxMacUnicodeTextControl::GetSelection( long* from, long* to ) const
7548762c 1388{
5ca0d812 1389 ControlEditTextSelectionRec sel ;
ad604d0f
SC
1390 if (HasFocus())
1391 verify_noerr( GetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &sel ) ) ;
1392 else
1393 sel = m_selection ;
9eddec69 1394
0207e969
DS
1395 if ( from )
1396 *from = sel.selStart ;
1397 if ( to )
1398 *to = sel.selEnd ;
7548762c
SC
1399}
1400
7d8268a1 1401void wxMacUnicodeTextControl::SetSelection( long from , long to )
ef4a634b 1402{
5ca0d812 1403 ControlEditTextSelectionRec sel ;
ad604d0f
SC
1404 wxString result ;
1405 int textLength = 0 ;
1406 CFStringRef value = GetData<CFStringRef>(0, m_valueTag) ;
1407 if ( value )
1408 {
1409 wxMacCFStringHolder cf(value) ;
1832043f 1410 textLength = cf.AsString().length() ;
ad604d0f
SC
1411 }
1412
1a535eb9
SC
1413 if ((from == -1) && (to == -1))
1414 {
1415 from = 0 ;
9eddec69 1416 to = textLength ;
ad604d0f
SC
1417 }
1418 else
1419 {
1420 from = wxMin(textLength,wxMax(from,0)) ;
7dbefc56
SC
1421 if ( to == -1 )
1422 to = textLength;
1423 else
1424 to = wxMax(0,wxMin(textLength,to)) ;
1a535eb9 1425 }
a8d2fb31 1426
5ca0d812
SC
1427 sel.selStart = from ;
1428 sel.selEnd = to ;
ad604d0f
SC
1429 if ( HasFocus() )
1430 SetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &sel ) ;
1431 else
1432 m_selection = sel;
5ca0d812 1433}
facd6764 1434
c88b7d28 1435void wxMacUnicodeTextControl::WriteText( const wxString& str )
5ca0d812
SC
1436{
1437 wxString st = str ;
395480fb 1438 wxMacConvertNewlines10To13( &st ) ;
0207e969 1439
ad604d0f
SC
1440 if ( HasFocus() )
1441 {
7548762c
SC
1442 wxMacCFStringHolder cf(st , m_font.GetEncoding() ) ;
1443 CFStringRef value = cf ;
5ca0d812 1444 SetData<CFStringRef>( 0, kControlEditTextInsertCFStringRefTag, &value );
ad604d0f 1445 }
df39467f 1446 else
ad604d0f 1447 {
5ca0d812 1448 wxString val = GetStringValue() ;
7548762c
SC
1449 long start , end ;
1450 GetSelection( &start , &end ) ;
1451 val.Remove( start , end - start ) ;
1452 val.insert( start , str ) ;
5ca0d812 1453 SetStringValue( val ) ;
faa94f3e 1454 SetSelection( start + str.length() , start + str.length() ) ;
ad604d0f 1455 }
72055702
SC
1456}
1457
5ca0d812
SC
1458// ----------------------------------------------------------------------------
1459// MLTE control implementation (common part)
1460// ----------------------------------------------------------------------------
facd6764 1461
a8d2fb31 1462// if MTLE is read only, no changes at all are allowed, not even from
5ca0d812
SC
1463// procedural API, in order to allow changes via API all the same we must undo
1464// the readonly status while we are executing, this class helps to do so
72055702 1465
5de694f0 1466class wxMacEditHelper
72055702 1467{
5ca0d812 1468public :
5de694f0 1469 wxMacEditHelper( TXNObject txn )
5ca0d812
SC
1470 {
1471 TXNControlTag tag[] = { kTXNIOPrivilegesTag } ;
1472 m_txn = txn ;
1473 TXNGetTXNObjectControls( m_txn , 1 , tag , m_data ) ;
1474 if ( m_data[0].uValue == kTXNReadOnly )
1475 {
1476 TXNControlData data[] = { { kTXNReadWrite } } ;
1477 TXNSetTXNObjectControls( m_txn , false , 1 , tag , data ) ;
1478 }
1479 }
a8d2fb31 1480
5de694f0 1481 ~wxMacEditHelper()
5ca0d812
SC
1482 {
1483 TXNControlTag tag[] = { kTXNIOPrivilegesTag } ;
1484 if ( m_data[0].uValue == kTXNReadOnly )
5ca0d812 1485 TXNSetTXNObjectControls( m_txn , false , 1 , tag , m_data ) ;
5ca0d812 1486 }
a8d2fb31 1487
fef981b4
DS
1488protected :
1489 TXNObject m_txn ;
1490 TXNControlData m_data[1] ;
5ca0d812 1491} ;
72055702 1492
ffafe6ca
DS
1493wxMacMLTEControl::wxMacMLTEControl( wxTextCtrl *peer )
1494 : wxMacTextControl( peer )
789ae0cf 1495{
3dee36ae 1496 SetNeedsFocusRect( true ) ;
789ae0cf
SC
1497}
1498
7d8268a1 1499wxString wxMacMLTEControl::GetStringValue() const
72055702 1500{
5ca0d812
SC
1501 wxString result ;
1502 OSStatus err ;
1503 Size actualSize = 0;
c88b7d28 1504
5ca0d812
SC
1505 {
1506#if wxUSE_UNICODE
1507 Handle theText ;
c88b7d28 1508 err = TXNGetDataEncoded( m_txn, kTXNStartOffset, kTXNEndOffset, &theText, kTXNUnicodeTextData );
fef981b4 1509
5ca0d812 1510 // all done
fef981b4 1511 if ( err != noErr )
5ca0d812
SC
1512 {
1513 actualSize = 0 ;
1514 }
1515 else
1516 {
c88b7d28 1517 actualSize = GetHandleSize( theText ) / sizeof(UniChar) ;
5ca0d812
SC
1518 if ( actualSize > 0 )
1519 {
1520 wxChar *ptr = NULL ;
fef981b4 1521
7d8268a1 1522#if SIZEOF_WCHAR_T == 2
c88b7d28
DS
1523 ptr = new wxChar[actualSize + 1] ;
1524 wxStrncpy( ptr , (wxChar*)(*theText) , actualSize ) ;
5ca0d812 1525#else
c88b7d28 1526 SetHandleSize( theText, (actualSize + 1) * sizeof(UniChar) ) ;
5ca0d812
SC
1527 HLock( theText ) ;
1528 (((UniChar*)*theText)[actualSize]) = 0 ;
d9d488cf 1529 wxMBConvUTF16 converter ;
5ca0d812 1530 size_t noChars = converter.MB2WC( NULL , (const char*)*theText , 0 ) ;
88a7a4e1 1531 wxASSERT_MSG( noChars != wxCONV_FAILED, _T("Unable to count the number of characters in this string!") );
5ca0d812 1532 ptr = new wxChar[noChars + 1] ;
7d8268a1 1533
f3097709 1534 noChars = converter.MB2WC( ptr , (const char*)*theText , noChars + 1 ) ;
88a7a4e1 1535 wxASSERT_MSG( noChars != wxCONV_FAILED, _T("Conversion of string failed!") );
5ca0d812
SC
1536 ptr[noChars] = 0 ;
1537 HUnlock( theText ) ;
1538#endif
fef981b4 1539
5ca0d812
SC
1540 ptr[actualSize] = 0 ;
1541 result = wxString( ptr ) ;
c88b7d28 1542 delete [] ptr ;
5ca0d812 1543 }
a8d2fb31 1544
5ca0d812
SC
1545 DisposeHandle( theText ) ;
1546 }
1547#else
1548 Handle theText ;
c88b7d28 1549 err = TXNGetDataEncoded( m_txn , kTXNStartOffset, kTXNEndOffset, &theText, kTXNTextData );
0207e969 1550
5ca0d812 1551 // all done
0207e969 1552 if ( err != noErr )
5ca0d812
SC
1553 {
1554 actualSize = 0 ;
1555 }
1556 else
1557 {
1558 actualSize = GetHandleSize( theText ) ;
1559 if ( actualSize > 0 )
1560 {
1561 HLock( theText ) ;
1562 result = wxString( *theText , wxConvLocal , actualSize ) ;
1563 HUnlock( theText ) ;
1564 }
a8d2fb31 1565
5ca0d812
SC
1566 DisposeHandle( theText ) ;
1567 }
1568#endif
1569 }
a8d2fb31 1570
2e7573f7 1571#if '\n' == 10
395480fb
SC
1572 wxMacConvertNewlines13To10( &result ) ;
1573#else
5ca0d812 1574 wxMacConvertNewlines10To13( &result ) ;
395480fb 1575#endif
a8d2fb31 1576
5ca0d812 1577 return result ;
72055702
SC
1578}
1579
0207e969 1580void wxMacMLTEControl::SetStringValue( const wxString &str )
72055702 1581{
c88b7d28
DS
1582 wxString st = str;
1583 wxMacConvertNewlines10To13( &st );
395480fb 1584
5de694f0 1585 {
4f74e0d1
SC
1586#ifndef __LP64__
1587 wxMacWindowClipper c( m_peer ) ;
1588#endif
0207e969 1589
5de694f0 1590 {
c88b7d28
DS
1591 wxMacEditHelper help( m_txn );
1592 SetTXNData( st, kTXNStartOffset, kTXNEndOffset );
5de694f0 1593 }
0207e969 1594
fef981b4
DS
1595 TXNSetSelection( m_txn, 0, 0 );
1596 TXNShowSelection( m_txn, kTXNShowStart );
5de694f0 1597 }
5ca0d812 1598}
facd6764 1599
5ca0d812
SC
1600TXNFrameOptions wxMacMLTEControl::FrameOptionsFromWXStyle( long wxStyle )
1601{
c88b7d28
DS
1602 TXNFrameOptions frameOptions = kTXNDontDrawCaretWhenInactiveMask;
1603
c88b7d28 1604 frameOptions |= kTXNDoFontSubstitutionMask;
4d7528a1 1605
c88b7d28 1606 if ( ! (wxStyle & wxTE_NOHIDESEL) )
5ca0d812
SC
1607 frameOptions |= kTXNDontDrawSelectionWhenInactiveMask ;
1608
c88b7d28
DS
1609 if ( wxStyle & (wxHSCROLL | wxTE_DONTWRAP) )
1610 frameOptions |= kTXNWantHScrollBarMask ;
1611
5ca0d812 1612 if ( wxStyle & wxTE_MULTILINE )
29e4a190 1613 {
c88b7d28 1614 frameOptions |= kTXNAlwaysWrapAtViewEdgeMask ;
72055702 1615
c88b7d28 1616 if ( !(wxStyle & wxTE_NO_VSCROLL) )
5de694f0 1617 {
5ca0d812 1618 frameOptions |= kTXNWantVScrollBarMask ;
c88b7d28 1619
04c3457a
DS
1620 // The following code causes drawing problems on 10.4. Perhaps it can be restored for
1621 // older versions of the OS, but I'm not sure it's appropriate to put a grow icon here
1622 // anyways, as AFAIK users can't actually use it to resize the text ctrl.
1623// if ( frameOptions & kTXNWantHScrollBarMask )
1624// frameOptions |= kTXNDrawGrowIconMask ;
5de694f0 1625 }
5ca0d812
SC
1626 }
1627 else
c88b7d28 1628 {
5ca0d812 1629 frameOptions |= kTXNSingleLineOnlyMask ;
c88b7d28 1630 }
7d8268a1 1631
5ca0d812
SC
1632 return frameOptions ;
1633}
cfeff6f7 1634
89954433
VZ
1635void wxMacMLTEControl::AdjustCreationAttributes(const wxColour &background,
1636 bool WXUNUSED(visible))
5ca0d812 1637{
3dee36ae
WS
1638 TXNControlTag iControlTags[] =
1639 {
1640 kTXNDoFontSubstitution,
5de694f0
SC
1641 kTXNWordWrapStateTag ,
1642 };
3dee36ae
WS
1643 TXNControlData iControlData[] =
1644 {
c88b7d28
DS
1645 { true },
1646 { kTXNNoAutoWrap },
5de694f0 1647 };
3dee36ae 1648
5de694f0 1649 int toptag = WXSIZEOF( iControlTags ) ;
7d8268a1 1650
72055702
SC
1651 if ( m_windowStyle & wxTE_MULTILINE )
1652 {
c88b7d28
DS
1653 iControlData[1].uValue =
1654 (m_windowStyle & wxTE_DONTWRAP)
1655 ? kTXNNoAutoWrap
1656 : kTXNAutoWrap;
72055702 1657 }
0207e969 1658
ffafe6ca
DS
1659 OSStatus err = TXNSetTXNObjectControls( m_txn, false, toptag, iControlTags, iControlData ) ;
1660 verify_noerr( err );
facd6764 1661
fef981b4 1662 // setting the default font:
8e15e610 1663 // under 10.2 this causes a visible caret, therefore we avoid it
72055702 1664
9d463591
SC
1665 Str255 fontName ;
1666 SInt16 fontSize ;
1667 Style fontStyle ;
5ca0d812 1668
9d463591 1669 GetThemeFont( kThemeSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
5ca0d812 1670
9d463591
SC
1671 TXNTypeAttributes typeAttr[] =
1672 {
1673 { kTXNQDFontNameAttribute , kTXNQDFontNameAttributeSize , { (void*) fontName } } ,
1674 { kTXNQDFontSizeAttribute , kTXNFontSizeAttributeSize , { (void*) (fontSize << 16) } } ,
1675 { kTXNQDFontStyleAttribute , kTXNQDFontStyleAttributeSize , { (void*) normal } } ,
1676 } ;
1677
1678 err = TXNSetTypeAttributes(
1679 m_txn, sizeof(typeAttr) / sizeof(TXNTypeAttributes),
1680 typeAttr, kTXNStartOffset, kTXNEndOffset );
1681 verify_noerr( err );
3dee36ae 1682
5ca0d812
SC
1683 if ( m_windowStyle & wxTE_PASSWORD )
1684 {
ffafe6ca
DS
1685 UniChar c = 0x00A5 ;
1686 err = TXNEchoMode( m_txn , c , 0 , true );
1687 verify_noerr( err );
72055702 1688 }
5ca0d812
SC
1689
1690 TXNBackground tback;
1691 tback.bgType = kTXNBackgroundTypeRGB;
276ee533 1692 background.GetRGBColor( &tback.bg.color );
0207e969 1693 TXNSetBackground( m_txn , &tback );
a8d2fb31 1694
d8f3e9da
SC
1695
1696 TXNCommandEventSupportOptions options ;
1697 if ( TXNGetCommandEventSupport( m_txn, &options ) == noErr )
64bd657c 1698 {
d8f3e9da
SC
1699 options |=
1700 kTXNSupportEditCommandProcessing
1701 | kTXNSupportEditCommandUpdating
1702 | kTXNSupportFontCommandProcessing
1703 | kTXNSupportFontCommandUpdating;
1704
1705 // only spell check when not read-only
1706 // use system options for the default
1707 bool checkSpelling = false ;
1708 if ( !(m_windowStyle & wxTE_READONLY) )
1709 {
6239ee05 1710#if wxUSE_SYSTEM_OPTIONS
d8f3e9da
SC
1711 if ( wxSystemOptions::HasOption( wxMAC_TEXTCONTROL_USE_SPELL_CHECKER ) && (wxSystemOptions::GetOptionInt( wxMAC_TEXTCONTROL_USE_SPELL_CHECKER ) == 1) )
1712 {
1713 checkSpelling = true ;
6239ee05 1714 }
d8f3e9da 1715#endif
64bd657c 1716 }
d8f3e9da
SC
1717
1718 if ( checkSpelling )
1719 options |=
1720 kTXNSupportSpellCheckCommandProcessing
1721 | kTXNSupportSpellCheckCommandUpdating;
1722
1723 TXNSetCommandEventSupport( m_txn , options ) ;
64bd657c 1724 }
72055702
SC
1725}
1726
7d8268a1 1727void wxMacMLTEControl::SetBackground( const wxBrush &brush )
7ea087b7
SC
1728{
1729 // currently only solid background are supported
1730 TXNBackground tback;
0207e969 1731
7ea087b7 1732 tback.bgType = kTXNBackgroundTypeRGB;
276ee533 1733 brush.GetColour().GetRGBColor(&tback.bg.color);
0207e969 1734 TXNSetBackground( m_txn , &tback );
7ea087b7
SC
1735}
1736
31c1cbc7
VZ
1737static inline int wxConvertToTXN(int x)
1738{
1739 return wx_static_cast(int, x / 254.0 * 72 + 0.5);
1740}
1741
0207e969 1742void wxMacMLTEControl::TXNSetAttribute( const wxTextAttr& style , long from , long to )
72055702 1743{
7d8268a1 1744 TXNTypeAttributes typeAttr[4] ;
5ca0d812 1745 RGBColor color ;
6239ee05
SC
1746 size_t typeAttrCount = 0 ;
1747
1748 TXNMargins margins;
1749 TXNControlTag controlTags[4];
1750 TXNControlData controlData[4];
1751 size_t controlAttrCount = 0;
31c1cbc7 1752
6239ee05 1753 TXNTab* tabs = NULL;
31c1cbc7 1754
6239ee05 1755 bool relayout = false;
fef981b4 1756
5ca0d812 1757 if ( style.HasFont() )
72055702 1758 {
6239ee05
SC
1759 wxASSERT( typeAttrCount < WXSIZEOF(typeAttr) );
1760 const wxFont &font = style.GetFont() ;
1761 typeAttr[typeAttrCount].tag = kTXNATSUIStyle ;
1762 typeAttr[typeAttrCount].size = kTXNATSUIStyleSize ;
1763 typeAttr[typeAttrCount].data.dataPtr = font.MacGetATSUStyle() ;
1764 typeAttrCount++ ;
5ca0d812 1765 }
fef981b4 1766
5ca0d812
SC
1767 if ( style.HasTextColour() )
1768 {
6239ee05 1769 wxASSERT( typeAttrCount < WXSIZEOF(typeAttr) );
276ee533 1770 style.GetTextColour().GetRGBColor( &color );
6239ee05
SC
1771 typeAttr[typeAttrCount].tag = kTXNQDFontColorAttribute ;
1772 typeAttr[typeAttrCount].size = kTXNQDFontColorAttributeSize ;
1773 typeAttr[typeAttrCount].data.dataPtr = (void*) &color ;
1774 typeAttrCount++ ;
72055702 1775 }
31c1cbc7 1776
6239ee05
SC
1777 if ( style.HasAlignment() )
1778 {
1779 wxASSERT( controlAttrCount < WXSIZEOF(controlTags) );
1780 SInt32 align;
31c1cbc7 1781
6239ee05
SC
1782 switch ( style.GetAlignment() )
1783 {
1784 case wxTEXT_ALIGNMENT_LEFT:
1785 align = kTXNFlushLeft;
1786 break;
1787 case wxTEXT_ALIGNMENT_CENTRE:
1788 align = kTXNCenter;
1789 break;
1790 case wxTEXT_ALIGNMENT_RIGHT:
1791 align = kTXNFlushRight;
1792 break;
1793 case wxTEXT_ALIGNMENT_JUSTIFIED:
1794 align = kTXNFullJust;
31c1cbc7 1795 break;
6239ee05
SC
1796 default :
1797 case wxTEXT_ALIGNMENT_DEFAULT:
1798 align = kTXNFlushDefault;
1799 break;
1800 }
31c1cbc7 1801
6239ee05
SC
1802 controlTags[controlAttrCount] = kTXNJustificationTag ;
1803 controlData[controlAttrCount].sValue = align ;
1804 controlAttrCount++ ;
1805 }
1806
1807 if ( style.HasLeftIndent() || style.HasRightIndent() )
1808 {
1809 wxASSERT( controlAttrCount < WXSIZEOF(controlTags) );
1810 controlTags[controlAttrCount] = kTXNMarginsTag;
1811 controlData[controlAttrCount].marginsPtr = &margins;
1812 verify_noerr( TXNGetTXNObjectControls (m_txn, 1 ,
1813 &controlTags[controlAttrCount], &controlData[controlAttrCount]) );
1814 if ( style.HasLeftIndent() )
1815 {
31c1cbc7 1816 margins.leftMargin = wxConvertToTXN(style.GetLeftIndent());
6239ee05
SC
1817 }
1818 if ( style.HasRightIndent() )
1819 {
31c1cbc7 1820 margins.rightMargin = wxConvertToTXN(style.GetRightIndent());
6239ee05
SC
1821 }
1822 controlAttrCount++ ;
1823 }
31c1cbc7 1824
6239ee05
SC
1825 if ( style.HasTabs() )
1826 {
1827 const wxArrayInt& tabarray = style.GetTabs();
1828 // unfortunately Mac only applies a tab distance, not individually different tabs
1829 controlTags[controlAttrCount] = kTXNTabSettingsTag;
1830 if ( tabarray.size() > 0 )
31c1cbc7 1831 controlData[controlAttrCount].tabValue.value = wxConvertToTXN(tabarray[0]);
6239ee05 1832 else
31c1cbc7 1833 controlData[controlAttrCount].tabValue.value = 72 ;
fef981b4 1834
6239ee05
SC
1835 controlData[controlAttrCount].tabValue.tabType = kTXNLeftTab;
1836 controlAttrCount++ ;
1837 }
31c1cbc7 1838
6239ee05
SC
1839 // unfortunately the relayout is not automatic
1840 if ( controlAttrCount > 0 )
1841 {
1842 verify_noerr( TXNSetTXNObjectControls (m_txn, false /* don't clear all */, controlAttrCount,
1843 controlTags, controlData) );
1844 relayout = true;
1845 }
31c1cbc7 1846
6239ee05
SC
1847 if ( typeAttrCount > 0 )
1848 {
1849 verify_noerr( TXNSetTypeAttributes( m_txn , typeAttrCount, typeAttr, from , to ) );
1850 relayout = true;
1851 }
31c1cbc7 1852
6239ee05
SC
1853 if ( tabs != NULL )
1854 {
1855 delete[] tabs;
1856 }
31c1cbc7 1857
6239ee05 1858 if ( relayout )
8623a883 1859 {
09660720 1860 TXNRecalcTextLayout( m_txn );
8623a883 1861 }
72055702
SC
1862}
1863
89954433
VZ
1864void wxMacMLTEControl::SetFont(const wxFont & font,
1865 const wxColour& foreground,
1866 long WXUNUSED(windowStyle))
72055702 1867{
0207e969
DS
1868 wxMacEditHelper help( m_txn ) ;
1869 TXNSetAttribute( wxTextAttr( foreground, wxNullColour, font ), kTXNStartOffset, kTXNEndOffset ) ;
72055702 1870}
a8d2fb31 1871
0207e969 1872void wxMacMLTEControl::SetStyle( long start, long end, const wxTextAttr& style )
7d8268a1 1873{
0207e969
DS
1874 wxMacEditHelper help( m_txn ) ;
1875 TXNSetAttribute( style, start, end ) ;
7d8268a1
WS
1876}
1877
1878void wxMacMLTEControl::Copy()
5ca0d812 1879{
0207e969 1880 TXNCopy( m_txn );
72055702
SC
1881}
1882
7d8268a1 1883void wxMacMLTEControl::Cut()
3a9fa0d6 1884{
0207e969 1885 TXNCut( m_txn );
3a9fa0d6
VZ
1886}
1887
7d8268a1 1888void wxMacMLTEControl::Paste()
72055702 1889{
0207e969 1890 TXNPaste( m_txn );
72055702
SC
1891}
1892
5ca0d812 1893bool wxMacMLTEControl::CanPaste() const
72055702 1894{
5ca0d812 1895 return TXNIsScrapPastable() ;
72055702
SC
1896}
1897
7d8268a1 1898void wxMacMLTEControl::SetEditable(bool editable)
72055702 1899{
5ca0d812
SC
1900 TXNControlTag tag[] = { kTXNIOPrivilegesTag } ;
1901 TXNControlData data[] = { { editable ? kTXNReadWrite : kTXNReadOnly } } ;
c88b7d28 1902 TXNSetTXNObjectControls( m_txn, false, WXSIZEOF(tag), tag, data ) ;
5ca0d812 1903}
bd3169a7 1904
7d8268a1 1905wxTextPos wxMacMLTEControl::GetLastPosition() const
5ca0d812 1906{
7d8268a1 1907 wxTextPos actualsize = 0 ;
5ca0d812
SC
1908
1909 Handle theText ;
0207e969 1910 OSErr err = TXNGetDataEncoded( m_txn, kTXNStartOffset, kTXNEndOffset, &theText, kTXNTextData );
fef981b4
DS
1911
1912 // all done
1913 if ( err == noErr )
5ca0d812 1914 {
fef981b4
DS
1915 actualsize = GetHandleSize( theText ) ;
1916 DisposeHandle( theText ) ;
5ca0d812
SC
1917 }
1918 else
1919 {
fef981b4 1920 actualsize = 0 ;
5ca0d812
SC
1921 }
1922
1923 return actualsize ;
1924}
1925
44aa865d 1926void wxMacMLTEControl::Replace( long from , long to , const wxString &str )
5ca0d812
SC
1927{
1928 wxString value = str ;
395480fb 1929 wxMacConvertNewlines10To13( &value ) ;
5ca0d812 1930
5de694f0 1931 wxMacEditHelper help( m_txn ) ;
4f74e0d1 1932#ifndef __LP64__
0f7817ab 1933 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 1934#endif
5ca0d812 1935
7dbefc56 1936 TXNSetSelection( m_txn, from, to == -1 ? kTXNEndOffset : to ) ;
5ca0d812 1937 TXNClear( m_txn ) ;
0207e969 1938 SetTXNData( value, kTXNUseCurrentSelection, kTXNUseCurrentSelection ) ;
5ca0d812
SC
1939}
1940
1941void wxMacMLTEControl::Remove( long from , long to )
1942{
4f74e0d1 1943#ifndef __LP64__
0f7817ab 1944 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 1945#endif
5de694f0 1946 wxMacEditHelper help( m_txn ) ;
0207e969 1947 TXNSetSelection( m_txn , from , to ) ;
5ca0d812
SC
1948 TXNClear( m_txn ) ;
1949}
1950
1951void wxMacMLTEControl::GetSelection( long* from, long* to) const
1952{
6239ee05
SC
1953 TXNOffset f,t ;
1954 TXNGetSelection( m_txn , &f , &t ) ;
1955 *from = f;
1956 *to = t;
5ca0d812
SC
1957}
1958
7d8268a1 1959void wxMacMLTEControl::SetSelection( long from , long to )
5ca0d812 1960{
4f74e0d1 1961#ifndef __LP64__
0f7817ab 1962 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 1963#endif
fef981b4
DS
1964
1965 // change the selection
5ca0d812 1966 if ((from == -1) && (to == -1))
0207e969 1967 TXNSelectAll( m_txn );
5ca0d812 1968 else
7dbefc56 1969 TXNSetSelection( m_txn, from, to == -1 ? kTXNEndOffset : to );
0207e969 1970
fef981b4 1971 TXNShowSelection( m_txn, kTXNShowStart );
5ca0d812
SC
1972}
1973
c88b7d28 1974void wxMacMLTEControl::WriteText( const wxString& str )
5ca0d812 1975{
5ca0d812 1976 wxString st = str ;
395480fb 1977 wxMacConvertNewlines10To13( &st ) ;
5ca0d812
SC
1978
1979 long start , end , dummy ;
0207e969 1980
5ca0d812 1981 GetSelection( &start , &dummy ) ;
4f74e0d1 1982#ifndef __LP64__
5de694f0 1983 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 1984#endif
0207e969 1985
5de694f0
SC
1986 {
1987 wxMacEditHelper helper( m_txn ) ;
c88b7d28 1988 SetTXNData( st, kTXNUseCurrentSelection, kTXNUseCurrentSelection ) ;
5de694f0 1989 }
a8d2fb31 1990
c88b7d28 1991 GetSelection( &dummy, &end ) ;
fef981b4
DS
1992
1993 // TODO: SetStyle( start , end , GetDefaultStyle() ) ;
5ca0d812
SC
1994}
1995
7d8268a1 1996void wxMacMLTEControl::Clear()
5ca0d812 1997{
4f74e0d1 1998#ifndef __LP64__
0f7817ab 1999 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 2000#endif
0207e969 2001 wxMacEditHelper st( m_txn ) ;
5ca0d812 2002 TXNSetSelection( m_txn , kTXNStartOffset , kTXNEndOffset ) ;
c88b7d28 2003 TXNClear( m_txn ) ;
5ca0d812
SC
2004}
2005
7d8268a1 2006bool wxMacMLTEControl::CanUndo() const
5ca0d812
SC
2007{
2008 return TXNCanUndo( m_txn , NULL ) ;
2009}
2010
7d8268a1 2011void wxMacMLTEControl::Undo()
5ca0d812 2012{
7d8268a1
WS
2013 TXNUndo( m_txn ) ;
2014}
5ca0d812 2015
fef981b4 2016bool wxMacMLTEControl::CanRedo() const
5ca0d812
SC
2017{
2018 return TXNCanRedo( m_txn , NULL ) ;
7d8268a1 2019}
5ca0d812 2020
7d8268a1
WS
2021void wxMacMLTEControl::Redo()
2022{
5ca0d812
SC
2023 TXNRedo( m_txn ) ;
2024}
2025
7d8268a1 2026int wxMacMLTEControl::GetNumberOfLines() const
5ca0d812
SC
2027{
2028 ItemCount lines = 0 ;
fef981b4
DS
2029 TXNGetLineCount( m_txn, &lines ) ;
2030
5ca0d812
SC
2031 return lines ;
2032}
2033
2034long wxMacMLTEControl::XYToPosition(long x, long y) const
2035{
2036 Point curpt ;
fef981b4 2037 wxTextPos lastpos ;
7d8268a1 2038
fef981b4 2039 // TODO: find a better implementation : while we can get the
5ca0d812
SC
2040 // line metrics of a certain line, we don't get its starting
2041 // position, so it would probably be rather a binary search
2042 // for the start position
c88b7d28 2043 long xpos = 0, ypos = 0 ;
5ca0d812 2044 int lastHeight = 0 ;
5ca0d812 2045 ItemCount n ;
fef981b4
DS
2046
2047 lastpos = GetLastPosition() ;
ebe86b1e 2048 for ( n = 0 ; n <= (ItemCount) lastpos ; ++n )
bd3169a7
SC
2049 {
2050 if ( y == ypos && x == xpos )
2051 return n ;
7d8268a1 2052
ffafe6ca 2053 TXNOffsetToPoint( m_txn, n, &curpt ) ;
bd3169a7
SC
2054
2055 if ( curpt.v > lastHeight )
2056 {
2057 xpos = 0 ;
2058 if ( n > 0 )
2059 ++ypos ;
0207e969 2060
bd3169a7
SC
2061 lastHeight = curpt.v ;
2062 }
2063 else
2064 ++xpos ;
2065 }
a8d2fb31 2066
5ca0d812 2067 return 0 ;
72055702
SC
2068}
2069
c88b7d28 2070bool wxMacMLTEControl::PositionToXY( long pos, long *x, long *y ) const
72055702 2071{
bd3169a7 2072 Point curpt ;
fef981b4 2073 wxTextPos lastpos ;
7d8268a1 2074
fef981b4
DS
2075 if ( y )
2076 *y = 0 ;
2077 if ( x )
2078 *x = 0 ;
7d8268a1 2079
fef981b4 2080 lastpos = GetLastPosition() ;
bd3169a7
SC
2081 if ( pos <= lastpos )
2082 {
c88b7d28 2083 // TODO: find a better implementation - while we can get the
bd3169a7
SC
2084 // line metrics of a certain line, we don't get its starting
2085 // position, so it would probably be rather a binary search
2086 // for the start position
0207e969 2087 long xpos = 0, ypos = 0 ;
bd3169a7 2088 int lastHeight = 0 ;
bd3169a7 2089 ItemCount n ;
0207e969 2090
ebe86b1e 2091 for ( n = 0 ; n <= (ItemCount) pos ; ++n )
bd3169a7 2092 {
ffafe6ca 2093 TXNOffsetToPoint( m_txn, n, &curpt ) ;
bd3169a7
SC
2094
2095 if ( curpt.v > lastHeight )
2096 {
2097 xpos = 0 ;
2098 if ( n > 0 )
2099 ++ypos ;
0207e969 2100
bd3169a7
SC
2101 lastHeight = curpt.v ;
2102 }
2103 else
2104 ++xpos ;
2105 }
a8d2fb31 2106
fef981b4
DS
2107 if ( y )
2108 *y = ypos ;
2109 if ( x )
2110 *x = xpos ;
bd3169a7 2111 }
5ca0d812 2112
7d8268a1 2113 return false ;
72055702
SC
2114}
2115
7d8268a1 2116void wxMacMLTEControl::ShowPosition( long pos )
72055702 2117{
4f74e0d1
SC
2118 Point current, desired ;
2119 TXNOffset selstart, selend;
fef981b4 2120
4f74e0d1
SC
2121 TXNGetSelection( m_txn, &selstart, &selend );
2122 TXNOffsetToPoint( m_txn, selstart, &current );
2123 TXNOffsetToPoint( m_txn, pos, &desired );
fef981b4 2124
4f74e0d1
SC
2125 // TODO: use HIPoints for 10.3 and above
2126
2127 OSErr theErr = noErr;
2128 long dv = desired.v - current.v;
2129 long dh = desired.h - current.h;
2130 TXNShowSelection( m_txn, kTXNShowStart ) ; // NB: should this be kTXNShowStart or kTXNShowEnd ??
2131 theErr = TXNScroll( m_txn, kTXNScrollUnitsInPixels, kTXNScrollUnitsInPixels, &dv, &dh );
2132
2133 // there will be an error returned for classic MLTE implementation when the control is
2134 // invisible, but HITextView works correctly, so we don't assert that one
2135 // wxASSERT_MSG( theErr == noErr, _T("TXNScroll returned an error!") );
5ca0d812
SC
2136}
2137
fef981b4 2138void wxMacMLTEControl::SetTXNData( const wxString& st, TXNOffset start, TXNOffset end )
5ca0d812
SC
2139{
2140#if wxUSE_UNICODE
2141#if SIZEOF_WCHAR_T == 2
1832043f 2142 size_t len = st.length() ;
fef981b4 2143 TXNSetData( m_txn, kTXNUnicodeTextData, (void*)st.wc_str(), len * 2, start, end );
5ca0d812 2144#else
d9d488cf 2145 wxMBConvUTF16 converter ;
c88b7d28
DS
2146 ByteCount byteBufferLen = converter.WC2MB( NULL, st.wc_str(), 0 ) ;
2147 UniChar *unibuf = (UniChar*)malloc( byteBufferLen ) ;
fef981b4
DS
2148 converter.WC2MB( (char*)unibuf, st.wc_str(), byteBufferLen ) ;
2149 TXNSetData( m_txn, kTXNUnicodeTextData, (void*)unibuf, byteBufferLen, start, end ) ;
7d8268a1 2150 free( unibuf ) ;
587bc950 2151#endif
5ca0d812 2152#else
c88b7d28 2153 wxCharBuffer text = st.mb_str( wxConvLocal ) ;
fef981b4 2154 TXNSetData( m_txn, kTXNTextData, (void*)text.data(), strlen( text ), start, end ) ;
7d8268a1 2155#endif
72055702
SC
2156}
2157
5ca0d812 2158wxString wxMacMLTEControl::GetLineText(long lineNo) const
72055702 2159{
5ca0d812 2160 wxString line ;
5ca0d812 2161
bd3169a7 2162 if ( lineNo < GetNumberOfLines() )
32b5be3d 2163 {
fef981b4
DS
2164 Point firstPoint;
2165 Fixed lineWidth, lineHeight, currentHeight;
2166 long ypos ;
7d8268a1 2167
ae25e5cc 2168 // get the first possible position in the control
ae25e5cc 2169 TXNOffsetToPoint(m_txn, 0, &firstPoint);
7d8268a1 2170
ae25e5cc
RN
2171 // Iterate through the lines until we reach the one we want,
2172 // adding to our current y pixel point position
fef981b4
DS
2173 ypos = 0 ;
2174 currentHeight = 0;
ae25e5cc 2175 while (ypos < lineNo)
32b5be3d 2176 {
ae25e5cc
RN
2177 TXNGetLineMetrics(m_txn, ypos++, &lineWidth, &lineHeight);
2178 currentHeight += lineHeight;
2179 }
7d8268a1 2180
eab19a7c 2181 Point thePoint = { firstPoint.v + (currentHeight >> 16), firstPoint.h + (0) };
ae25e5cc
RN
2182 TXNOffset theOffset;
2183 TXNPointToOffset(m_txn, thePoint, &theOffset);
7d8268a1 2184
ae25e5cc
RN
2185 wxString content = GetStringValue() ;
2186 Point currentPoint = thePoint;
fef981b4 2187 while (thePoint.v == currentPoint.v && theOffset < content.length())
ae25e5cc
RN
2188 {
2189 line += content[theOffset];
2190 TXNOffsetToPoint(m_txn, ++theOffset, &currentPoint);
21fd5529 2191 }
21fd5529 2192 }
fef981b4 2193
5ca0d812 2194 return line ;
72055702
SC
2195}
2196
ffafe6ca 2197int wxMacMLTEControl::GetLineLength(long lineNo) const
72055702 2198{
ae25e5cc
RN
2199 int theLength = 0;
2200
bd3169a7 2201 if ( lineNo < GetNumberOfLines() )
32b5be3d 2202 {
fef981b4
DS
2203 Point firstPoint;
2204 Fixed lineWidth, lineHeight, currentHeight;
ffafe6ca 2205 long ypos;
7d8268a1 2206
ae25e5cc 2207 // get the first possible position in the control
ae25e5cc 2208 TXNOffsetToPoint(m_txn, 0, &firstPoint);
7d8268a1 2209
ae25e5cc
RN
2210 // Iterate through the lines until we reach the one we want,
2211 // adding to our current y pixel point position
fef981b4
DS
2212 ypos = 0;
2213 currentHeight = 0;
ae25e5cc 2214 while (ypos < lineNo)
32b5be3d 2215 {
ae25e5cc
RN
2216 TXNGetLineMetrics(m_txn, ypos++, &lineWidth, &lineHeight);
2217 currentHeight += lineHeight;
2218 }
7d8268a1 2219
eab19a7c 2220 Point thePoint = { firstPoint.v + (currentHeight >> 16), firstPoint.h + (0) };
ae25e5cc
RN
2221 TXNOffset theOffset;
2222 TXNPointToOffset(m_txn, thePoint, &theOffset);
7d8268a1 2223
ae25e5cc
RN
2224 wxString content = GetStringValue() ;
2225 Point currentPoint = thePoint;
fef981b4 2226 while (thePoint.v == currentPoint.v && theOffset < content.length())
ae25e5cc
RN
2227 {
2228 ++theLength;
2229 TXNOffsetToPoint(m_txn, ++theOffset, &currentPoint);
29e4a190 2230 }
29e4a190 2231 }
fef981b4 2232
ae25e5cc 2233 return theLength ;
5ca0d812 2234}
21fd5529 2235
6239ee05 2236#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
4f74e0d1 2237
5ca0d812
SC
2238// ----------------------------------------------------------------------------
2239// MLTE control implementation (classic part)
2240// ----------------------------------------------------------------------------
21fd5529 2241
5de694f0
SC
2242// OS X Notes : We still don't have a full replacement for MLTE, so this implementation
2243// has to live on. We have different problems coming from outdated implementations on the
2244// various OS X versions. Most deal with the scrollbars: they are not correctly embedded
2245// while this can be solved on 10.3 by reassigning them the correct place, on 10.2 there is
2246// no way out, therefore we are using our own implementation and our own scrollbars ....
5ca0d812 2247
5de694f0
SC
2248TXNScrollInfoUPP gTXNScrollInfoProc = NULL ;
2249ControlActionUPP gTXNScrollActionProc = NULL ;
0f7817ab 2250
fef981b4
DS
2251pascal void wxMacMLTEClassicControl::TXNScrollInfoProc(
2252 SInt32 iValue, SInt32 iMaximumValue,
0207e969 2253 TXNScrollBarOrientation iScrollBarOrientation, SInt32 iRefCon )
0f7817ab 2254{
5de694f0
SC
2255 wxMacMLTEClassicControl* mlte = (wxMacMLTEClassicControl*) iRefCon ;
2256 SInt32 value = wxMax( iValue , 0 ) ;
2257 SInt32 maximum = wxMax( iMaximumValue , 0 ) ;
3dee36ae 2258
5de694f0
SC
2259 if ( iScrollBarOrientation == kTXNHorizontal )
2260 {
2261 if ( mlte->m_sbHorizontal )
2262 {
2263 SetControl32BitValue( mlte->m_sbHorizontal , value ) ;
2264 SetControl32BitMaximum( mlte->m_sbHorizontal , maximum ) ;
2265 mlte->m_lastHorizontalValue = value ;
2266 }
2267 }
2268 else if ( iScrollBarOrientation == kTXNVertical )
5ca0d812 2269 {
5de694f0
SC
2270 if ( mlte->m_sbVertical )
2271 {
2272 SetControl32BitValue( mlte->m_sbVertical , value ) ;
2273 SetControl32BitMaximum( mlte->m_sbVertical , maximum ) ;
2274 mlte->m_lastVerticalValue = value ;
2275 }
72055702
SC
2276 }
2277}
2278
5de694f0 2279pascal void wxMacMLTEClassicControl::TXNScrollActionProc( ControlRef controlRef , ControlPartCode partCode )
72055702 2280{
5de694f0
SC
2281 wxMacMLTEClassicControl* mlte = (wxMacMLTEClassicControl*) GetControlReference( controlRef ) ;
2282 if ( mlte == NULL )
2283 return ;
3dee36ae 2284
5de694f0 2285 if ( controlRef != mlte->m_sbVertical && controlRef != mlte->m_sbHorizontal )
3dee36ae
WS
2286 return ;
2287
fef981b4 2288 OSStatus err ;
3dee36ae
WS
2289 bool isHorizontal = ( controlRef == mlte->m_sbHorizontal ) ;
2290
5de694f0
SC
2291 SInt32 minimum = 0 ;
2292 SInt32 maximum = GetControl32BitMaximum( controlRef ) ;
2293 SInt32 value = GetControl32BitValue( controlRef ) ;
2294 SInt32 delta = 0;
fef981b4 2295
5de694f0
SC
2296 switch ( partCode )
2297 {
2298 case kControlDownButtonPart :
2299 delta = 10 ;
2300 break ;
fef981b4 2301
5de694f0
SC
2302 case kControlUpButtonPart :
2303 delta = -10 ;
2304 break ;
fef981b4 2305
5de694f0
SC
2306 case kControlPageDownPart :
2307 delta = GetControlViewSize( controlRef ) ;
2308 break ;
fef981b4 2309
5de694f0 2310 case kControlPageUpPart :
fef981b4 2311 delta = -GetControlViewSize( controlRef ) ;
5de694f0 2312 break ;
fef981b4 2313
5de694f0 2314 case kControlIndicatorPart :
c88b7d28 2315 delta = value - (isHorizontal ? mlte->m_lastHorizontalValue : mlte->m_lastVerticalValue) ;
5de694f0 2316 break ;
fef981b4 2317
5de694f0
SC
2318 default :
2319 break ;
2320 }
fef981b4 2321
5de694f0 2322 if ( delta != 0 )
e600c175 2323 {
5de694f0 2324 SInt32 newValue = value ;
3dee36ae 2325
5de694f0
SC
2326 if ( partCode != kControlIndicatorPart )
2327 {
fef981b4 2328 if ( value + delta < minimum )
5de694f0
SC
2329 delta = minimum - value ;
2330 if ( value + delta > maximum )
2331 delta = maximum - value ;
2332
2333 SetControl32BitValue( controlRef , value + delta ) ;
2334 newValue = value + delta ;
2335 }
3dee36ae 2336
5de694f0
SC
2337 SInt32 verticalDelta = isHorizontal ? 0 : delta ;
2338 SInt32 horizontalDelta = isHorizontal ? delta : 0 ;
3dee36ae 2339
0207e969
DS
2340 err = TXNScroll(
2341 mlte->m_txn, kTXNScrollUnitsInPixels, kTXNScrollUnitsInPixels,
2342 &verticalDelta, &horizontalDelta );
ffafe6ca 2343 verify_noerr( err );
3dee36ae 2344
5de694f0
SC
2345 if ( isHorizontal )
2346 mlte->m_lastHorizontalValue = newValue ;
2347 else
2348 mlte->m_lastVerticalValue = newValue ;
5ca0d812 2349 }
5ca0d812 2350}
7d8268a1 2351
0f7817ab 2352// make correct activations
fef981b4 2353void wxMacMLTEClassicControl::MacActivatePaneText(bool setActive)
0f7817ab
SC
2354{
2355 wxTextCtrl* textctrl = (wxTextCtrl*) GetControlReference(m_controlRef);
ef4a634b 2356
5de694f0 2357 wxMacWindowClipper clipper( textctrl ) ;
c88b7d28 2358 TXNActivate( m_txn, m_txnFrameID, setActive );
0f7817ab 2359
5de694f0
SC
2360 ControlRef controlFocus = 0 ;
2361 GetKeyboardFocus( m_txnWindow , &controlFocus ) ;
2362 if ( controlFocus == m_controlRef )
fef981b4 2363 TXNFocus( m_txn, setActive );
5de694f0
SC
2364}
2365
fef981b4 2366void wxMacMLTEClassicControl::MacFocusPaneText(bool setFocus)
5de694f0 2367{
0207e969 2368 TXNFocus( m_txn, setFocus );
5ca0d812 2369}
1fa29bdc 2370
3dee36ae 2371// guards against inappropriate redraw (hidden objects drawing onto window)
0f7817ab 2372
fef981b4 2373void wxMacMLTEClassicControl::MacSetObjectVisibility(bool vis)
0f7817ab 2374{
789ae0cf
SC
2375 ControlRef controlFocus = 0 ;
2376 GetKeyboardFocus( m_txnWindow , &controlFocus ) ;
3dee36ae 2377
fef981b4 2378 if ( !vis && (controlFocus == m_controlRef ) )
789ae0cf 2379 SetKeyboardFocus( m_txnWindow , m_controlRef , kControlFocusNoPart ) ;
3dee36ae 2380
4611a719 2381 TXNControlTag iControlTags[1] = { kTXNVisibilityTag };
c88b7d28 2382 TXNControlData iControlData[1] = { { (UInt32)false } };
bd2213c2 2383
fef981b4 2384 verify_noerr( TXNGetTXNObjectControls( m_txn , 1, iControlTags, iControlData ) ) ;
3dee36ae 2385
bd2213c2
SC
2386 if ( iControlData[0].uValue != vis )
2387 {
2388 iControlData[0].uValue = vis ;
0207e969 2389 verify_noerr( TXNSetTXNObjectControls( m_txn, false , 1, iControlTags, iControlData ) ) ;
bd2213c2 2390 }
fef981b4 2391
0207e969
DS
2392 // currently, we always clip as partial visibility (overlapped) visibility is also a problem,
2393 // if we run into further problems we might set the FrameBounds to an empty rect here
5ca0d812 2394}
1fa29bdc 2395
0f7817ab 2396// make sure that the TXNObject is at the right position
5de694f0 2397
3dee36ae 2398void wxMacMLTEClassicControl::MacUpdatePosition()
0f7817ab 2399{
c88b7d28 2400 wxTextCtrl* textctrl = (wxTextCtrl*)GetControlReference( m_controlRef );
0f7817ab
SC
2401 if ( textctrl == NULL )
2402 return ;
7d8268a1 2403
0f7817ab 2404 Rect bounds ;
c88b7d28 2405 UMAGetControlBoundsInWindowCoords( m_controlRef, &bounds );
3dee36ae 2406
ba75e603
SC
2407 wxRect visRect = textctrl->MacGetClippedClientRect() ;
2408 Rect visBounds = { visRect.y , visRect.x , visRect.y + visRect.height , visRect.x + visRect.width } ;
2409 int x , y ;
2410 x = y = 0 ;
2411 textctrl->MacWindowToRootWindow( &x , &y ) ;
2412 OffsetRect( &visBounds , x , y ) ;
3dee36ae 2413
c88b7d28 2414 if ( !EqualRect( &bounds, &m_txnControlBounds ) || !EqualRect( &visBounds, &m_txnVisBounds ) )
0f7817ab 2415 {
0f7817ab 2416 m_txnControlBounds = bounds ;
ba75e603 2417 m_txnVisBounds = visBounds ;
c88b7d28 2418 wxMacWindowClipper cl( textctrl ) ;
5de694f0 2419
4e477040
SC
2420 if ( m_sbHorizontal || m_sbVertical )
2421 {
5de694f0
SC
2422 int w = bounds.right - bounds.left ;
2423 int h = bounds.bottom - bounds.top ;
4e477040
SC
2424
2425 if ( m_sbHorizontal )
2426 {
2427 Rect sbBounds ;
5de694f0 2428
4e477040 2429 sbBounds.left = -1 ;
5de694f0
SC
2430 sbBounds.top = h - 14 ;
2431 sbBounds.right = w + 1 ;
2432 sbBounds.bottom = h + 1 ;
3dee36ae 2433
4e477040 2434 SetControlBounds( m_sbHorizontal , &sbBounds ) ;
5de694f0 2435 SetControlViewSize( m_sbHorizontal , w ) ;
4e477040 2436 }
0207e969 2437
4e477040
SC
2438 if ( m_sbVertical )
2439 {
2440 Rect sbBounds ;
5de694f0
SC
2441
2442 sbBounds.left = w - 14 ;
4e477040 2443 sbBounds.top = -1 ;
5de694f0 2444 sbBounds.right = w + 1 ;
fef981b4 2445 sbBounds.bottom = m_sbHorizontal ? h - 14 : h + 1 ;
3dee36ae 2446
4e477040 2447 SetControlBounds( m_sbVertical , &sbBounds ) ;
5de694f0 2448 SetControlViewSize( m_sbVertical , h ) ;
4e477040
SC
2449 }
2450 }
3dee36ae 2451
c447d5a9
SC
2452 Rect oldviewRect ;
2453 TXNLongRect olddestRect ;
2454 TXNGetRectBounds( m_txn , &oldviewRect , &olddestRect , NULL ) ;
3dee36ae 2455
c447d5a9 2456 Rect viewRect = { m_txnControlBounds.top, m_txnControlBounds.left,
fef981b4
DS
2457 m_txnControlBounds.bottom - ( m_sbHorizontal ? 14 : 0 ) ,
2458 m_txnControlBounds.right - ( m_sbVertical ? 14 : 0 ) } ;
c447d5a9 2459 TXNLongRect destRect = { m_txnControlBounds.top, m_txnControlBounds.left,
fef981b4
DS
2460 m_txnControlBounds.bottom - ( m_sbHorizontal ? 14 : 0 ) ,
2461 m_txnControlBounds.right - ( m_sbVertical ? 14 : 0 ) } ;
3dee36ae 2462
c447d5a9
SC
2463 if ( olddestRect.right >= 10000 )
2464 destRect.right = destRect.left + 32000 ;
3dee36ae 2465
c447d5a9
SC
2466 if ( olddestRect.bottom >= 0x20000000 )
2467 destRect.bottom = destRect.top + 0x40000000 ;
3dee36ae
WS
2468
2469 SectRect( &viewRect , &visBounds , &viewRect ) ;
823c4e96 2470 TXNSetRectBounds( m_txn , &viewRect , &destRect , true ) ;
fef981b4
DS
2471
2472#if 0
2473 TXNSetFrameBounds(
2474 m_txn,
2475 m_txnControlBounds.top,
2476 m_txnControlBounds.left,
2477 m_txnControlBounds.bottom - (m_sbHorizontal ? 14 : 0),
2478 m_txnControlBounds.right - (m_sbVertical ? 14 : 0),
2479 m_txnFrameID );
2480#endif
c88b7d28
DS
2481
2482 // the SetFrameBounds method under Classic sometimes does not correctly scroll a selection into sight after a
5de694f0
SC
2483 // movement, therefore we have to force it
2484
fef981b4 2485 // this problem has been reported in OSX as well, so we use this here once again
0207e969 2486
5de694f0 2487 TXNLongRect textRect ;
3dee36ae 2488 TXNGetRectBounds( m_txn , NULL , NULL , &textRect ) ;
5de694f0 2489 if ( textRect.left < m_txnControlBounds.left )
fef981b4 2490 TXNShowSelection( m_txn , kTXNShowStart ) ;
e600c175 2491 }
5ca0d812
SC
2492}
2493
3dee36ae 2494void wxMacMLTEClassicControl::SetRect( Rect *r )
0f7817ab
SC
2495{
2496 wxMacControl::SetRect( r ) ;
2497 MacUpdatePosition() ;
2498}
2499
89954433 2500void wxMacMLTEClassicControl::MacControlUserPaneDrawProc(wxInt16 WXUNUSED(thePart))
24260aae 2501{
c88b7d28 2502 wxTextCtrl* textctrl = (wxTextCtrl*)GetControlReference( m_controlRef );
5ca0d812 2503 if ( textctrl == NULL )
e600c175 2504 return ;
7d8268a1 2505
5ca0d812
SC
2506 if ( textctrl->MacIsReallyShown() )
2507 {
2508 wxMacWindowClipper clipper( textctrl ) ;
0f7817ab 2509 TXNDraw( m_txn , NULL ) ;
e600c175 2510 }
5ca0d812
SC
2511}
2512
3dee36ae 2513wxInt16 wxMacMLTEClassicControl::MacControlUserPaneHitTestProc(wxInt16 x, wxInt16 y)
24260aae
SC
2514{
2515 Point where = { y , x } ;
a8d2fb31 2516 ControlPartCode result = kControlNoPart;
5de694f0 2517
0207e969 2518 wxTextCtrl* textctrl = (wxTextCtrl*) GetControlReference( m_controlRef );
a8d2fb31 2519 if ( (textctrl != NULL) && textctrl->MacIsReallyShown() )
72055702 2520 {
fef981b4
DS
2521 if (PtInRect( where, &m_txnControlBounds ))
2522 {
5de694f0 2523 result = kControlEditTextPart ;
fef981b4 2524 }
7d8268a1 2525 else
3556e470
SC
2526 {
2527 // sometimes we get the coords also in control local coordinates, therefore test again
ab346e1c
VZ
2528 int x = 0 , y = 0 ;
2529 textctrl->MacClientToRootWindow( &x , &y ) ;
2530 where.h += x ;
2531 where.v += y ;
fef981b4 2532
0207e969 2533 if (PtInRect( where, &m_txnControlBounds ))
5de694f0 2534 result = kControlEditTextPart ;
3556e470 2535 }
5ca0d812 2536 }
a8d2fb31 2537
5ca0d812
SC
2538 return result;
2539}
2540
89954433 2541wxInt16 wxMacMLTEClassicControl::MacControlUserPaneTrackingProc( wxInt16 x, wxInt16 y, void* WXUNUSED(actionProc) )
24260aae 2542{
a8d2fb31 2543 ControlPartCode result = kControlNoPart;
5de694f0 2544
0207e969 2545 wxTextCtrl* textctrl = (wxTextCtrl*) GetControlReference( m_controlRef );
a8d2fb31 2546 if ( (textctrl != NULL) && textctrl->MacIsReallyShown() )
7d8268a1 2547 {
a8d2fb31 2548 Point startPt = { y , x } ;
ab346e1c 2549
5ca0d812 2550 // for compositing, we must convert these into toplevel window coordinates, because hittesting expects them
ab346e1c
VZ
2551 int x = 0 , y = 0 ;
2552 textctrl->MacClientToRootWindow( &x , &y ) ;
2553 startPt.h += x ;
2554 startPt.v += y ;
7d8268a1 2555
24260aae 2556 switch (MacControlUserPaneHitTestProc( startPt.h , startPt.v ))
5ca0d812 2557 {
5de694f0 2558 case kControlEditTextPart :
7d8268a1
WS
2559 {
2560 wxMacWindowClipper clipper( textctrl ) ;
7d8268a1 2561 EventRecord rec ;
c88b7d28 2562
7d8268a1 2563 ConvertEventRefToEventRecord( (EventRef) wxTheApp->MacGetCurrentEvent() , &rec ) ;
24260aae 2564 TXNClick( m_txn, &rec );
7d8268a1 2565 }
fef981b4 2566 break;
a8d2fb31 2567
fef981b4
DS
2568 default :
2569 break;
5ca0d812
SC
2570 }
2571 }
a8d2fb31
DS
2572
2573 return result;
5ca0d812
SC
2574}
2575
3dee36ae 2576void wxMacMLTEClassicControl::MacControlUserPaneIdleProc()
24260aae 2577{
c88b7d28 2578 wxTextCtrl* textctrl = (wxTextCtrl*)GetControlReference( m_controlRef );
5ca0d812
SC
2579 if ( textctrl == NULL )
2580 return ;
24260aae 2581
3dee36ae 2582 if (textctrl->MacIsReallyShown())
24260aae 2583 {
3dee36ae 2584 if (IsControlActive(m_controlRef))
24260aae 2585 {
5ca0d812 2586 Point mousep;
7d8268a1 2587
5ca0d812
SC
2588 wxMacWindowClipper clipper( textctrl ) ;
2589 GetMouse(&mousep);
5de694f0
SC
2590
2591 TXNIdle(m_txn);
2592
3dee36ae 2593 if (PtInRect(mousep, &m_txnControlBounds))
24260aae 2594 {
fef981b4
DS
2595 RgnHandle theRgn = NewRgn();
2596 RectRgn(theRgn, &m_txnControlBounds);
5de694f0
SC
2597 TXNAdjustCursor(m_txn, theRgn);
2598 DisposeRgn(theRgn);
72055702 2599 }
5ca0d812
SC
2600 }
2601 }
2602}
72055702 2603
3dee36ae 2604wxInt16 wxMacMLTEClassicControl::MacControlUserPaneKeyDownProc (wxInt16 keyCode, wxInt16 charCode, wxInt16 modifiers)
24260aae 2605{
c88b7d28 2606 wxTextCtrl* textctrl = (wxTextCtrl*)GetControlReference( m_controlRef );
5ca0d812 2607 if ( textctrl == NULL )
a8d2fb31 2608 return kControlNoPart;
7d8268a1 2609
5de694f0 2610 wxMacWindowClipper clipper( textctrl ) ;
ef4a634b 2611
5de694f0
SC
2612 EventRecord ev ;
2613 memset( &ev , 0 , sizeof( ev ) ) ;
2614 ev.what = keyDown ;
2615 ev.modifiers = modifiers ;
fef981b4
DS
2616 ev.message = ((keyCode << 8) & keyCodeMask) | (charCode & charCodeMask);
2617 TXNKeyDown( m_txn , &ev );
3dee36ae 2618
5de694f0
SC
2619 return kControlEntireControl;
2620}
24260aae 2621
c88b7d28 2622void wxMacMLTEClassicControl::MacControlUserPaneActivateProc(bool activating)
24260aae 2623{
5de694f0 2624 MacActivatePaneText( activating );
72055702
SC
2625}
2626
3dee36ae 2627wxInt16 wxMacMLTEClassicControl::MacControlUserPaneFocusProc(wxInt16 action)
24260aae 2628{
c88b7d28 2629 ControlPartCode focusResult = kControlFocusNoPart;
7d8268a1 2630
c88b7d28 2631 wxTextCtrl* textctrl = (wxTextCtrl*)GetControlReference( m_controlRef );
5ca0d812 2632 if ( textctrl == NULL )
c88b7d28 2633 return focusResult;
0f7817ab
SC
2634
2635 wxMacWindowClipper clipper( textctrl ) ;
3dee36ae 2636
a8d2fb31 2637 ControlRef controlFocus = NULL ;
5de694f0
SC
2638 GetKeyboardFocus( m_txnWindow , &controlFocus ) ;
2639 bool wasFocused = ( controlFocus == m_controlRef ) ;
2640
3dee36ae 2641 switch (action)
24260aae 2642 {
5de694f0
SC
2643 case kControlFocusPrevPart:
2644 case kControlFocusNextPart:
0207e969
DS
2645 MacFocusPaneText( !wasFocused );
2646 focusResult = (!wasFocused ? (ControlPartCode) kControlEditTextPart : (ControlPartCode) kControlFocusNoPart);
5de694f0 2647 break;
3dee36ae 2648
5ca0d812 2649 case kControlFocusNoPart:
5de694f0 2650 default:
a8d2fb31 2651 MacFocusPaneText( false );
5ca0d812
SC
2652 focusResult = kControlFocusNoPart;
2653 break;
5ca0d812 2654 }
0f7817ab 2655
5ca0d812 2656 return focusResult;
72055702
SC
2657}
2658
89954433 2659void wxMacMLTEClassicControl::MacControlUserPaneBackgroundProc( void *WXUNUSED(info) )
24260aae
SC
2660{
2661}
2662
0f7817ab 2663wxMacMLTEClassicControl::wxMacMLTEClassicControl( wxTextCtrl *wxPeer,
ffafe6ca
DS
2664 const wxString& str,
2665 const wxPoint& pos,
2666 const wxSize& size, long style )
2667 : wxMacMLTEControl( wxPeer )
72055702 2668{
5ca0d812
SC
2669 m_font = wxPeer->GetFont() ;
2670 m_windowStyle = style ;
7d8268a1 2671 Rect bounds = wxMacGetBoundsForControl( wxPeer , pos , size ) ;
72055702 2672
c88b7d28 2673 short featureSet =
0207e969
DS
2674 kControlSupportsEmbedding | kControlSupportsFocus | kControlWantsIdle
2675 | kControlWantsActivate | kControlHandlesTracking
2676// | kControlHasSpecialBackground
2677 | kControlGetsFocusOnClick | kControlSupportsLiveFeedback;
72055702 2678
ffafe6ca
DS
2679 OSStatus err = ::CreateUserPaneControl(
2680 MAC_WXHWND(wxPeer->GetParent()->MacGetTopLevelWindowRef()),
2681 &bounds, featureSet, &m_controlRef );
2682 verify_noerr( err );
7d8268a1 2683
0f7817ab 2684 DoCreate();
7d8268a1 2685
a8d2fb31 2686 AdjustCreationAttributes( *wxWHITE , true ) ;
5ca0d812 2687
bd2213c2
SC
2688 MacSetObjectVisibility( wxPeer->MacIsReallyShown() ) ;
2689
24eef584
SC
2690 {
2691 wxString st = str ;
2692 wxMacConvertNewlines10To13( &st ) ;
2693 wxMacWindowClipper clipper( m_peer ) ;
2694 SetTXNData( st , kTXNStartOffset, kTXNEndOffset ) ;
0207e969 2695 TXNSetSelection( m_txn, 0, 0 ) ;
24eef584 2696 }
72055702
SC
2697}
2698
5ca0d812 2699wxMacMLTEClassicControl::~wxMacMLTEClassicControl()
72055702 2700{
0207e969 2701 TXNDeleteObject( m_txn );
5de694f0 2702 m_txn = NULL ;
72055702
SC
2703}
2704
7d8268a1 2705void wxMacMLTEClassicControl::VisibilityChanged(bool shown)
72055702 2706{
0f7817ab 2707 MacSetObjectVisibility( shown ) ;
4e477040
SC
2708 wxMacControl::VisibilityChanged( shown ) ;
2709}
2710
2711void wxMacMLTEClassicControl::SuperChangedPosition()
2712{
2713 MacUpdatePosition() ;
2714 wxMacControl::SuperChangedPosition() ;
72055702
SC
2715}
2716
5de694f0
SC
2717ControlUserPaneDrawUPP gTPDrawProc = NULL;
2718ControlUserPaneHitTestUPP gTPHitProc = NULL;
2719ControlUserPaneTrackingUPP gTPTrackProc = NULL;
2720ControlUserPaneIdleUPP gTPIdleProc = NULL;
2721ControlUserPaneKeyDownUPP gTPKeyProc = NULL;
2722ControlUserPaneActivateUPP gTPActivateProc = NULL;
2723ControlUserPaneFocusUPP gTPFocusProc = NULL;
2724
24260aae
SC
2725static pascal void wxMacControlUserPaneDrawProc(ControlRef control, SInt16 part)
2726{
2727 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2728 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2729 if ( win )
ffafe6ca 2730 win->MacControlUserPaneDrawProc( part ) ;
24260aae
SC
2731}
2732
c7fe80e2 2733static pascal ControlPartCode wxMacControlUserPaneHitTestProc(ControlRef control, Point where)
24260aae
SC
2734{
2735 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2736 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2737 if ( win )
ffafe6ca 2738 return win->MacControlUserPaneHitTestProc( where.h , where.v ) ;
24260aae
SC
2739 else
2740 return kControlNoPart ;
2741}
2742
c7fe80e2 2743static pascal ControlPartCode wxMacControlUserPaneTrackingProc(ControlRef control, Point startPt, ControlActionUPP actionProc)
24260aae
SC
2744{
2745 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2746 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2747 if ( win )
ffafe6ca 2748 return win->MacControlUserPaneTrackingProc( startPt.h , startPt.v , (void*) actionProc ) ;
24260aae
SC
2749 else
2750 return kControlNoPart ;
2751}
2752
2753static pascal void wxMacControlUserPaneIdleProc(ControlRef control)
2754{
2755 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2756 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae
SC
2757 if ( win )
2758 win->MacControlUserPaneIdleProc() ;
2759}
2760
2761static pascal ControlPartCode wxMacControlUserPaneKeyDownProc(ControlRef control, SInt16 keyCode, SInt16 charCode, SInt16 modifiers)
2762{
2763 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2764 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2765 if ( win )
ffafe6ca 2766 return win->MacControlUserPaneKeyDownProc( keyCode, charCode, modifiers ) ;
24260aae
SC
2767 else
2768 return kControlNoPart ;
2769}
2770
2771static pascal void wxMacControlUserPaneActivateProc(ControlRef control, Boolean activating)
2772{
2773 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2774 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2775 if ( win )
ffafe6ca 2776 win->MacControlUserPaneActivateProc( activating ) ;
24260aae
SC
2777}
2778
2779static pascal ControlPartCode wxMacControlUserPaneFocusProc(ControlRef control, ControlFocusPart action)
2780{
2781 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2782 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae 2783 if ( win )
ffafe6ca 2784 return win->MacControlUserPaneFocusProc( action ) ;
24260aae
SC
2785 else
2786 return kControlNoPart ;
2787}
2788
fef981b4 2789#if 0
24260aae
SC
2790static pascal void wxMacControlUserPaneBackgroundProc(ControlRef control, ControlBackgroundPtr info)
2791{
2792 wxTextCtrl *textCtrl = wxDynamicCast( wxFindControlFromMacControl(control) , wxTextCtrl ) ;
bc8f7aee 2793 wxMacMLTEClassicControl * win = textCtrl ? (wxMacMLTEClassicControl*)(textCtrl->GetPeer()) : NULL ;
24260aae
SC
2794 if ( win )
2795 win->MacControlUserPaneBackgroundProc(info) ;
2796}
2797#endif
2798
5de694f0
SC
2799// TXNRegisterScrollInfoProc
2800
5ca0d812 2801OSStatus wxMacMLTEClassicControl::DoCreate()
2b5f62a0 2802{
5ca0d812 2803 Rect bounds;
5ca0d812 2804 OSStatus err = noErr ;
7d8268a1 2805
fef981b4 2806 // set up our globals
24260aae
SC
2807 if (gTPDrawProc == NULL) gTPDrawProc = NewControlUserPaneDrawUPP(wxMacControlUserPaneDrawProc);
2808 if (gTPHitProc == NULL) gTPHitProc = NewControlUserPaneHitTestUPP(wxMacControlUserPaneHitTestProc);
2809 if (gTPTrackProc == NULL) gTPTrackProc = NewControlUserPaneTrackingUPP(wxMacControlUserPaneTrackingProc);
2810 if (gTPIdleProc == NULL) gTPIdleProc = NewControlUserPaneIdleUPP(wxMacControlUserPaneIdleProc);
2811 if (gTPKeyProc == NULL) gTPKeyProc = NewControlUserPaneKeyDownUPP(wxMacControlUserPaneKeyDownProc);
2812 if (gTPActivateProc == NULL) gTPActivateProc = NewControlUserPaneActivateUPP(wxMacControlUserPaneActivateProc);
2813 if (gTPFocusProc == NULL) gTPFocusProc = NewControlUserPaneFocusUPP(wxMacControlUserPaneFocusProc);
5de694f0
SC
2814
2815 if (gTXNScrollInfoProc == NULL ) gTXNScrollInfoProc = NewTXNScrollInfoUPP(TXNScrollInfoProc) ;
2816 if (gTXNScrollActionProc == NULL ) gTXNScrollActionProc = NewControlActionUPP(TXNScrollActionProc) ;
7d8268a1 2817
fef981b4 2818 // set the initial settings for our private data
7d8268a1 2819
a8d2fb31 2820 m_txnWindow = GetControlOwner(m_controlRef);
5de694f0 2821 m_txnPort = (GrafPtr) GetWindowPort(m_txnWindow);
7d8268a1 2822
fef981b4 2823 // set up the user pane procedures
5ca0d812
SC
2824 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneDrawProcTag, sizeof(gTPDrawProc), &gTPDrawProc);
2825 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneHitTestProcTag, sizeof(gTPHitProc), &gTPHitProc);
2826 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneTrackingProcTag, sizeof(gTPTrackProc), &gTPTrackProc);
2827 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneIdleProcTag, sizeof(gTPIdleProc), &gTPIdleProc);
2828 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneKeyDownProcTag, sizeof(gTPKeyProc), &gTPKeyProc);
2829 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneActivateProcTag, sizeof(gTPActivateProc), &gTPActivateProc);
2830 SetControlData(m_controlRef, kControlEntireControl, kControlUserPaneFocusProcTag, sizeof(gTPFocusProc), &gTPFocusProc);
c88b7d28 2831
fef981b4 2832 // calculate the rectangles used by the control
c88b7d28 2833 UMAGetControlBoundsInWindowCoords( m_controlRef, &bounds );
3dee36ae 2834
0f7817ab 2835 m_txnControlBounds = bounds ;
ba75e603 2836 m_txnVisBounds = bounds ;
3dee36ae 2837
fef981b4
DS
2838 CGrafPtr origPort ;
2839 GDHandle origDev ;
7d8268a1 2840
c88b7d28 2841 GetGWorld( &origPort, &origDev ) ;
fef981b4 2842 SetPort( m_txnPort );
7d8268a1 2843
fef981b4 2844 // create the new edit field
c88b7d28 2845 TXNFrameOptions frameOptions = FrameOptionsFromWXStyle( m_windowStyle );
7d8268a1 2846
fef981b4
DS
2847 // the scrollbars are not correctly embedded but are inserted at the root:
2848 // this gives us problems as we have erratic redraws even over the structure area
4e477040 2849
5de694f0
SC
2850 m_sbHorizontal = 0 ;
2851 m_sbVertical = 0 ;
2852 m_lastHorizontalValue = 0 ;
2853 m_lastVerticalValue = 0 ;
3dee36ae 2854
5de694f0
SC
2855 Rect sb = { 0 , 0 , 0 , 0 } ;
2856 if ( frameOptions & kTXNWantVScrollBarMask )
2857 {
c88b7d28
DS
2858 CreateScrollBarControl( m_txnWindow, &sb, 0, 0, 100, 1, true, gTXNScrollActionProc, &m_sbVertical );
2859 SetControlReference( m_sbVertical, (SInt32)this );
5de694f0 2860 SetControlAction( m_sbVertical, gTXNScrollActionProc );
c88b7d28
DS
2861 ShowControl( m_sbVertical );
2862 EmbedControl( m_sbVertical , m_controlRef );
2863 frameOptions &= ~kTXNWantVScrollBarMask;
5de694f0 2864 }
fef981b4 2865
5de694f0
SC
2866 if ( frameOptions & kTXNWantHScrollBarMask )
2867 {
c88b7d28
DS
2868 CreateScrollBarControl( m_txnWindow, &sb, 0, 0, 100, 1, true, gTXNScrollActionProc, &m_sbHorizontal );
2869 SetControlReference( m_sbHorizontal, (SInt32)this );
5de694f0 2870 SetControlAction( m_sbHorizontal, gTXNScrollActionProc );
c88b7d28
DS
2871 ShowControl( m_sbHorizontal );
2872 EmbedControl( m_sbHorizontal, m_controlRef );
5de694f0
SC
2873 frameOptions &= ~(kTXNWantHScrollBarMask | kTXNDrawGrowIconMask);
2874 }
4e477040 2875
ffafe6ca
DS
2876 err = TXNNewObject(
2877 NULL, m_txnWindow, &bounds, frameOptions,
2878 kTXNTextEditStyleFrameType, kTXNTextensionFile, kTXNSystemDefaultEncoding,
2879 &m_txn, &m_txnFrameID, NULL );
2880 verify_noerr( err );
3dee36ae 2881
fef981b4
DS
2882#if 0
2883 TXNControlTag iControlTags[] = { kTXNUseCarbonEvents };
c88b7d28 2884 TXNControlData iControlData[] = { { (UInt32)&cInfo } };
fef981b4
DS
2885 int toptag = WXSIZEOF( iControlTags ) ;
2886 TXNCarbonEventInfo cInfo ;
55d0b180
SC
2887 cInfo.useCarbonEvents = false ;
2888 cInfo.filler = 0 ;
2889 cInfo.flags = 0 ;
2890 cInfo.fDictionary = NULL ;
2891
c88b7d28 2892 verify_noerr( TXNSetTXNObjectControls( m_txn, false, toptag, iControlTags, iControlData ) );
fef981b4 2893#endif
55d0b180 2894
c88b7d28 2895 TXNRegisterScrollInfoProc( m_txn, gTXNScrollInfoProc, (SInt32)this );
4e477040 2896
0f7817ab 2897 SetGWorld( origPort , origDev ) ;
ffafe6ca 2898
5ca0d812 2899 return err;
facd6764 2900}
4f74e0d1 2901#endif
facd6764 2902
5ca0d812
SC
2903// ----------------------------------------------------------------------------
2904// MLTE control implementation (OSX part)
2905// ----------------------------------------------------------------------------
facd6764 2906
09660720 2907// tiger multi-line textcontrols with no CR in the entire content
9eddec69 2908// don't scroll automatically, so we need a hack.
09660720
SC
2909// This attempt only works 'before' the key (ie before CallNextEventHandler)
2910// is processed, thus the scrolling always occurs one character too late, but
2911// better than nothing ...
2912
2913static const EventTypeSpec eventList[] =
2914{
2915 { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
2916} ;
9eddec69 2917
09660720
SC
2918static pascal OSStatus wxMacUnicodeTextEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
2919{
2920 OSStatus result = eventNotHandledErr ;
2921 wxMacMLTEHIViewControl* focus = (wxMacMLTEHIViewControl*) data ;
9eddec69 2922
09660720
SC
2923 switch ( GetEventKind( event ) )
2924 {
2925 case kEventTextInputUnicodeForKeyEvent :
2926 {
d8f3e9da
SC
2927 TXNOffset from , to ;
2928 TXNGetSelection( focus->GetTXNObject() , &from , &to ) ;
2929 if ( from == to )
2930 TXNShowSelection( focus->GetTXNObject() , kTXNShowStart );
09660720
SC
2931 result = CallNextEventHandler(handler,event);
2932 break;
2933 }
2934 default:
2935 break ;
2936 }
9eddec69 2937
09660720
SC
2938 return result ;
2939}
2940
2941static pascal OSStatus wxMacTextControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
2942{
2943 OSStatus result = eventNotHandledErr ;
9eddec69 2944
09660720
SC
2945 switch ( GetEventClass( event ) )
2946 {
2947 case kEventClassTextInput :
2948 result = wxMacUnicodeTextEventHandler( handler , event , data ) ;
2949 break ;
9eddec69 2950
09660720
SC
2951 default :
2952 break ;
2953 }
2954 return result ;
2955}
2956
2957DEFINE_ONE_SHOT_HANDLER_GETTER( wxMacTextControlEventHandler )
2958
0f7817ab 2959wxMacMLTEHIViewControl::wxMacMLTEHIViewControl( wxTextCtrl *wxPeer,
ffafe6ca
DS
2960 const wxString& str,
2961 const wxPoint& pos,
2962 const wxSize& size, long style ) : wxMacMLTEControl( wxPeer )
facd6764 2963{
5ca0d812
SC
2964 m_font = wxPeer->GetFont() ;
2965 m_windowStyle = style ;
7d8268a1 2966 Rect bounds = wxMacGetBoundsForControl( wxPeer , pos , size ) ;
5ca0d812 2967 wxString st = str ;
395480fb 2968 wxMacConvertNewlines10To13( &st ) ;
7d8268a1 2969
ffafe6ca
DS
2970 HIRect hr = {
2971 { bounds.left , bounds.top },
2972 { bounds.right - bounds.left, bounds.bottom - bounds.top } } ;
facd6764 2973
5ca0d812
SC
2974 m_scrollView = NULL ;
2975 TXNFrameOptions frameOptions = FrameOptionsFromWXStyle( style ) ;
6cfe4844 2976 if (( frameOptions & (kTXNWantVScrollBarMask | kTXNWantHScrollBarMask)) || !(frameOptions &kTXNSingleLineOnlyMask))
5ca0d812 2977 {
6cfe4844
SC
2978 if ( frameOptions & (kTXNWantVScrollBarMask | kTXNWantHScrollBarMask) )
2979 {
2980 HIScrollViewCreate(
2981 (frameOptions & kTXNWantHScrollBarMask ? kHIScrollViewOptionsHorizScroll : 0)
2982 | (frameOptions & kTXNWantVScrollBarMask ? kHIScrollViewOptionsVertScroll : 0) ,
2983 &m_scrollView ) ;
2984 }
2985 else
2986 {
2987 HIScrollViewCreate(kHIScrollViewOptionsVertScroll,&m_scrollView);
2988 HIScrollViewSetScrollBarAutoHide(m_scrollView,true);
2989 }
7d8268a1
WS
2990
2991 HIViewSetFrame( m_scrollView, &hr );
2992 HIViewSetVisible( m_scrollView, true );
5ca0d812 2993 }
7d8268a1 2994
5ca0d812
SC
2995 m_textView = NULL ;
2996 HITextViewCreate( NULL , 0, frameOptions , &m_textView ) ;
0207e969 2997 m_txn = HITextViewGetTXNObject( m_textView ) ;
5ca0d812
SC
2998 HIViewSetVisible( m_textView , true ) ;
2999 if ( m_scrollView )
3000 {
3001 HIViewAddSubview( m_scrollView , m_textView ) ;
3002 m_controlRef = m_scrollView ;
0207e969 3003 wxPeer->MacInstallEventHandler( (WXWidget) m_textView ) ;
5ca0d812
SC
3004 }
3005 else
3006 {
7d8268a1 3007 HIViewSetFrame( m_textView, &hr );
5ca0d812
SC
3008 m_controlRef = m_textView ;
3009 }
7d8268a1 3010
0f7817ab 3011 AdjustCreationAttributes( *wxWHITE , true ) ;
4f74e0d1 3012#ifndef __LP64__
0f7817ab 3013 wxMacWindowClipper c( m_peer ) ;
4f74e0d1 3014#endif
5ca0d812
SC
3015 SetTXNData( st , kTXNStartOffset, kTXNEndOffset ) ;
3016
fef981b4
DS
3017 TXNSetSelection( m_txn, 0, 0 );
3018 TXNShowSelection( m_txn, kTXNShowStart );
09660720
SC
3019
3020 InstallControlEventHandler( m_textView , GetwxMacTextControlEventHandlerUPP(),
3021 GetEventTypeCount(eventList), eventList, this,
6239ee05 3022 NULL);
09660720
SC
3023}
3024
3025wxMacMLTEHIViewControl::~wxMacMLTEHIViewControl()
3026{
facd6764
SC
3027}
3028
7d8268a1 3029OSStatus wxMacMLTEHIViewControl::SetFocus( ControlFocusPart focusPart )
facd6764 3030{
fef981b4 3031 return SetKeyboardFocus( GetControlOwner( m_textView ), m_textView, focusPart ) ;
facd6764
SC
3032}
3033
7d8268a1 3034bool wxMacMLTEHIViewControl::HasFocus() const
facd6764 3035{
5ca0d812 3036 ControlRef control ;
6239ee05
SC
3037 if ( GetUserFocusWindow() == NULL )
3038 return false;
31c1cbc7 3039
5ca0d812
SC
3040 GetKeyboardFocus( GetUserFocusWindow() , &control ) ;
3041 return control == m_textView ;
facd6764
SC
3042}
3043
44aa865d
SC
3044void wxMacMLTEHIViewControl::SetBackground( const wxBrush &brush )
3045{
3046 wxMacMLTEControl::SetBackground( brush ) ;
fef981b4
DS
3047
3048#if 0
44aa865d 3049 CGColorSpaceRef rgbSpace = CGColorSpaceCreateDeviceRGB();
276ee533
SC
3050 RGBColor col;
3051 brush.GetColour().GetRGBColor(&col) ;
44aa865d
SC
3052
3053 float component[4] ;
3054 component[0] = col.red / 65536.0 ;
3055 component[1] = col.green / 65536.0 ;
3056 component[2] = col.blue / 65536.0 ;
3057 component[3] = 1.0 ; // alpha
0207e969 3058
ffafe6ca
DS
3059 CGColorRef color = CGColorCreate( rgbSpace , component );
3060 HITextViewSetBackgroundColor( m_textView , color );
44aa865d 3061 CGColorSpaceRelease( rgbSpace );
fef981b4 3062#endif
44aa865d
SC
3063}
3064
5ca0d812 3065#endif // wxUSE_TEXTCTRL