Consolidate old and new implementations of Get/SetSelection

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2008-09-25 16:10:27 +00:00
parent e4a0fe083d
commit fa70ec2b51
5 changed files with 41 additions and 52 deletions

View File

@@ -1488,16 +1488,10 @@ bool wxStyledTextCtrl::GetModify() const
return SendMsg(2159, 0, 0) != 0;
}
// Select a range of text.
void wxStyledTextCtrl::SetSelection(int start, int end)
{
SendMsg(2160, start, end);
}
// Retrieve the selected text.
wxString wxStyledTextCtrl::GetSelectedText() {
int start;
int end;
long start;
long end;
GetSelection(&start, &end);
int len = end - start;
@@ -3486,15 +3480,6 @@ void wxStyledTextCtrl::SetMargins(int left, int right) {
}
// Retrieve the start and end positions of the current selection.
void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
if (startPos != NULL)
*startPos = SendMsg(SCI_GETSELECTIONSTART);
if (endPos != NULL)
*endPos = SendMsg(SCI_GETSELECTIONEND);
}
// Retrieve the point in the window where a position is displayed.
wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
@@ -3647,8 +3632,8 @@ wxCharBuffer wxStyledTextCtrl::GetLineRaw(int line)
wxCharBuffer wxStyledTextCtrl::GetSelectedTextRaw()
{
int start;
int end;
long start;
long end;
GetSelection(&start, &end);
int len = end - start;