redirecting missing implementations to textctrl
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43289 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -468,39 +468,46 @@ void wxComboBox::SetEditable(bool editable)
|
|||||||
|
|
||||||
void wxComboBox::SetInsertionPoint(long pos)
|
void wxComboBox::SetInsertionPoint(long pos)
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
m_text->SetInsertionPoint(pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxComboBox::SetInsertionPointEnd()
|
void wxComboBox::SetInsertionPointEnd()
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
m_text->SetInsertionPointEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
long wxComboBox::GetInsertionPoint() const
|
long wxComboBox::GetInsertionPoint() const
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
return m_text->GetInsertionPoint();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxTextPos wxComboBox::GetLastPosition() const
|
wxTextPos wxComboBox::GetLastPosition() const
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
return m_text->GetLastPosition();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxComboBox::Replace(long from, long to, const wxString& value)
|
void wxComboBox::Replace(long from, long to, const wxString& value)
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
m_text->Replace(from,to,value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxComboBox::Remove(long from, long to)
|
void wxComboBox::Remove(long from, long to)
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
m_text->Remove(from,to);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxComboBox::SetSelection(long from, long to)
|
void wxComboBox::SetSelection(long from, long to)
|
||||||
{
|
{
|
||||||
// TODO
|
if ( m_text )
|
||||||
|
m_text->SetSelection(from,to);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::DoAppend(const wxString& item)
|
int wxComboBox::DoAppend(const wxString& item)
|
||||||
|
Reference in New Issue
Block a user