1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "textctrl.h"
14 #include "wx/textctrl.h"
18 #include "wx/settings.h"
20 #include "wx/clipbrd.h"
21 #include "wx/tokenzr.h"
23 #include "wx/univ/inphand.h"
24 #include "wx/univ/renderer.h"
25 #include "wx/univ/colschem.h"
26 #include "wx/univ/theme.h"
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 wxSourceUndoStep::wxSourceUndoStep( wxSourceUndo type
, int y1
, int y2
, wxTextCtrl
*owner
)
39 m_cursorX
= m_owner
->GetCursorX();
40 m_cursorY
= m_owner
->GetCursorY();
42 if (m_type
== wxSOURCE_UNDO_LINE
)
44 m_text
= m_owner
->m_lines
[m_y1
].m_text
;
46 if (m_type
== wxSOURCE_UNDO_ENTER
)
48 m_text
= m_owner
->m_lines
[m_y1
].m_text
;
50 if (m_type
== wxSOURCE_UNDO_BACK
)
52 for (int i
= m_y1
; i
< m_y2
+2; i
++)
54 if (i
>= (int)m_owner
->m_lines
.GetCount())
57 m_lines
.Add( m_owner
->m_lines
[i
].m_text
);
60 if (m_type
== wxSOURCE_UNDO_DELETE
)
62 for (int i
= m_y1
; i
< m_y2
+1; i
++)
64 m_lines
.Add( m_owner
->m_lines
[i
].m_text
);
67 if (m_type
== wxSOURCE_UNDO_PASTE
)
69 m_text
= m_owner
->m_lines
[m_y1
].m_text
;
73 void wxSourceUndoStep::Undo()
75 if (m_type
== wxSOURCE_UNDO_LINE
)
77 m_owner
->m_lines
[m_y1
].m_text
= m_text
;
78 m_owner
->MoveCursor( m_cursorX
, m_cursorY
);
79 m_owner
->RefreshLine( m_y1
);
81 if (m_type
== wxSOURCE_UNDO_ENTER
)
83 m_owner
->m_lines
[m_y1
].m_text
= m_text
;
84 m_owner
->m_lines
.RemoveAt( m_y1
+1 );
85 m_owner
->MoveCursor( m_cursorX
, m_cursorY
);
86 m_owner
->RefreshDown( m_y1
);
88 if (m_type
== wxSOURCE_UNDO_BACK
)
90 m_owner
->m_lines
[m_y1
].m_text
= m_lines
[0];
91 m_owner
->m_lines
.Insert( new wxSourceLine( m_lines
[1] ), m_y1
+1 );
92 m_owner
->MyAdjustScrollbars();
93 m_owner
->MoveCursor( m_cursorX
, m_cursorY
);
94 m_owner
->RefreshDown( m_y1
);
96 if (m_type
== wxSOURCE_UNDO_DELETE
)
98 m_owner
->m_lines
[m_y1
].m_text
= m_lines
[0];
99 for (int i
= 1; i
< (int)m_lines
.GetCount(); i
++)
100 m_owner
->m_lines
.Insert( new wxSourceLine( m_lines
[i
] ), m_y1
+i
);
101 m_owner
->MyAdjustScrollbars();
102 m_owner
->MoveCursor( m_cursorX
, m_cursorY
);
103 m_owner
->RefreshDown( m_y1
);
105 if (m_type
== wxSOURCE_UNDO_PASTE
)
107 m_owner
->m_lines
[m_y1
].m_text
= m_text
;
108 for (int i
= 0; i
< m_y2
-m_y1
; i
++)
109 m_owner
->m_lines
.RemoveAt( m_y1
+1 );
110 m_owner
->MyAdjustScrollbars();
111 m_owner
->MoveCursor( m_cursorX
, m_cursorY
);
112 m_owner
->RefreshDown( m_y1
);
114 if (m_type
== wxSOURCE_UNDO_INSERT_LINE
)
116 m_owner
->m_lines
.RemoveAt( m_y1
);
117 m_owner
->MyAdjustScrollbars();
118 m_owner
->MoveCursor( 0, m_y1
);
119 m_owner
->RefreshDown( m_y1
);
123 #include "wx/arrimpl.cpp"
124 WX_DEFINE_OBJARRAY(wxSourceLineArray
);
126 //-----------------------------------------------------------------------------
128 //-----------------------------------------------------------------------------
130 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
,wxControl
)
132 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
133 EVT_PAINT(wxTextCtrl::OnPaint
)
134 EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground
)
135 EVT_CHAR(wxTextCtrl::OnChar
)
136 EVT_MOUSE_EVENTS(wxTextCtrl::OnMouse
)
137 EVT_IDLE(wxTextCtrl::OnIdle
)
138 EVT_KILL_FOCUS(wxTextCtrl::OnKillFocus
)
139 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
141 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
142 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
143 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
144 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
145 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
147 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
148 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
149 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
150 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
151 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
154 void wxTextCtrl::Init()
159 m_undos
.DeleteContents( TRUE
);
161 m_lang
= wxSOURCE_LANG_NONE
;
174 m_ignoreInput
= FALSE
;
178 m_keywordColour
= wxColour( 10, 140, 10 );
180 m_defineColour
= *wxRED
;
182 m_variableColour
= wxColour( 50, 120, 150 );
184 m_commentColour
= wxColour( 130, 130, 130 );
186 m_stringColour
= wxColour( 10, 140, 10 );
189 wxTextCtrl::wxTextCtrl( wxWindow
*parent
,
191 const wxString
&value
,
195 const wxValidator
& validator
,
196 const wxString
&name
)
197 : wxScrollHelper(this)
201 Create( parent
, id
, value
, pos
, size
, style
, validator
, name
);
204 bool wxTextCtrl::Create( wxWindow
*parent
,
206 const wxString
&value
,
210 const wxValidator
& validator
,
211 const wxString
&name
)
213 if ((style
& wxBORDER_MASK
) == 0)
214 style
|= wxBORDER_SUNKEN
;
216 if ((style
& wxTE_MULTILINE
) != 0)
217 style
|= wxALWAYS_SHOW_SB
;
219 wxTextCtrlBase::Create( parent
, id
, pos
/* wxDefaultPosition */, size
,
220 style
|wxVSCROLL
|wxHSCROLL
|wxNO_FULL_REPAINT_ON_RESIZE
);
222 SetBackgroundColour( *wxWHITE
);
224 SetCursor( wxCursor( wxCURSOR_IBEAM
) );
226 m_editable
= ((m_windowStyle
& wxTE_READONLY
) == 0);
228 if (HasFlag(wxTE_PASSWORD
))
229 m_sourceFont
= wxFont( 12, wxMODERN
, wxNORMAL
, wxNORMAL
);
231 m_sourceFont
= GetFont();
234 dc
.SetFont( m_sourceFont
);
235 m_lineHeight
= dc
.GetCharHeight();
236 m_charWidth
= dc
.GetCharWidth();
240 wxSize
size_best( DoGetBestSize() );
241 wxSize
new_size( size
);
242 if (new_size
.x
== -1)
243 new_size
.x
= size_best
.x
;
244 if (new_size
.y
== -1)
245 new_size
.y
= size_best
.y
;
246 if ((new_size
.x
!= size
.x
) || (new_size
.y
!= size
.y
))
247 SetSize( new_size
.x
, new_size
.y
);
249 // We create an input handler since it might be useful
250 CreateInputHandler(wxINP_HANDLER_TEXTCTRL
);
252 MyAdjustScrollbars();
257 //-----------------------------------------------------------------------------
259 //-----------------------------------------------------------------------------
261 wxString
wxTextCtrl::GetValue() const
264 for (size_t i
= 0; i
< m_lines
.GetCount(); i
++)
266 ret
+= m_lines
[i
].m_text
;
267 if (i
+1 < m_lines
.GetCount())
274 void wxTextCtrl::SetValue(const wxString
& value
)
278 wxString oldValue
= GetValue();
288 m_lines
.Add( new wxSourceLine( wxT("") ) );
296 pos
= value
.find( wxT('\n'), begin
);
299 wxSourceLine
*sl
= new wxSourceLine( value
.Mid( begin
, value
.Len()-begin
) );
302 // if (sl->m_text.Len() > m_longestLine)
303 // m_longestLine = sl->m_text.Len();
305 GetTextExtent( sl
->m_text
, &ww
, NULL
, NULL
, NULL
);
307 if (ww
> m_longestLine
)
314 wxSourceLine
*sl
= new wxSourceLine( value
.Mid( begin
, pos
-begin
) );
317 // if (sl->m_text.Len() > m_longestLine)
318 // m_longestLine = sl->m_text.Len();
320 GetTextExtent( sl
->m_text
, &ww
, NULL
, NULL
, NULL
);
322 if (ww
> m_longestLine
)
330 // Don't need to refresh if the value hasn't changed
331 if ((GetWindowStyle() & wxTE_MULTILINE
) == 0)
333 if (value
== oldValue
)
337 MyAdjustScrollbars();
342 int wxTextCtrl::GetLineLength(long lineNo
) const
344 if (lineNo
>= (long)m_lines
.GetCount())
347 return m_lines
[lineNo
].m_text
.Len();
350 wxString
wxTextCtrl::GetLineText(long lineNo
) const
352 if (lineNo
>= (long)m_lines
.GetCount())
355 return m_lines
[lineNo
].m_text
;
358 int wxTextCtrl::GetNumberOfLines() const
360 return m_lines
.GetCount();
363 bool wxTextCtrl::IsModified() const
368 bool wxTextCtrl::IsEditable() const
373 void wxTextCtrl::GetSelection(long* from
, long* to
) const
377 void wxTextCtrl::Clear()
385 m_lines
.Add( new wxSourceLine( wxT("") ) );
387 SetScrollbars( m_charWidth
, m_lineHeight
, 0, 0, 0, 0 );
392 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
396 void wxTextCtrl::Remove(long from
, long to
)
401 void wxTextCtrl::DiscardEdits()
407 void wxTextCtrl::SetMaxLength(unsigned long len
)
411 int wxTextCtrl::PosToPixel( int line
, int pos
)
413 // TODO add support for Tabs
415 if (line
>= (int)m_lines
.GetCount()) return 0;
416 if (pos
< 0) return 0;
418 wxString text
= m_lines
[line
].m_text
;
420 if (text
.IsEmpty()) return 0;
422 if (pos
< (int)text
.Len())
423 text
.Remove( pos
, text
.Len()-pos
);
427 GetTextExtent( text
, &w
, NULL
, NULL
, NULL
);
432 int wxTextCtrl::PixelToPos( int line
, int pixel
)
434 if (pixel
< 2) return 0;
436 if (line
>= (int)m_lines
.GetCount()) return 0;
438 wxString text
= m_lines
[line
].m_text
;
441 int res
= text
.Len();
444 GetTextExtent( text
, &w
, NULL
, NULL
, NULL
);
450 text
.Remove( res
,1 );
456 void wxTextCtrl::SetLanguage( wxSourceLanguage lang
)
462 if (m_lang
== wxSOURCE_LANG_PYTHON
)
464 m_keywords
.Add( "class" );
465 m_keywords
.Add( "__init__" );
466 m_keywords
.Add( "return" );
467 m_keywords
.Add( "def" );
468 m_keywords
.Add( "try" );
469 m_keywords
.Add( "except" );
470 m_keywords
.Add( "if" );
471 m_keywords
.Add( "else" );
472 m_keywords
.Add( "finally" );
473 m_keywords
.Add( "for" );
474 m_keywords
.Add( "if" );
475 m_keywords
.Add( "elif" );
476 m_keywords
.Add( "in" );
477 m_keywords
.Add( "and" );
478 m_keywords
.Add( "del" );
479 m_keywords
.Add( "is" );
480 m_keywords
.Add( "raise" );
481 m_keywords
.Add( "assert" );
482 m_keywords
.Add( "lambda" );
483 m_keywords
.Add( "break" );
484 m_keywords
.Add( "global" );
485 m_keywords
.Add( "not" );
486 m_keywords
.Add( "or" );
487 m_keywords
.Add( "while" );
488 m_keywords
.Add( "continue" );
489 m_keywords
.Add( "exec" );
490 m_keywords
.Add( "pass" );
491 m_keywords
.Add( "print" );
493 if (m_lang
== wxSOURCE_LANG_PERL
)
495 m_keywords
.Add( "main" );
496 m_keywords
.Add( "sub" );
497 m_keywords
.Add( "shift" );
498 m_keywords
.Add( "push" );
499 m_keywords
.Add( "split" );
500 m_keywords
.Add( "join" );
501 m_keywords
.Add( "chop" );
502 m_keywords
.Add( "grep" );
503 m_keywords
.Add( "open" );
504 m_keywords
.Add( "print" );
505 m_keywords
.Add( "sprint" );
506 m_keywords
.Add( "printf" );
507 m_keywords
.Add( "sprintf" );
508 m_keywords
.Add( "my" );
509 m_keywords
.Add( "local" );
510 m_keywords
.Add( "exit" );
511 m_keywords
.Add( "die" );
512 m_keywords
.Add( "return" );
513 m_keywords
.Add( "for" );
514 m_keywords
.Add( "foreach" );
515 m_keywords
.Add( "while" );
516 m_keywords
.Add( "unless" );
517 m_keywords
.Add( "if" );
518 m_keywords
.Add( "next" );
519 m_keywords
.Add( "last" );
520 m_keywords
.Add( "else" );
521 m_keywords
.Add( "elsif" );
522 m_keywords
.Add( "ne" );
523 m_keywords
.Add( "qe" );
526 if (m_lang
== wxSOURCE_LANG_CPP
)
528 m_keywords
.Add( "class" );
529 m_keywords
.Add( "return" );
530 m_keywords
.Add( "if" );
531 m_keywords
.Add( "then" );
532 m_keywords
.Add( "else" );
533 m_keywords
.Add( "struct" );
534 m_keywords
.Add( "enum" );
535 m_keywords
.Add( "while" );
536 m_keywords
.Add( "do" );
537 m_keywords
.Add( "for" );
538 m_keywords
.Add( "continue" );
539 m_keywords
.Add( "break" );
540 m_keywords
.Add( "switch" );
541 m_keywords
.Add( "case" );
542 m_keywords
.Add( "goto" );
543 m_keywords
.Add( "label" );
544 m_keywords
.Add( "inline" );
545 m_keywords
.Add( "operator" );
546 m_keywords
.Add( "virtual" );
547 m_keywords
.Add( "private" );
548 m_keywords
.Add( "public" );
549 m_keywords
.Add( "protected" );
550 m_keywords
.Add( "friend" );
551 m_keywords
.Add( "exception" );
552 m_keywords
.Add( "throw" );
553 m_keywords
.Add( "catch" );
554 m_keywords
.Add( "delete" );
555 m_keywords
.Add( "new" );
556 m_keywords
.Add( "default" );
557 m_keywords
.Add( "overload" );
558 m_keywords
.Add( "using" );
559 m_keywords
.Add( "template" );
560 m_keywords
.Add( "try" );
561 m_keywords
.Add( "typedef" );
562 m_keywords
.Add( "union" );
563 m_keywords
.Add( "volatile" );
564 m_keywords
.Add( "asm" );
569 if (m_lang
== wxSOURCE_LANG_PYTHON
)
571 m_defines
.Add( "from" );
572 m_defines
.Add( "import" );
574 if (m_lang
== wxSOURCE_LANG_PERL
)
576 m_defines
.Add( "use" );
577 m_defines
.Add( "do" );
578 m_defines
.Add( "package" );
579 m_defines
.Add( "defined" );
581 if (m_lang
== wxSOURCE_LANG_CPP
)
583 m_defines
.Add( "#define" );
584 m_defines
.Add( "#if" );
585 m_defines
.Add( "#ifndef" );
586 m_defines
.Add( "#ifdef" );
587 m_defines
.Add( "#else" );
588 m_defines
.Add( "#elif" );
589 m_defines
.Add( "#endif" );
590 m_defines
.Add( "#pragma" );
591 m_defines
.Add( "#include" );
596 if (m_lang
== wxSOURCE_LANG_PYTHON
)
598 m_variables
.Add( "nil" );
599 m_variables
.Add( "None" );
600 m_variables
.Add( "self" );
601 m_variables
.Add( "false" );
602 m_variables
.Add( "true" );
604 if (m_lang
== wxSOURCE_LANG_PERL
)
606 m_variables
.Add( "undef" );
607 m_variables
.Add( "class" );
608 m_variables
.Add( "this" );
609 m_variables
.Add( "IN" );
610 m_variables
.Add( "OUT" );
611 m_variables
.Add( "STDIN" );
612 m_variables
.Add( "STDOUT" );
613 m_variables
.Add( "STDERR" );
615 if (m_lang
== wxSOURCE_LANG_CPP
)
617 m_variables
.Add( "int" );
618 m_variables
.Add( "bool" );
619 m_variables
.Add( "void" );
620 m_variables
.Add( "long" );
621 m_variables
.Add( "short" );
622 m_variables
.Add( "const" );
623 m_variables
.Add( "signed" );
624 m_variables
.Add( "unsigned" );
625 m_variables
.Add( "char" );
626 m_variables
.Add( "size_t" );
627 m_variables
.Add( "wchar_t" );
628 m_variables
.Add( "NULL" );
629 m_variables
.Add( "this" );
630 m_variables
.Add( "TRUE" );
631 m_variables
.Add( "FALSE" );
632 m_variables
.Add( "float" );
633 m_variables
.Add( "double" );
634 m_variables
.Add( "register" );
635 m_variables
.Add( "extern" );
636 m_variables
.Add( "static" );
637 m_variables
.Add( "sizeof" );
641 void wxTextCtrl::WriteText(const wxString
& text2
)
643 if (text2
.IsEmpty()) return;
647 wxString
text( text2
);
650 while ( (pos
= text
.Find('\n')) != -1 )
652 lines
.Add( text
.Left( pos
) );
653 text
.Remove( 0, pos
+1 );
656 int count
= (int)lines
.GetCount();
658 wxString
tmp1( m_lines
[m_cursorY
].m_text
);
659 wxString
tmp2( tmp1
);
660 int len
= (int)tmp1
.Len();
665 for (int i
= 0; i
< m_cursorX
-len
; i
++)
667 m_lines
[m_cursorY
].m_text
.Append( tmp
);
672 tmp1
.Remove( m_cursorX
);
673 tmp2
.Remove( 0, m_cursorX
);
674 tmp1
.Append( lines
[0] );
678 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, m_cursorY
, m_cursorY
, this ) );
681 m_lines
[m_cursorY
].m_text
= tmp1
;
682 RefreshLine( m_cursorY
);
686 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_PASTE
, m_cursorY
, m_cursorY
+count
-1, this ) );
688 m_lines
[m_cursorY
].m_text
= tmp1
;
690 for (i
= 1; i
< count
; i
++)
691 m_lines
.Insert( new wxSourceLine( lines
[i
] ), m_cursorY
+i
);
692 m_lines
[m_cursorY
+i
-1].m_text
.Append( tmp2
);
694 MyAdjustScrollbars();
695 RefreshDown( m_cursorY
);
699 void wxTextCtrl::AppendText(const wxString
& text2
)
701 if (text2
.IsEmpty()) return;
705 wxString
text( text2
);
708 while ( (pos
= text
.Find('\n')) != -1 )
710 lines
.Add( text
.Left( pos
) );
711 text
.Remove( 0, pos
+1 );
714 int count
= (int)lines
.GetCount();
716 size_t y
= m_lines
.GetCount()-1;
718 wxString
tmp( m_lines
[y
].m_text
);
719 tmp
.Append( lines
[0] );
723 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, y
, y
, this ) );
725 m_lines
[y
].m_text
= tmp
;
730 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_PASTE
, y
, y
+count
-1, this ) );
732 m_lines
[y
].m_text
= tmp
;
734 for (i
= 1; i
< count
; i
++)
735 m_lines
.Insert( new wxSourceLine( lines
[i
] ), y
+i
);
737 MyAdjustScrollbars();
742 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
747 long wxTextCtrl::XYToPosition(long x
, long y
) const
751 for (size_t i
= 0; i
< m_lines
.GetCount(); i
++)
755 ret
+= m_lines
[i
].m_text
.Len();
759 if ((size_t)x
< m_lines
[i
].m_text
.Len())
762 return (ret
+ m_lines
[i
].m_text
.Len());
768 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
770 if (m_lines
.GetCount() == 0)
781 for (size_t i
= 0; i
< m_lines
.GetCount(); i
++)
783 pos
-= m_lines
[i
].m_text
.Len();
795 xx
= m_lines
[ m_lines
.GetCount()-1 ].m_text
.Len();
802 void wxTextCtrl::ShowPosition(long pos
)
806 void wxTextCtrl::Copy()
808 if (!HasSelection()) return;
812 int selStartY
= m_selStartY
;
813 int selEndY
= m_selEndY
;
814 int selStartX
= m_selStartX
;
815 int selEndX
= m_selEndX
;
817 if ((selStartY
> selEndY
) ||
818 ((selStartY
== selEndY
) && (selStartX
> selEndX
)))
828 if (selStartY
== selEndY
)
830 sel
= m_lines
[selStartY
].m_text
;
832 if (selStartX
>= (int)sel
.Len()) return;
833 if (selEndX
> (int)sel
.Len())
836 sel
.Remove( selEndX
, sel
.Len()-selEndX
);
837 sel
.Remove( 0, selStartX
);
841 wxString
tmp( m_lines
[selStartY
].m_text
);
843 if (selStartX
< (int)tmp
.Len())
845 tmp
.Remove( 0, selStartX
);
849 for (int i
= selStartY
+1; i
< selEndY
; i
++)
851 sel
.Append( m_lines
[i
].m_text
);
854 tmp
= m_lines
[selEndY
].m_text
;
855 if (selEndX
> (int)tmp
.Len())
859 tmp
.Remove( selEndX
, tmp
.Len()-selEndX
);
864 if (wxTheClipboard
->Open())
866 wxTheClipboard
->SetData( new wxTextDataObject( sel
) );
867 wxTheClipboard
->Close();
871 void wxTextCtrl::Cut()
878 void wxTextCtrl::Paste()
882 if (!wxTheClipboard
->Open()) return;
884 if (!wxTheClipboard
->IsSupported( wxDF_TEXT
))
886 wxTheClipboard
->Close();
891 wxTextDataObject data
;
893 bool ret
= wxTheClipboard
->GetData( data
);
895 wxTheClipboard
->Close();
901 wxString
text( data
.GetText() );
904 while ( (pos
= text
.Find('\n')) != -1 )
906 lines
.Add( text
.Left( pos
) );
907 text
.Remove( 0, pos
+1 );
910 int count
= (int)lines
.GetCount();
912 wxString
tmp1( m_lines
[m_cursorY
].m_text
);
913 wxString
tmp2( tmp1
);
914 int len
= (int)tmp1
.Len();
919 for (int i
= 0; i
< m_cursorX
-len
; i
++)
921 m_lines
[m_cursorY
].m_text
.Append( tmp
);
926 tmp1
.Remove( m_cursorX
);
927 tmp2
.Remove( 0, m_cursorX
);
928 tmp1
.Append( lines
[0] );
932 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, m_cursorY
, m_cursorY
, this ) );
935 m_lines
[m_cursorY
].m_text
= tmp1
;
936 RefreshLine( m_cursorY
);
940 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_PASTE
, m_cursorY
, m_cursorY
+count
-1, this ) );
942 m_lines
[m_cursorY
].m_text
= tmp1
;
944 for (i
= 1; i
< count
; i
++)
945 m_lines
.Insert( new wxSourceLine( lines
[i
] ), m_cursorY
+i
);
946 m_lines
[m_cursorY
+i
-1].m_text
.Append( tmp2
);
948 MyAdjustScrollbars();
949 RefreshDown( m_cursorY
);
953 void wxTextCtrl::Undo()
955 if (m_undos
.GetCount() == 0) return;
957 wxNode
*node
= m_undos
.Nth( m_undos
.GetCount()-1 );
958 wxSourceUndoStep
*undo
= (wxSourceUndoStep
*) node
->Data();
967 void wxTextCtrl::SetInsertionPoint(long pos
)
971 void wxTextCtrl::SetInsertionPointEnd()
975 long wxTextCtrl::GetInsertionPoint() const
977 return XYToPosition( m_cursorX
, m_cursorY
);
980 long wxTextCtrl::GetLastPosition() const
982 size_t lineCount
= m_lines
.GetCount() - 1;
983 return XYToPosition( m_lines
[lineCount
].m_text
.Len()-1, lineCount
);
986 void wxTextCtrl::SetSelection(long from
, long to
)
990 void wxTextCtrl::SetEditable(bool editable
)
992 m_editable
= editable
;
995 bool wxTextCtrl::Enable( bool enable
)
1000 bool wxTextCtrl::SetFont(const wxFont
& font
)
1002 wxTextCtrlBase::SetFont( font
);
1004 m_sourceFont
= font
;
1006 wxClientDC
dc(this);
1007 dc
.SetFont( m_sourceFont
);
1008 m_lineHeight
= dc
.GetCharHeight();
1009 m_charWidth
= dc
.GetCharWidth();
1011 // TODO: recalc longest lines
1013 MyAdjustScrollbars();
1018 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1020 return wxWindow::SetForegroundColour( colour
);
1023 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
1025 return wxWindow::SetBackgroundColour( colour
);
1028 //-----------------------------------------------------------------------------
1029 // private code and handlers
1030 //-----------------------------------------------------------------------------
1032 void wxTextCtrl::SearchForBrackets()
1034 int oldBracketY
= m_bracketY
;
1035 int oldBracketX
= m_bracketX
;
1037 if (m_cursorY
< 0 || m_cursorY
>= (int)m_lines
.GetCount()) return;
1039 wxString current
= m_lines
[m_cursorY
].m_text
;
1041 // reverse search first
1046 bracket
= current
[m_cursorX
-1];
1048 if (bracket
== ')' || bracket
== ']' || bracket
== '}')
1050 char antibracket
= '(';
1051 if (bracket
== ']') antibracket
= '[';
1052 if (bracket
== '}') antibracket
= '{';
1056 int endY
= m_cursorY
-60;
1057 if (endY
< 0) endY
= 0;
1058 for (int y
= m_cursorY
; y
>= endY
; y
--)
1060 current
= m_lines
[y
].m_text
;
1062 current
.erase(m_cursorX
-1,current
.Len()-m_cursorX
+1);
1064 for (int n
= current
.Len()-1; n
>= 0; n
--)
1067 if (current
[n
] == '\'')
1069 for (int m
= n
-1; m
>= 0; m
--)
1071 if (current
[m
] == '\'')
1073 if (m
== 0 || current
[m
-1] != '\\')
1082 if (current
[n
] == '\"')
1084 for (int m
= n
-1; m
>= 0; m
--)
1086 if (current
[m
] == '\"')
1088 if (m
== 0 || current
[m
-1] != '\\')
1096 if (current
[n
] == antibracket
)
1103 if (oldBracketY
!= m_bracketY
&& oldBracketY
!= -1)
1104 RefreshLine( oldBracketY
);
1105 if (m_bracketY
!= oldBracketY
|| m_bracketX
!= oldBracketX
)
1106 RefreshLine( m_bracketY
);
1110 else if (current
[n
] == bracket
)
1121 if ((int)current
.Len() > m_cursorX
)
1122 bracket
= current
[m_cursorX
];
1123 if (bracket
== '(' || bracket
== '[' || bracket
== '{')
1125 char antibracket
= ')';
1126 if (bracket
== '[') antibracket
= ']';
1127 if (bracket
== '{') antibracket
= '}';
1131 int endY
= m_cursorY
+60;
1132 if (endY
> (int)(m_lines
.GetCount()-1)) endY
= m_lines
.GetCount()-1;
1133 for (int y
= m_cursorY
; y
<= endY
; y
++)
1135 current
= m_lines
[y
].m_text
;
1138 start
= m_cursorX
+1;
1140 for (int n
= start
; n
< (int)current
.Len(); n
++)
1143 if (current
[n
] == '\'')
1145 for (int m
= n
+1; m
< (int)current
.Len(); m
++)
1147 if (current
[m
] == '\'')
1149 if (m
== 0 || (current
[m
-1] != '\\') || (m
>= 2 && current
[m
-2] == '\\'))
1158 if (current
[n
] == '\"')
1160 for (int m
= n
+1; m
< (int)current
.Len(); m
++)
1162 if (current
[m
] == '\"')
1164 if (m
== 0 || (current
[m
-1] != '\\') || (m
>= 2 && current
[m
-2] == '\\'))
1172 if (current
[n
] == antibracket
)
1179 if (oldBracketY
!= m_bracketY
&& oldBracketY
!= -1)
1180 RefreshLine( oldBracketY
);
1181 if (m_bracketY
!= oldBracketY
|| m_bracketX
!= oldBracketX
)
1182 RefreshLine( m_bracketY
);
1186 else if (current
[n
] == bracket
)
1194 if (oldBracketY
!= -1)
1197 RefreshLine( oldBracketY
);
1201 void wxTextCtrl::Delete()
1203 if (!HasSelection()) return;
1207 int selStartY
= m_selStartY
;
1208 int selEndY
= m_selEndY
;
1209 int selStartX
= m_selStartX
;
1210 int selEndX
= m_selEndX
;
1212 if ((selStartY
> selEndY
) ||
1213 ((selStartY
== selEndY
) && (selStartX
> selEndX
)))
1215 int tmp
= selStartX
;
1216 selStartX
= selEndX
;
1219 selStartY
= selEndY
;
1223 int len
= (int)m_lines
[selStartY
].m_text
.Len();
1225 if (selStartY
== selEndY
)
1227 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, selStartY
, selStartY
, this ) );
1229 wxString
tmp( m_lines
[selStartY
].m_text
);
1230 if (selStartX
< len
)
1234 tmp
.Remove( selStartX
, selEndX
-selStartX
);
1235 m_lines
[selStartY
].m_text
= tmp
;
1238 m_cursorX
= selStartX
;
1239 RefreshLine( selStartY
);
1243 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_DELETE
, selStartY
, selEndY
, this ) );
1245 if (selStartX
< len
)
1246 m_lines
[selStartY
].m_text
.Remove( selStartX
);
1248 for (int i
= 0; i
< selEndY
-selStartY
-1; i
++)
1249 m_lines
.RemoveAt( selStartY
+1 );
1251 if (selEndX
< (int)m_lines
[selStartY
+1].m_text
.Len())
1252 m_lines
[selStartY
+1].m_text
.Remove( 0, selEndX
);
1254 m_lines
[selStartY
+1].m_text
.Remove( 0 );
1256 m_lines
[selStartY
].m_text
.Append( m_lines
[selStartY
+1].m_text
);
1257 m_lines
.RemoveAt( selStartY
+1 );
1260 MoveCursor( selStartX
, selStartY
);
1261 MyAdjustScrollbars();
1263 RefreshDown( selStartY
);
1267 void wxTextCtrl::DeleteLine()
1269 if (HasSelection()) return;
1271 if (m_cursorY
< 0 || m_cursorY
>= (int)m_lines
.GetCount()-1) return; // TODO
1273 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_DELETE
, m_cursorY
, m_cursorY
+1, this ) );
1275 m_lines
.RemoveAt( m_cursorY
);
1277 if (m_cursorY
>= (int)m_lines
.GetCount()) m_cursorY
--;
1279 MyAdjustScrollbars();
1280 RefreshDown( m_cursorY
);
1283 void wxTextCtrl::DoChar( char c
)
1287 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, m_cursorY
, m_cursorY
, this ) );
1289 wxString
tmp( m_lines
[m_cursorY
].m_text
);
1291 if (m_cursorX
>= (int)tmp
.Len())
1293 int len
= tmp
.Len();
1294 for (int i
= 0; i
< m_cursorX
- len
; i
++)
1301 tmp
.SetChar( m_cursorX
, c
);
1303 tmp
.insert( m_cursorX
, 1, c
);
1306 m_lines
[m_cursorY
].m_text
= tmp
;
1308 // if (tmp.Len() > m_longestLine)
1310 // m_longestLine = tmp.Len();
1311 // MyAdjustScrollbars();
1315 GetTextExtent( tmp
, &ww
, NULL
, NULL
, NULL
);
1317 if (ww
> m_longestLine
)
1320 MyAdjustScrollbars();
1325 int y
= m_cursorY
*m_lineHeight
;
1326 // int x = (m_cursorX-1)*m_charWidth;
1327 int x
= PosToPixel( m_cursorY
, m_cursorX
-1 );
1328 CalcScrolledPosition( x
, y
, &x
, &y
);
1329 wxRect
rect( x
+2, y
+2, 10000, m_lineHeight
);
1330 Refresh( TRUE
, &rect
);
1331 // refresh whole line for syntax colour highlighting
1333 Refresh( FALSE
, &rect
);
1337 GetClientSize( &size_x
, &size_y
);
1338 size_x
/= m_charWidth
;
1342 GetViewStart( &view_x
, &view_y
);
1344 //int xx = m_cursorX;
1345 int xx
= PosToPixel( m_cursorY
, m_cursorX
) / m_charWidth
;
1349 else if (xx
> view_x
+size_x
-1)
1350 Scroll( xx
-size_x
+1, -1 );
1353 void wxTextCtrl::DoBack()
1359 if (m_cursorY
== 0) return;
1361 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_BACK
, m_cursorY
-1, m_cursorY
, this ) );
1363 wxString
tmp1( m_lines
[m_cursorY
-1].m_text
);
1365 wxString
tmp2( m_lines
[m_cursorY
].m_text
);
1367 m_cursorX
= tmp1
.Len();
1369 tmp1
.Append( tmp2
);
1370 m_lines
[m_cursorY
].m_text
= tmp1
;
1371 m_lines
.RemoveAt( m_cursorY
+1 );
1373 MyAdjustScrollbars();
1374 RefreshDown( m_cursorY
-1 );
1378 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, m_cursorY
, m_cursorY
, this ) );
1380 if (m_cursorX
<= (int)m_lines
[m_cursorY
].m_text
.Len())
1381 m_lines
[m_cursorY
].m_text
.Remove( m_cursorX
-1, 1 );
1384 int y
= m_cursorY
*m_lineHeight
;
1385 // int x = m_cursorX*m_charWidth;
1386 int x
= PosToPixel( m_cursorY
, m_cursorX
);
1387 CalcScrolledPosition( x
, y
, &x
, &y
);
1388 wxRect
rect( x
+2, y
+2, 10000, m_lineHeight
);
1389 Refresh( TRUE
, &rect
);
1390 // refresh whole line for syntax colour highlighting
1392 Refresh( FALSE
, &rect
);
1396 void wxTextCtrl::DoDelete()
1400 wxString
tmp( m_lines
[m_cursorY
].m_text
);
1402 int len
= (int)tmp
.Len();
1403 if (m_cursorX
>= len
)
1405 if (m_cursorY
== (int)m_lines
.GetCount()-1) return;
1407 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_DELETE
, m_cursorY
, m_cursorY
+1, this ) );
1409 for (int i
= 0; i
< (m_cursorX
-len
); i
++)
1412 tmp
+= m_lines
[m_cursorY
+1].m_text
;
1414 m_lines
[m_cursorY
] = tmp
;
1415 m_lines
.RemoveAt( m_cursorY
+1 );
1417 MyAdjustScrollbars();
1418 RefreshDown( m_cursorY
);
1422 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, m_cursorY
, m_cursorY
, this ) );
1424 tmp
.Remove( m_cursorX
, 1 );
1425 m_lines
[m_cursorY
].m_text
= tmp
;
1427 int y
= m_cursorY
*m_lineHeight
;
1428 // int x = m_cursorX*m_charWidth;
1429 int x
= PosToPixel( m_cursorY
, m_cursorX
);
1430 CalcScrolledPosition( x
, y
, &x
, &y
);
1431 wxRect
rect( x
+2, y
+2, 10000, m_lineHeight
);
1432 Refresh( TRUE
, &rect
);
1433 // refresh whole line for syntax colour highlighting
1435 Refresh( FALSE
, &rect
);
1439 void wxTextCtrl::DoReturn()
1443 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_ENTER
, m_cursorY
, m_cursorY
, this ) );
1445 wxString
tmp( m_lines
[m_cursorY
].m_text
);
1446 size_t indent
= tmp
.find_first_not_of( ' ' );
1447 if (indent
== wxSTRING_MAXLEN
) indent
= 0;
1449 if (m_cursorX
>= (int)tmp
.Len())
1451 int cursorX
= indent
;
1452 int cursorY
= m_cursorY
+ 1;
1455 for (size_t i
= 0; i
< indent
; i
++) new_tmp
.Append( ' ' );
1456 m_lines
.Insert( new wxSourceLine( new_tmp
), cursorY
);
1458 MyAdjustScrollbars();
1459 MoveCursor( cursorX
, cursorY
);
1460 RefreshDown( m_cursorY
);
1464 wxString
tmp1( tmp
);
1465 tmp1
.Remove( m_cursorX
, tmp
.Len()-m_cursorX
);
1466 m_lines
[m_cursorY
].m_text
= tmp1
;
1468 wxString
tmp2( tmp
);
1469 tmp2
.Remove( 0, m_cursorX
);
1471 int cursorX
= indent
;
1472 int cursorY
= m_cursorY
+ 1;
1475 for (size_t i
= 0; i
< indent
; i
++) new_tmp
.Append( ' ' );
1476 new_tmp
.Append( tmp2
);
1477 m_lines
.Insert( new wxSourceLine( new_tmp
), cursorY
);
1479 MyAdjustScrollbars();
1480 MoveCursor( cursorX
, cursorY
);
1481 RefreshDown( m_cursorY
-1 );
1485 void wxTextCtrl::DoDClick()
1487 wxString
line( m_lines
[ m_cursorY
].m_text
);
1488 if (m_cursorX
>= (int)line
.Len()) return;
1491 if (((ch
>= 'a') && (ch
<= 'z')) ||
1492 ((ch
>= 'A') && (ch
<= 'Z')) ||
1493 ((ch
>= '0') && (ch
<= '9')) ||
1496 m_selStartY
= m_cursorY
;
1497 m_selEndY
= m_cursorY
;
1501 while (((ch
>= 'a') && (ch
<= 'z')) ||
1502 ((ch
>= 'A') && (ch
<= 'Z')) ||
1503 ((ch
>= '0') && (ch
<= '9')) ||
1514 if (p
< (int)line
.Len())
1517 while (((ch
>= 'a') && (ch
<= 'z')) ||
1518 ((ch
>= 'A') && (ch
<= 'Z')) ||
1519 ((ch
>= '0') && (ch
<= '9')) ||
1522 if (p
>= (int)line
.Len()) break;
1528 RefreshLine( m_cursorY
);
1532 wxString
wxTextCtrl::GetNextToken( wxString
&line
, size_t &pos
)
1535 size_t len
= line
.Len();
1536 for (size_t p
= pos
; p
< len
; p
++)
1538 if ((m_lang
== wxSOURCE_LANG_PYTHON
) || (m_lang
== wxSOURCE_LANG_PERL
))
1542 for (size_t q
= p
; q
< len
; q
++)
1543 ret
.Append( line
[q
] );
1550 if ((line
[p
] == '/') && (p
+1 < len
) && (line
[p
+1] == '/'))
1552 for (size_t q
= p
; q
< len
; q
++)
1553 ret
.Append( line
[q
] );
1561 ret
.Append( line
[p
] );
1562 for (size_t q
= p
+1; q
< len
; q
++)
1564 ret
.Append( line
[q
] );
1565 if ((line
[q
] == '"') && ((line
[q
-1] != '\\') || (q
>= 2 && line
[q
-2] == '\\')))
1572 if (line
[p
] == '\'')
1574 ret
.Append( line
[p
] );
1575 for (size_t q
= p
+1; q
< len
; q
++)
1577 ret
.Append( line
[q
] );
1578 if ((line
[q
] == '\'') && ((line
[q
-1] != '\\') || (q
>= 2 && line
[q
-2] == '\\')))
1585 if (((line
[p
] >= 'a') && (line
[p
] <= 'z')) ||
1586 ((line
[p
] >= 'A') && (line
[p
] <= 'Z')) ||
1590 ret
.Append( line
[p
] );
1591 for (size_t q
= p
+1; q
< len
; q
++)
1593 if (((line
[q
] >= 'a') && (line
[q
] <= 'z')) ||
1594 ((line
[q
] >= 'A') && (line
[q
] <= 'Z')) ||
1595 ((line
[q
] >= '0') && (line
[q
] <= '9')) ||
1598 ret
.Append( line
[q
] );
1615 void wxTextCtrl::OnEraseBackground( wxEraseEvent
&event
)
1620 void wxTextCtrl::DrawLinePart( wxDC
&dc
, int x
, int y
, const wxString
&toDraw
, const wxString
&origin
, const wxColour
&colour
)
1623 size_t len
= origin
.Len();
1624 dc
.SetTextForeground( colour
);
1627 while (toDraw
[pos
] == wxT(' '))
1630 if (pos
== len
) return;
1636 current
+= toDraw
[pos
];
1638 while ( (toDraw
[pos
] == origin
[pos
]) && (pos
< len
))
1640 current
+= toDraw
[pos
];
1645 wxString tmp
= origin
.Left( start
);
1646 GetTextExtent( tmp
, &xx
, NULL
, NULL
, NULL
);
1649 dc
.DrawText( current
, xx
, yy
);
1653 void wxTextCtrl::DrawLine( wxDC
&dc
, int x
, int y
, const wxString
&line2
, int lineNum
)
1655 int selStartY
= m_selStartY
;
1656 int selEndY
= m_selEndY
;
1657 int selStartX
= m_selStartX
;
1658 int selEndX
= m_selEndX
;
1660 if ((selStartY
> selEndY
) ||
1661 ((selStartY
== selEndY
) && (selStartX
> selEndX
)))
1663 int tmp
= selStartX
;
1664 selStartX
= selEndX
;
1667 selStartY
= selEndY
;
1671 wxString
line( line2
);
1672 if (HasFlag(wxTE_PASSWORD
))
1674 size_t len
= line
.Len();
1675 line
= wxString( wxT('*'), len
);
1678 wxString
keyword( ' ', line
.Len() );
1679 wxString
define( ' ', line
.Len() );
1680 wxString
variable( ' ', line
.Len() );
1681 wxString
comment( ' ', line
.Len() );
1682 wxString
my_string( ' ', line
.Len() );
1683 wxString
selection( ' ', line
.Len() );
1685 if (m_lang
!= wxSOURCE_LANG_NONE
)
1687 if (lineNum
== m_bracketY
)
1689 wxString
red( ' ', line
.Len() );
1690 if (m_bracketX
< (int)line
.Len())
1692 red
.SetChar( m_bracketX
, line
[m_bracketX
] );
1693 line
.SetChar( m_bracketX
, ' ' );
1694 dc
.SetTextForeground( *wxRED
);
1695 dc
.DrawText( red
, x
, y
);
1696 dc
.SetTextForeground( *wxBLACK
);
1701 wxString
token( GetNextToken( line
, pos
) );
1702 while (!token
.IsNull())
1704 if (m_keywords
.Index( token
) != wxNOT_FOUND
)
1706 size_t end_pos
= pos
+ token
.Len();
1707 for (size_t i
= pos
; i
< end_pos
; i
++)
1709 keyword
[i
] = line
[i
];
1713 if (m_defines
.Index( token
) != wxNOT_FOUND
)
1715 size_t end_pos
= pos
+ token
.Len();
1716 for (size_t i
= pos
; i
< end_pos
; i
++)
1718 define
[i
] = line
[i
];
1722 if ((m_variables
.Index( token
) != wxNOT_FOUND
) ||
1723 ((token
.Len() > 2) && (token
[0] == 'w') && (token
[1] == 'x')))
1725 size_t end_pos
= pos
+ token
.Len();
1726 for (size_t i
= pos
; i
< end_pos
; i
++)
1728 variable
[i
] = line
[i
];
1732 if ((token
.Len() >= 2) && (token
[0] == '/') && (token
[1] == '/') && (m_lang
== wxSOURCE_LANG_CPP
))
1734 size_t end_pos
= pos
+ token
.Len();
1735 for (size_t i
= pos
; i
< end_pos
; i
++)
1737 comment
[i
] = line
[i
];
1741 if ((token
[0] == '#') &&
1742 ((m_lang
== wxSOURCE_LANG_PYTHON
) || (m_lang
== wxSOURCE_LANG_PERL
)))
1744 size_t end_pos
= pos
+ token
.Len();
1745 for (size_t i
= pos
; i
< end_pos
; i
++)
1747 comment
[i
] = line
[i
];
1751 if ((token
[0] == '"') || (token
[0] == '\''))
1753 size_t end_pos
= pos
+ token
.Len();
1754 for (size_t i
= pos
; i
< end_pos
; i
++)
1756 my_string
[i
] = line
[i
];
1761 token
= GetNextToken( line
, pos
);
1765 if ((lineNum
< selStartY
) || (lineNum
> selEndY
))
1767 DrawLinePart( dc
, x
, y
, line
, line2
, *wxBLACK
);
1768 DrawLinePart( dc
, x
, y
, selection
, line2
, *wxWHITE
);
1769 DrawLinePart( dc
, x
, y
, keyword
, line2
, m_keywordColour
);
1770 DrawLinePart( dc
, x
, y
, define
, line2
, m_defineColour
);
1771 DrawLinePart( dc
, x
, y
, variable
, line2
, m_variableColour
);
1772 DrawLinePart( dc
, x
, y
, comment
, line2
, m_commentColour
);
1773 DrawLinePart( dc
, x
, y
, my_string
, line2
, m_stringColour
);
1777 if (selStartY
== selEndY
)
1779 // int xx = selStartX*m_charWidth;
1780 int xx
= PosToPixel( lineNum
, selStartX
);
1781 // int ww = (selEndX-selStartX)*m_charWidth;
1782 int ww
= PosToPixel( lineNum
, selEndX
) - xx
;
1783 dc
.DrawRectangle( xx
+2, lineNum
*m_lineHeight
+2, ww
, m_lineHeight
);
1785 for (size_t i
= (size_t)selStartX
; i
< (size_t)selEndX
; i
++)
1787 selection
[i
] = line
[i
];
1791 if ((lineNum
> selStartY
) && (lineNum
< selEndY
))
1793 dc
.DrawRectangle( 0+2, lineNum
*m_lineHeight
+2, 10000, m_lineHeight
);
1795 for (size_t i
= 0; i
< line
.Len(); i
++)
1797 selection
[i
] = line
[i
];
1801 if (lineNum
== selStartY
)
1803 // int xx = selStartX*m_charWidth;
1804 int xx
= PosToPixel( lineNum
, selStartX
);
1805 dc
.DrawRectangle( xx
+2, lineNum
*m_lineHeight
+2, 10000, m_lineHeight
);
1807 for (size_t i
= (size_t)selStartX
; i
< line
.Len(); i
++)
1809 selection
[i
] = line
[i
];
1813 if (lineNum
== selEndY
)
1815 // int ww = selEndX*m_charWidth;
1816 int ww
= PosToPixel( lineNum
, selEndX
);
1817 dc
.DrawRectangle( 0+2, lineNum
*m_lineHeight
+2, ww
, m_lineHeight
);
1819 for (size_t i
= 0; i
< (size_t)selEndX
; i
++)
1821 selection
[i
] = line
[i
];
1826 DrawLinePart( dc
, x
, y
, line
, line2
, *wxBLACK
);
1827 DrawLinePart( dc
, x
, y
, selection
, line2
, *wxWHITE
);
1828 DrawLinePart( dc
, x
, y
, keyword
, line2
, m_keywordColour
);
1829 DrawLinePart( dc
, x
, y
, define
, line2
, m_defineColour
);
1830 DrawLinePart( dc
, x
, y
, variable
, line2
, m_variableColour
);
1831 DrawLinePart( dc
, x
, y
, comment
, line2
, m_commentColour
);
1832 DrawLinePart( dc
, x
, y
, my_string
, line2
, m_stringColour
);
1835 void wxTextCtrl::OnPaint( wxPaintEvent
&event
)
1839 if (m_lines
.GetCount() == 0) return;
1843 dc
.SetFont( m_sourceFont
);
1846 GetViewStart( NULL
, &scroll_y
);
1848 // We have a inner border of two pixels
1849 // around the text, so scroll units do
1850 // not correspond to lines.
1851 if (scroll_y
> 0) scroll_y
--;
1855 GetClientSize( &size_x
, &size_y
);
1857 dc
.SetPen( *wxTRANSPARENT_PEN
);
1858 dc
.SetBrush( wxBrush( wxTHEME_COLOUR(HIGHLIGHT
), wxSOLID
) );
1859 int upper
= wxMin( (int)m_lines
.GetCount(), scroll_y
+(size_y
/m_lineHeight
)+2 );
1860 for (int i
= scroll_y
; i
< upper
; i
++)
1863 int y
= i
*m_lineHeight
+2;
1865 int h
= m_lineHeight
;
1866 CalcScrolledPosition( x
,y
,&x
,&y
);
1867 if (IsExposed(x
,y
,w
,h
))
1868 DrawLine( dc
, 0+2, i
*m_lineHeight
+2, m_lines
[i
].m_text
, i
);
1871 if (m_editable
&& (FindFocus() == this))
1873 ///dc.SetBrush( *wxRED_BRUSH );
1874 dc
.SetBrush( *wxBLACK_BRUSH
);
1875 // int xx = m_cursorX*m_charWidth;
1876 int xx
= PosToPixel( m_cursorY
, m_cursorX
);
1877 dc
.DrawRectangle( xx
+2, m_cursorY
*m_lineHeight
+2, 2, m_lineHeight
);
1881 void wxTextCtrl::OnMouse( wxMouseEvent
&event
)
1883 if (m_lines
.GetCount() == 0) return;
1886 #if 0 // there is no middle button on iPAQs
1887 if (event
.MiddleDown())
1894 if (event
.LeftDClick())
1900 if (event
.LeftDown())
1908 m_capturing
= FALSE
;
1912 if (event
.LeftDown() ||
1913 (event
.LeftIsDown() && m_capturing
))
1915 int x
= event
.GetX();
1916 int y
= event
.GetY();
1917 CalcUnscrolledPosition( x
, y
, &x
, &y
);
1919 // x /= m_charWidth;
1920 x
= PixelToPos( y
, x
);
1922 wxMin( 1000, wxMax( 0, x
) ),
1923 wxMin( (int)m_lines
.GetCount()-1, wxMax( 0, y
) ),
1924 event
.ShiftDown() || !event
.LeftDown() );
1928 void wxTextCtrl::OnChar( wxKeyEvent
&event
)
1930 if (m_lines
.GetCount() == 0) return;
1932 if (!m_editable
) return;
1936 GetClientSize( &size_x
, &size_y
);
1937 size_x
/= m_charWidth
;
1938 size_y
/= m_lineHeight
;
1941 if (event
.ShiftDown())
1943 switch (event
.GetKeyCode())
1945 case '4': event
.m_keyCode
= WXK_LEFT
; break;
1946 case '8': event
.m_keyCode
= WXK_UP
; break;
1947 case '6': event
.m_keyCode
= WXK_RIGHT
; break;
1948 case '2': event
.m_keyCode
= WXK_DOWN
; break;
1949 case '9': event
.m_keyCode
= WXK_PRIOR
; break;
1950 case '3': event
.m_keyCode
= WXK_NEXT
; break;
1951 case '7': event
.m_keyCode
= WXK_HOME
; break;
1952 case '1': event
.m_keyCode
= WXK_END
; break;
1953 case '0': event
.m_keyCode
= WXK_INSERT
; break;
1957 switch (event
.GetKeyCode())
1961 if (m_ignoreInput
) return;
1963 MoveCursor( m_cursorX
, m_cursorY
-1, event
.ShiftDown() );
1964 m_ignoreInput
= TRUE
;
1969 if (m_ignoreInput
) return;
1970 if (m_cursorY
< (int)(m_lines
.GetCount()-1))
1971 MoveCursor( m_cursorX
, m_cursorY
+1, event
.ShiftDown() );
1972 m_ignoreInput
= TRUE
;
1977 if (m_ignoreInput
) return;
1980 MoveCursor( m_cursorX
-1, m_cursorY
, event
.ShiftDown() );
1985 MoveCursor( m_lines
[m_cursorY
-1].m_text
.Len(), m_cursorY
-1, event
.ShiftDown() );
1987 m_ignoreInput
= TRUE
;
1992 if (m_ignoreInput
) return;
1993 if (m_cursorX
< 1000)
1994 MoveCursor( m_cursorX
+1, m_cursorY
, event
.ShiftDown() );
1995 m_ignoreInput
= TRUE
;
2000 if (event
.ControlDown())
2001 MoveCursor( 0, 0, event
.ShiftDown() );
2003 MoveCursor( 0, m_cursorY
, event
.ShiftDown() );
2008 if (event
.ControlDown())
2009 MoveCursor( 0, m_lines
.GetCount()-1, event
.ShiftDown() );
2011 MoveCursor( m_lines
[m_cursorY
].m_text
.Len(), m_cursorY
, event
.ShiftDown() );
2016 if (m_ignoreInput
) return;
2017 MoveCursor( m_cursorX
, wxMin( (int)(m_lines
.GetCount()-1), m_cursorY
+size_y
), event
.ShiftDown() );
2018 m_ignoreInput
= TRUE
;
2023 if (m_ignoreInput
) return;
2024 MoveCursor( m_cursorX
, wxMax( 0, m_cursorY
-size_y
), event
.ShiftDown() );
2025 m_ignoreInput
= TRUE
;
2030 if (event
.ShiftDown())
2032 else if (event
.ControlDown())
2035 m_overwrite
= !m_overwrite
;
2040 if (m_windowStyle
& wxPROCESS_ENTER
)
2042 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
2043 event
.SetEventObject(this);
2044 event
.SetString(GetValue());
2045 if (GetEventHandler()->ProcessEvent(event
)) return;
2063 bool save_overwrite
= m_overwrite
;
2064 m_overwrite
= FALSE
;
2065 int i
= 4-(m_cursorX
% 4);
2067 for (int c
= 0; c
< i
; c
++)
2069 m_overwrite
= save_overwrite
;
2090 if ( (event
.KeyCode() >= 'a') &&
2091 (event
.KeyCode() <= 'z') &&
2099 if ( (event
.KeyCode() >= 32) &&
2100 (event
.KeyCode() <= 255) &&
2101 !(event
.ControlDown() && !event
.AltDown()) ) // filters out Ctrl-X but leaves Alt-Gr
2105 DoChar( (char) event
.KeyCode() );
2114 void wxTextCtrl::OnIdle( wxIdleEvent
&event
)
2116 m_ignoreInput
= FALSE
;
2118 if (m_lang
!= wxSOURCE_LANG_NONE
)
2119 SearchForBrackets();
2124 void wxTextCtrl::Indent()
2126 int startY
= m_cursorY
;
2127 int endY
= m_cursorY
;
2130 startY
= m_selStartY
;
2140 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, startY
, endY
, this ) );
2142 for (int i
= startY
; i
<= endY
; i
++)
2144 m_lines
[i
].m_text
.insert( 0u, " " );
2149 void wxTextCtrl::Unindent()
2151 int startY
= m_cursorY
;
2152 int endY
= m_cursorY
;
2155 startY
= m_selStartY
;
2165 m_undos
.Append( new wxSourceUndoStep( wxSOURCE_UNDO_LINE
, startY
, endY
, this ) );
2167 for (int i
= startY
; i
<= endY
; i
++)
2169 for (int n
= 0; n
< 4; n
++)
2171 if (m_lines
[i
].m_text
[0u] == ' ')
2172 m_lines
[i
].m_text
.erase(0u,1u);
2177 bool wxTextCtrl::HasSelection()
2179 return ((m_selStartY
!= m_selEndY
) || (m_selStartX
!= m_selEndX
));
2182 void wxTextCtrl::ClearSelection()
2190 void wxTextCtrl::RefreshLine( int n
)
2192 int y
= n
*m_lineHeight
;
2194 CalcScrolledPosition( x
, y
, &x
, &y
);
2195 wxRect
rect( 0+2, y
+2, 10000, m_lineHeight
);
2196 Refresh( TRUE
, &rect
);
2199 void wxTextCtrl::RefreshDown( int n
)
2203 GetClientSize( &size_x
, &size_y
);
2207 GetViewStart( &view_x
, &view_y
);
2215 int y
= n
*m_lineHeight
;
2217 CalcScrolledPosition( x
, y
, &x
, &y
);
2219 wxRect
rect( 0+2, y
+2, 10000, size_y
);
2220 Refresh( TRUE
, &rect
);
2224 void wxTextCtrl::MoveCursor( int new_x
, int new_y
, bool shift
, bool centre
)
2226 if (!m_editable
) return;
2228 // if (IsSingleLine() || (m_lang == wxSOURCE_LANG_NONE))
2230 if (new_x
> m_lines
[new_y
].m_text
.Len())
2231 new_x
= m_lines
[new_y
].m_text
.Len();
2234 if ((new_x
== m_cursorX
) && (new_y
== m_cursorY
)) return;
2236 bool no_cursor_refresh
= FALSE
;
2237 bool has_selection
= HasSelection();
2242 bool erase_background
= TRUE
;
2246 m_selStartX
= m_cursorX
;
2247 m_selStartY
= m_cursorY
;
2251 if (new_y
> m_selStartY
)
2253 y
= m_selStartY
*m_lineHeight
;
2254 h
= (new_y
-m_selStartY
+1)*m_lineHeight
;
2256 else if (new_y
== m_selStartY
)
2258 x
= PosToPixel( new_y
, m_selStartX
);
2259 w
= PosToPixel( new_y
, new_x
) - x
;
2263 w
= -w
+ 2; // +2 for the cursor
2265 y
= m_selStartY
*m_lineHeight
;
2270 y
= new_y
*m_lineHeight
;
2271 h
= (-new_y
+m_selStartY
+1)*m_lineHeight
;
2274 no_cursor_refresh
= TRUE
;
2280 if (new_y
== m_selEndY
)
2282 y
= new_y
*m_lineHeight
;
2284 if (m_selEndX
> new_x
)
2286 // x = new_x*m_charWidth;
2287 x
= PosToPixel( new_y
, new_x
);
2288 // w = (m_selEndX-new_x)*m_charWidth;
2289 w
= PosToPixel( new_y
, m_selEndX
) - x
;
2293 // x = m_selEndX*m_charWidth;
2294 x
= PosToPixel( new_y
, m_selEndX
);
2295 // w = (-m_selEndX+new_x)*m_charWidth;
2296 w
= PosToPixel( new_y
, new_x
) - x
;
2303 if (new_y
> m_selEndY
)
2305 y
= m_selEndY
*m_lineHeight
;
2306 h
= (new_y
-m_selEndY
+1) * m_lineHeight
;
2308 erase_background
= ((m_selEndY
< m_selStartY
) ||
2309 ((m_selEndY
== m_selStartY
) && (m_selEndX
< m_selStartX
)));
2313 y
= new_y
*m_lineHeight
;
2314 h
= (-new_y
+m_selEndY
+1) * m_lineHeight
;
2316 erase_background
= ((m_selEndY
> m_selStartY
) ||
2317 ((m_selEndY
== m_selStartY
) && (m_selEndX
> m_selStartX
)));
2319 no_cursor_refresh
= TRUE
;
2328 CalcScrolledPosition( x
, y
, &x
, &y
);
2329 wxRect
rect( x
+2, y
+2, w
, h
);
2330 Refresh( erase_background
, &rect
);
2336 int ry1
= m_selEndY
;
2337 int ry2
= m_selStartY
;
2351 int y
= ry1
*m_lineHeight
;
2352 CalcScrolledPosition( x
, y
, &x
, &y
);
2353 wxRect
rect( 0, y
+2, 10000, (ry2
-ry1
+1)*m_lineHeight
);
2355 Refresh( TRUE
, &rect
);
2360 printf( "startx %d starty %d endx %d endy %d\n",
2361 m_selStartX, m_selStartY, m_selEndX, m_selEndY );
2363 printf( "has %d\n", (int)HasSelection() );
2366 if (!no_cursor_refresh
)
2368 // int x = m_cursorX*m_charWidth;
2369 int x
= PosToPixel( m_cursorY
, m_cursorX
);
2370 int y
= m_cursorY
*m_lineHeight
;
2371 CalcScrolledPosition( x
, y
, &x
, &y
);
2372 wxRect
rect( x
+2, y
+2, 4, m_lineHeight
+2 );
2377 Refresh( TRUE
, &rect
);
2379 if (FindFocus() == this)
2381 wxClientDC
dc(this);
2383 dc
.SetPen( *wxTRANSPARENT_PEN
);
2384 //dc.SetBrush( *wxRED_BRUSH );
2385 dc
.SetBrush( *wxBLACK_BRUSH
);
2386 // int xx = m_cursorX*m_charWidth;
2387 int xx
= PosToPixel( m_cursorY
, m_cursorX
);
2388 dc
.DrawRectangle( xx
+2, m_cursorY
*m_lineHeight
+2, 2, m_lineHeight
);
2394 GetClientSize( &size_x
, &size_y
);
2395 size_x
/= m_charWidth
;
2396 size_y
/= m_lineHeight
;
2400 GetViewStart( &view_x
, &view_y
);
2404 int sy
= m_cursorY
- (size_y
/2);
2410 if (m_cursorY
< view_y
)
2411 Scroll( -1, m_cursorY
);
2412 else if (m_cursorY
> view_y
+size_y
-1)
2413 Scroll( -1, m_cursorY
-size_y
+1 );
2416 //int xx = m_cursorX;
2417 int xx
= PosToPixel( m_cursorY
, m_cursorX
) / m_charWidth
;
2421 else if (xx
> view_x
+size_x
-1)
2422 Scroll( xx
-size_x
+1, -1 );
2425 void wxTextCtrl::MyAdjustScrollbars()
2430 int y_range
= m_lines
.GetCount();
2433 GetClientSize( NULL
, &height
);
2435 if (height
>= m_lines
.GetCount() *m_lineHeight
)
2440 GetViewStart( &view_x
, &view_y
);
2442 SetScrollbars( m_charWidth
, m_lineHeight
, m_longestLine
+2, y_range
, view_x
, view_y
);
2445 //-----------------------------------------------------------------------------
2446 // clipboard handlers
2447 //-----------------------------------------------------------------------------
2449 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2454 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2459 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2464 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2469 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2474 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2476 event
.Enable( CanCut() );
2479 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2481 event
.Enable( CanCopy() );
2484 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2486 event
.Enable( CanPaste() );
2489 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2491 event
.Enable( CanUndo() );
2494 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2496 event
.Enable( CanRedo() );
2499 wxSize
wxTextCtrl::DoGetBestSize() const
2503 wxSize
ret(80, m_lineHeight
+ 4);
2505 if (HasFlag(wxBORDER_SUNKEN
) || HasFlag(wxBORDER_RAISED
))
2508 if (HasFlag(wxBORDER_SIMPLE
))
2515 return wxSize(80, 60);
2519 // ----------------------------------------------------------------------------
2521 // ----------------------------------------------------------------------------
2523 void wxTextCtrl::Freeze()
2527 void wxTextCtrl::Thaw()
2531 void wxTextCtrl::OnSetFocus( wxFocusEvent
& event
)
2533 // To hide or show caret, as appropriate
2537 void wxTextCtrl::OnKillFocus( wxFocusEvent
& event
)
2539 // To hide or show caret, as appropriate
2543 // ----------------------------------------------------------------------------
2544 // text control scrolling
2545 // ----------------------------------------------------------------------------
2547 bool wxTextCtrl::ScrollLines(int lines
)
2549 wxFAIL_MSG( "wxTextCtrl::ScrollLines not implemented");
2554 bool wxTextCtrl::ScrollPages(int pages
)
2556 wxFAIL_MSG( "wxTextCtrl::ScrollPages not implemented");