added action handlers for config dialog

This commit is contained in:
Alex Kogon
2015-09-14 11:57:58 +02:00
parent 7f2df7ca9c
commit 4cf426eb99
3 changed files with 134 additions and 2 deletions

View File

@@ -19,11 +19,18 @@ public class SynthuseConfigDialog extends JDialog {
public SynthuseConfigDialog(JFrame aParentFrame, Config aConfig) {
super(aParentFrame);
this.setTitle("Synthuse Properties");
theSynthuseConfigPanel = new SynthuseConfigPanel();
this.setConfig(aConfig);
this.setTitle("Synthuse Properties");
theSynthuseConfigPanel = new SynthuseConfigPanel();
SynthuseConfigDialogControllers.bindActionControllers(theSynthuseConfigPanel,theConfig);
this.getContentPane().add(theSynthuseConfigPanel);
this.setSize(492, 260);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {