MCPcopy Create free account
hub / github.com/MyGUI/mygui / getTagColour

Method getTagColour

MyGUIEngine/src/MyGUI_TextIterator.cpp:106–121  ·  view source on GitHub ↗

возвращает цвет

Source from the content-addressed store, hash-verified

104
105 // возвращает цвет
106 bool TextIterator::getTagColour(UString& _colour) const
107 {
108 if (mCurrent == mEnd)
109 return false;
110
111 UString::utf32string::iterator iter = mCurrent;
112
113 // нам нужен последний цвет
114 bool ret = false;
115 while (getTagColour(_colour, iter))
116 {
117 ret = true;
118 }
119
120 return ret;
121 }
122
123 bool TextIterator::setTagColour(const Colour& _colour)
124 {

Callers 4

getTextIntervalMethod · 0.80
_setTextColourMethod · 0.80
insertTextMethod · 0.80
eraseTextMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected