buttonPane.setPreferredSize(new Dimension(514, buttonPaneHeight));
try
{
final Class wizardClass = Class.forName("org.pentaho.reporting.designer.extensions.wizard.NewWizardReportAction");
final AbstractDesignerContextAction newWizardActionListener =
(AbstractDesignerContextAction) wizardClass.newInstance();
newWizardActionListener.setReportDesignerContext(reportDesignerContext);
final JButton wizardBtn = new TransparentButton();
wizardBtn.addActionListener(newWizardActionListener);
wizardBtn.addActionListener(closeActionListener);
wizardBtn.setBorderPainted(true);
wizardBtn.setBounds(120, 147, 90, 118);
buttonPane.add(wizardBtn);
final JLabel wizardLabel =
new JLabel(newWizardActionListener.getValue("WIZARD.BUTTON.TEXT").toString(), JLabel.CENTER);//NON-NLS
wizardLabel.setBounds(80, 273, 165, 56);
buttonPane.add(wizardLabel);
final JButton wizardLabelBtn = new TransparentButton();
wizardLabelBtn.addActionListener(newWizardActionListener);