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