EVT_CHAR(wxTextCtrl::OnChar)
EVT_MOUSE_EVENTS(wxTextCtrl::OnMouse)
EVT_IDLE(wxTextCtrl::OnIdle)
+ EVT_KILL_FOCUS(wxTextCtrl::OnKillFocus)
+ EVT_SET_FOCUS(wxTextCtrl::OnSetFocus)
EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
if ((style & wxTE_MULTILINE) != 0)
style |= wxALWAYS_SHOW_SB;
- wxTextCtrlBase::Create( parent, id, wxDefaultPosition, size,
+ wxTextCtrlBase::Create( parent, id, pos /* wxDefaultPosition */, size,
style|wxVSCROLL|wxHSCROLL|wxNO_FULL_REPAINT_ON_RESIZE );
SetBackgroundColour( *wxWHITE );
void wxTextCtrl::SetValue(const wxString& value)
{
m_modified = TRUE;
+
+ if ((GetWindowStyle() & wxTE_MULTILINE) == 0)
+ {
+ if (value == GetValue())
+ return;
+ }
+
m_cursorX = 0;
m_cursorY = 0;
ClearSelection();
DrawLine( dc, 0+2, i*m_lineHeight+2, m_lines[i].m_text, i );
}
- if (m_editable)
+ if (m_editable && (FindFocus() == this))
{
- dc.SetBrush( *wxRED_BRUSH );
+ ///dc.SetBrush( *wxRED_BRUSH );
+ dc.SetBrush( *wxBLACK_BRUSH );
// int xx = m_cursorX*m_charWidth;
int xx = PosToPixel( m_cursorY, m_cursorX );
dc.DrawRectangle( xx+2, m_cursorY*m_lineHeight+2, 2, m_lineHeight );
if (shift)
{
int x,y,w,h;
+ bool erase_background = TRUE;
if (!has_selection)
{
{
y = m_selEndY*m_lineHeight;
h = (new_y-m_selEndY+1) * m_lineHeight;
+
+ erase_background = ((m_selEndY < m_selStartY) ||
+ ((m_selEndY == m_selStartY) && (m_selEndX < m_selStartX)));
}
else
{
y = new_y*m_lineHeight;
h = (-new_y+m_selEndY+1) * m_lineHeight;
+
+ erase_background = ((m_selEndY > m_selStartY) ||
+ ((m_selEndY == m_selStartY) && (m_selEndX > m_selStartX)));
}
no_cursor_refresh = TRUE;
m_cursorX = new_x;
CalcScrolledPosition( x, y, &x, &y );
wxRect rect( x+2, y+2, w, h );
- Refresh( TRUE, &rect );
+ Refresh( erase_background, &rect );
}
else
{
m_cursorY = new_y;
Refresh( TRUE, &rect );
-
- wxClientDC dc(this);
- PrepareDC( dc );
- dc.SetPen( *wxTRANSPARENT_PEN );
- dc.SetBrush( *wxRED_BRUSH );
- // int xx = m_cursorX*m_charWidth;
- int xx = PosToPixel( m_cursorY, m_cursorX );
- dc.DrawRectangle( xx+2, m_cursorY*m_lineHeight+2, 2, m_lineHeight );
+
+ if (FindFocus() == this)
+ {
+ wxClientDC dc(this);
+ PrepareDC( dc );
+ dc.SetPen( *wxTRANSPARENT_PEN );
+ //dc.SetBrush( *wxRED_BRUSH );
+ dc.SetBrush( *wxBLACK_BRUSH );
+ // int xx = m_cursorX*m_charWidth;
+ int xx = PosToPixel( m_cursorY, m_cursorX );
+ dc.DrawRectangle( xx+2, m_cursorY*m_lineHeight+2, 2, m_lineHeight );
+ }
}
int size_x = 0;
{
}
+void wxTextCtrl::OnSetFocus( wxFocusEvent& event )
+{
+ // To hide or show caret, as appropriate
+ Refresh();
+}
+
+void wxTextCtrl::OnKillFocus( wxFocusEvent& event )
+{
+ // To hide or show caret, as appropriate
+ Refresh();
+}
+
// ----------------------------------------------------------------------------
// text control scrolling
// ----------------------------------------------------------------------------