Home
last modified time | relevance | path

Searched refs:d_selectionStart (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/cegui/cegui-0.8.7/cegui/src/
H A DRenderedStringTextComponent.cpp43 d_selectionStart(0), in RenderedStringTextComponent()
53 d_selectionStart(0), in RenderedStringTextComponent()
64 d_selectionStart(0), in RenderedStringTextComponent()
75 d_selectionStart(0), in RenderedStringTextComponent()
135 d_selectionStart = d_selectionLength = 0; in setSelection()
141 d_selectionStart = fnt->getCharAtPixel(d_text, start); in setSelection()
142 d_selectionLength = fnt->getCharAtPixel(d_text, end) - d_selectionStart; in setSelection()
212 if (d_selectionStart > 0) in draw()
319 const size_t sel_end = d_selectionStart + d_selectionLength - 1; in split()
320 lhs->d_selectionStart = d_selectionStart; in split()
[all …]
/dports/graphics/cegui/cegui-0.8.7/cegui/src/widgets/
H A DEditbox.cpp68 d_selectionStart(0), in Editbox()
113 return (d_selectionStart != d_selectionEnd) ? d_selectionStart : d_caretPos; in getSelectionStartIndex()
119 return (d_selectionStart != d_selectionEnd) ? d_selectionEnd : d_caretPos; in getSelectionEndIndex()
125 return d_selectionEnd - d_selectionStart; in getSelectionLength()
214 if ((start_pos != d_selectionStart) || (end_pos != d_selectionEnd)) in setSelection()
217 d_selectionStart = start_pos; in setSelection()
299 setCaretIndex(d_selectionStart); in eraseSelectedText()
H A DMultiLineEditbox.cpp103 d_selectionStart(0), in MultiLineEditbox()
169 return (d_selectionStart != d_selectionEnd) ? d_selectionStart : d_caretPos; in getSelectionStartIndex()
178 return (d_selectionStart != d_selectionEnd) ? d_selectionEnd : d_caretPos; in getSelectionEndIndex()
187 return d_selectionEnd - d_selectionStart; in getSelectionLength()
258 if ((start_pos != d_selectionStart) || (end_pos != d_selectionEnd)) in setSelection()
261 d_selectionStart = start_pos; in setSelection()
1151 setSelection(d_selectionStart, d_caretPos); in handlePageDown()
/dports/graphics/cegui/cegui-0.8.7/cegui/include/CEGUI/
H A DRenderedStringTextComponent.h90 size_t d_selectionStart, d_selectionLength; variable
/dports/graphics/cegui/cegui-0.8.7/cegui/include/CEGUI/widgets/
H A DEditbox.h626 size_t d_selectionStart; variable
H A DMultiLineEditbox.h757 size_t d_selectionStart; //!< Start of selection area. variable