| 607 | void CUIStatic::SetTextST(LPCSTR str_id) { SetText(*CStringTable().translate(str_id)); } |
| 608 | |
| 609 | void CUIStatic::DrawHighlightedText() |
| 610 | { |
| 611 | Frect rect; |
| 612 | GetAbsoluteRect(rect); |
| 613 | u32 def_col = m_pLines->GetTextColor(); |
| 614 | m_pLines->SetTextColor(m_HighlightColor); |
| 615 | m_pLines->Draw(rect.left + 0 + m_TextOffset.x, rect.top - 0 + m_TextOffset.y); |
| 616 | m_pLines->SetTextColor(def_col); |
| 617 | } |
| 618 | |
| 619 | bool CUIStatic::IsHighlightText() { return m_bCursorOverWindow; } |
nothing calls this directly
no test coverage detected