if(!mCaption.equals("") && font != null)
{
int captionX = getRect().x+((getRect().width/2)-(font.getStringWidth(mCaption)/2));
int captionY = getRect().y+((getRect().height/2)-(font.getLineHeight()/2));
font.setColor(getFontColor().r, getFontColor().g, getFontColor().b);
font.drawTextInRect(mCaption, drawArea.x + captionX, drawArea.y + captionY, inRect);
}
}
@Override
public void mouseMove(int x, int y)