示例#1
0
void ToggleButton::render(RenderContext& rc) const
{
   rc.image(x(), y(), width(), height(), texture);
   
   if (enabled)
      rc.border(x(), y(), width(), height(), colour::WHITE);
}