|
OpenTTD Source 20251117-master-g7398d2e290
|
Class for iterating over different kind of parts of a string. More...
#include <string_base.h>
Public Types | |
| enum | IterType : uint8_t { ITER_CHARACTER , ITER_WORD } |
| Type of the iterator. More... | |
Public Member Functions | |
| virtual void | SetString (std::string_view s)=0 |
| Set a new iteration string. | |
| virtual size_t | SetCurPosition (size_t pos)=0 |
| Change the current string cursor. | |
| virtual size_t | Next (IterType what=ITER_CHARACTER)=0 |
| Advance the cursor by one iteration unit. | |
| virtual size_t | Prev (IterType what=ITER_CHARACTER)=0 |
| Move the cursor back by one iteration unit. | |
Static Public Member Functions | |
| static std::unique_ptr< StringIterator > | Create () |
| Create a new iterator instance. | |
Static Public Attributes | |
| static const size_t | END = SIZE_MAX |
| Sentinel to indicate end-of-iteration. | |
Class for iterating over different kind of parts of a string.
Definition at line 14 of file string_base.h.
| enum StringIterator::IterType : uint8_t |
Type of the iterator.
| Enumerator | |
|---|---|
| ITER_CHARACTER | Iterate over characters (or more exactly grapheme clusters). |
| ITER_WORD | Iterate over words. |
Definition at line 17 of file string_base.h.
|
inlineprotected |
Definition at line 61 of file string_base.h.
|
static |
Create a new iterator instance.
Definition at line 746 of file string.cpp.
|
pure virtual |
Advance the cursor by one iteration unit.
Implemented in OSXStringIterator, UniscribeStringIterator, and IcuStringIterator.
|
pure virtual |
Move the cursor back by one iteration unit.
Implemented in OSXStringIterator, UniscribeStringIterator, and IcuStringIterator.
|
pure virtual |
Change the current string cursor.
| pos | New cursor position. |
Implemented in OSXStringIterator, UniscribeStringIterator, and IcuStringIterator.
|
pure virtual |
Set a new iteration string.
Must also be called if the string contents changed. The cursor is reset to the start of the string.
| s | New string. |
Implemented in OSXStringIterator, UniscribeStringIterator, and IcuStringIterator.
|
static |
Sentinel to indicate end-of-iteration.
Definition at line 23 of file string_base.h.
Referenced by Textbuf::MoveNext(), Textbuf::MovePrev(), IcuStringIterator::Next(), IcuStringIterator::Prev(), and Textbuf::UpdateStringIter().