OpenTTD
|
A single line worth of VisualRuns. More...
Public Member Functions | |
ICULine (ParagraphLayout::Line *l) | |
int | GetLeading () const |
int | GetWidth () const |
int | CountRuns () const |
const ParagraphLayouter::VisualRun * | GetVisualRun (int run) const |
int | GetInternalCharLength (WChar c) const |
![]() | |
void | Clear () |
Remove all items from the list. | |
![]() | |
SmallVector (const SmallVector &other) | |
Copy constructor. | |
SmallVector (const SmallVector< ICUVisualRun *, X > &other) | |
Generic copy constructor. | |
SmallVector & | operator= (const SmallVector &other) |
Assignment. | |
SmallVector & | operator= (const SmallVector< ICUVisualRun *, X > &other) |
Generic assignment. | |
void | Assign (const SmallVector< ICUVisualRun *, X > &other) |
Assign items from other vector. | |
void | Reset () |
Remove all items from the list and free allocated memory. | |
void | Compact () |
Compact the list down to the smallest block size boundary. | |
ICUVisualRun ** | Append (uint to_add=1) |
Append an item and return it. | |
void | Resize (uint num_items) |
Set the size of the vector, effectively truncating items from the end or appending uninitialised ones. | |
const ICUVisualRun ** | Find (const ICUVisualRun *&item) const |
Search for the first occurrence of an item. | |
ICUVisualRun ** | Find (const ICUVisualRun *&item) |
Search for the first occurrence of an item. | |
int | FindIndex (const ICUVisualRun *&item) const |
Search for the first occurrence of an item. | |
bool | Contains (const ICUVisualRun *&item) const |
Tests whether a item is present in the vector. | |
void | Erase (ICUVisualRun **item) |
Removes given item from this vector. | |
void | ErasePreservingOrder (uint pos, uint count=1) |
Remove items from the vector while preserving the order of other items. | |
bool | Include (const ICUVisualRun *&item) |
Tests whether a item is present in the vector, and appends it to the end if not. | |
uint | Length () const |
Get the number of items in the list. | |
const ICUVisualRun ** | Begin () const |
Get the pointer to the first item (const) | |
ICUVisualRun ** | Begin () |
Get the pointer to the first item. | |
const ICUVisualRun ** | End () const |
Get the pointer behind the last valid item (const) | |
ICUVisualRun ** | End () |
Get the pointer behind the last valid item. | |
const ICUVisualRun ** | Get (uint index) const |
Get the pointer to item "number" (const) | |
ICUVisualRun ** | Get (uint index) |
Get the pointer to item "number". | |
const ICUVisualRun *& | operator[] (uint index) const |
Get item "number" (const) | |
ICUVisualRun *& | operator[] (uint index) |
Get item "number". |
Private Attributes | |
ParagraphLayout::Line * | l |
The actual ICU line. |
Additional Inherited Members | |
![]() | |
ICUVisualRun ** | data |
The pointer to the first item. | |
uint | items |
The number of items stored. | |
uint | capacity |
The available space for storing items. |
A single line worth of VisualRuns.
Definition at line 152 of file gfx_layout.cpp.