Public Member Functions | |
| BidiCharacterRun (int start, int stop, BidiContext *context, WTF::Unicode::Direction dir) | |
| BidiCharacterRun constructor. | |
| void | destroy () |
| destroy | |
| int | start () const |
| get start | |
| int | stop () const |
| get stop | |
| unsigned char | level () const |
| get level | |
| bool | reversed (bool visuallyOrdered) |
| test if it's reversed | |
| bool | dirOverride (bool visuallyOrdered) |
| test if the BidiCharacterRun direction Override | |
| BidiCharacterRun * | next () const |
| get next BidiCharacterRun | |
Public Attributes | |
| unsigned char | m_level |
| int | m_start |
| int | m_stop |
| bool | m_override |
| BidiCharacterRun * | m_next |
| OWBAL::BidiCharacterRun::BidiCharacterRun | ( | int | start, | |
| int | stop, | |||
| BidiContext * | context, | |||
| WTF::Unicode::Direction | dir | |||
| ) |
BidiCharacterRun constructor.
| void OWBAL::BidiCharacterRun::destroy | ( | ) |
destroy
b->destroy();
| int OWBAL::BidiCharacterRun::start | ( | ) | const |
get start
| [out] | : | start int s = b->start();
|
| int OWBAL::BidiCharacterRun::stop | ( | ) | const |
get stop
| [out] | : | stop int s = b->stop();
|
| unsigned char OWBAL::BidiCharacterRun::level | ( | ) | const |
get level
| [out] | : | level unsigned char l = b->level(); |
| bool OWBAL::BidiCharacterRun::reversed | ( | bool | visuallyOrdered | ) |
test if it's reversed
| [in] | : | visually ordered |
| [out] | : | status bool r = b->reversed(v);
|
| bool OWBAL::BidiCharacterRun::dirOverride | ( | bool | visuallyOrdered | ) |
test if the BidiCharacterRun direction Override
| [in] | : | visually ordered |
| [out] | : | status bool d = b->dirOverride(v);
|
| BidiCharacterRun* OWBAL::BidiCharacterRun::next | ( | ) | const |
| unsigned char OWBAL::BidiCharacterRun::m_level |