예제 #1
0
파일: Label.cpp 프로젝트: MStr3am/sfui
void    Label::OnPaint(RenderTarget& target, RenderQueue& queue) const
{
    Widget::OnPaint(target, queue);

    queue.SetColor(GetTextColor());
    target.Draw(mCaption);
}
예제 #2
0
파일: Widget.cpp 프로젝트: MStr3am/sfui
 void    Widget::OnPaint(RenderTarget& target, RenderQueue& queue) const
 {
     queue.SetColor(GetColor());
     target.Draw(Shape::Rectangle(0, 0, mSize.x, mSize.y, GetColor(), 1.f, GetBorderColor()));
 }