float x = getX(), y = getY();
float width = getWidth(), height = getHeight();
float padTop = getPadTop();
if (style.stageBackground != null) {
Color color = getColor();
batch.setColor(color.r, color.g, color.b, color.a * parentAlpha);
Stage stage = getStage();
stageToLocalCoordinates(/* in/out */tmpPosition.set(0, 0));
stageToLocalCoordinates(/* in/out */tmpSize.set(stage.getWidth(), stage.getHeight()));
style.stageBackground.draw(batch, x + tmpPosition.x, y + tmpPosition.y, x + tmpSize.x, y + tmpSize.y);