* @param messageHtml the HTML to display in the message box
*/
public ProgressMessageBox(String headingHtml, String messageHtml) {
super(headingHtml, messageHtml);
progressBar = new ProgressBar();
contentAppearance.getContentElement(getElement()).appendChild(progressBar.getElement());
progressBar.clearSizeCache();
progressBar.setWidth(300 - getFrameSize().getWidth());