summaryrefslogtreecommitdiff
path: root/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java
diff options
context:
space:
mode:
authortkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 19:15:04 +0000
committertkellner <tkellner@174cde9d-5d70-4d2a-aa98-46368bc2aaf7>2013-04-10 19:15:04 +0000
commit620b7500e3e590d6ad67425aece586103f329d70 (patch)
treef1f528113de4bc626d6b94804c3c74ac2c4ede47 /pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java
parentd8f1e6183bf5af499bf733033be7b5a2dd997a7e (diff)
downloadpdf-over-620b7500e3e590d6ad67425aece586103f329d70.tar.gz
pdf-over-620b7500e3e590d6ad67425aece586103f329d70.tar.bz2
pdf-over-620b7500e3e590d6ad67425aece586103f329d70.zip
Merge branch 'master' of git@abyss:12PDF-OVER-4.0.git
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@221 174cde9d-5d70-4d2a-aa98-46368bc2aaf7
Diffstat (limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java')
-rw-r--r--pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java70
1 files changed, 47 insertions, 23 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java
index f87604f0..9376c0ae 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/ConfigurationComposite.java
@@ -98,12 +98,12 @@ public class ConfigurationComposite extends StateComposite {
fD_tabFolder[0].setHeight(Constants.TEXT_SIZE_NORMAL);
tabFolder.setFont(new Font(Display.getCurrent(), fD_tabFolder[0]));
- TabItem simpleTabItem = new TabItem(tabFolder, SWT.NONE);
- simpleTabItem.setText(Messages.getString("config.Simple")); //$NON-NLS-1$
+ this.simpleTabItem = new TabItem(tabFolder, SWT.NONE);
+ this.simpleTabItem.setText(Messages.getString("config.Simple")); //$NON-NLS-1$
ScrolledComposite simpleCompositeScr = new ScrolledComposite(tabFolder,
SWT.H_SCROLL | SWT.V_SCROLL);
- simpleTabItem.setControl(simpleCompositeScr);
+ this.simpleTabItem.setControl(simpleCompositeScr);
this.simpleConfigComposite = new SimpleConfigurationComposite(
simpleCompositeScr, SWT.NONE, state,
this.configurationContainer);
@@ -113,12 +113,12 @@ public class ConfigurationComposite extends StateComposite {
simpleCompositeScr.setMinSize(this.simpleConfigComposite.computeSize(
SWT.DEFAULT, SWT.DEFAULT));
- TabItem advancedTabItem = new TabItem(tabFolder, SWT.NONE);
- advancedTabItem.setText(Messages.getString("config.Advanced")); //$NON-NLS-1$
+ this.advancedTabItem = new TabItem(tabFolder, SWT.NONE);
+ this.advancedTabItem.setText(Messages.getString("config.Advanced")); //$NON-NLS-1$
ScrolledComposite advancedCompositeScr = new ScrolledComposite(
tabFolder, SWT.H_SCROLL | SWT.V_SCROLL);
- advancedTabItem.setControl(advancedCompositeScr);
+ this.advancedTabItem.setControl(advancedCompositeScr);
this.advancedConfigComposite = new AdvancedConfigurationComposite(
advancedCompositeScr, SWT.NONE, state,
this.configurationContainer);
@@ -128,14 +128,14 @@ public class ConfigurationComposite extends StateComposite {
advancedCompositeScr.setMinSize(this.advancedConfigComposite
.computeSize(SWT.DEFAULT, SWT.DEFAULT));
- tabFolder.setSelection(simpleTabItem);
+ tabFolder.setSelection(this.simpleTabItem);
- Button btnSpeichern = new Button(this, SWT.NONE);
+ this.btnSpeichern = new Button(this, SWT.NONE);
FormData fd_btnSpeichern = new FormData();
fd_btnSpeichern.right = new FormAttachment(100, -5);
fd_btnSpeichern.bottom = new FormAttachment(100);
- btnSpeichern.setLayoutData(fd_btnSpeichern);
- btnSpeichern.addSelectionListener(new SelectionAdapter() {
+ this.btnSpeichern.setLayoutData(fd_btnSpeichern);
+ this.btnSpeichern.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
if (ConfigurationComposite.this.storeConfiguration()) {
@@ -144,21 +144,21 @@ public class ConfigurationComposite extends StateComposite {
}
}
});
- btnSpeichern.setText(Messages.getString("common.Save")); //$NON-NLS-1$
- this.getShell().setDefaultButton(btnSpeichern);
+ this.btnSpeichern.setText(Messages.getString("common.Save")); //$NON-NLS-1$
+ this.getShell().setDefaultButton(this.btnSpeichern);
- FontData[] fD_btnSpeichern = btnSpeichern.getFont().getFontData();
+ FontData[] fD_btnSpeichern = this.btnSpeichern.getFont().getFontData();
fD_btnSpeichern[0].setHeight(Constants.TEXT_SIZE_BUTTON);
- btnSpeichern
+ this.btnSpeichern
.setFont(new Font(Display.getCurrent(), fD_btnSpeichern[0]));
- Button btnAbbrechen = new Button(this, SWT.NONE);
+ this.btnAbbrechen = new Button(this, SWT.NONE);
FormData fd_btnAbrechen = new FormData();
- fd_btnAbrechen.right = new FormAttachment(btnSpeichern, -10);
- fd_btnAbrechen.bottom = new FormAttachment(btnSpeichern, 0, SWT.BOTTOM);
- btnAbbrechen.setLayoutData(fd_btnAbrechen);
- btnAbbrechen.setText(Messages.getString("common.Cancel")); //$NON-NLS-1$
- btnAbbrechen.addSelectionListener(new SelectionAdapter() {
+ fd_btnAbrechen.right = new FormAttachment(this.btnSpeichern, -10);
+ fd_btnAbrechen.bottom = new FormAttachment(this.btnSpeichern, 0, SWT.BOTTOM);
+ this.btnAbbrechen.setLayoutData(fd_btnAbrechen);
+ this.btnAbbrechen.setText(Messages.getString("common.Cancel")); //$NON-NLS-1$
+ this.btnAbbrechen.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
ConfigurationComposite.this.userDone = true;
@@ -166,14 +166,14 @@ public class ConfigurationComposite extends StateComposite {
}
});
- FontData[] fD_btnAbbrechen = btnAbbrechen.getFont().getFontData();
+ FontData[] fD_btnAbbrechen = this.btnAbbrechen.getFont().getFontData();
fD_btnAbbrechen[0].setHeight(Constants.TEXT_SIZE_BUTTON);
- btnAbbrechen
+ this.btnAbbrechen
.setFont(new Font(Display.getCurrent(), fD_btnAbbrechen[0]));
FormData fd_composite = new FormData();
fd_composite.top = new FormAttachment(0, 5);
- fd_composite.bottom = new FormAttachment(btnSpeichern, -10);
+ fd_composite.bottom = new FormAttachment(this.btnSpeichern, -10);
fd_composite.left = new FormAttachment(0, 5);
fd_composite.right = new FormAttachment(100, -5);
this.containerComposite.setLayoutData(fd_composite);
@@ -249,6 +249,14 @@ public class ConfigurationComposite extends StateComposite {
*/
boolean userDone = false;
+ private TabItem simpleTabItem;
+
+ private TabItem advancedTabItem;
+
+ private Button btnSpeichern;
+
+ private Button btnAbbrechen;
+
/**
* Sets the configuration manipulator
*
@@ -282,6 +290,8 @@ public class ConfigurationComposite extends StateComposite {
this.configurationContainer.setSignatureNote(
this.configProvider.getSigantureNote());
+ this.configurationContainer.setLocale(this.configProvider.getConfigLocale());
+
this.configurationContainer.setBKUSelection(this.configProvider
.getDefaultBKU());
try {
@@ -392,6 +402,8 @@ public class ConfigurationComposite extends StateComposite {
this.configManipulator.setDefaultSignaturePosition(null);
}
+ this.configManipulator.setLocale(this.configurationContainer.getLocale());
+
this.configManipulator
.setPlaceholderTransparency(this.configurationContainer
.getPlaceholderTransparency());
@@ -428,6 +440,7 @@ public class ConfigurationComposite extends StateComposite {
// return false;
}
} while (redo);
+
return status;
}
@@ -460,4 +473,15 @@ public class ConfigurationComposite extends StateComposite {
((StateComposite) ctrl).doLayout();
}
}
+
+ /* (non-Javadoc)
+ * @see at.asit.pdfover.gui.composites.StateComposite#reloadResources()
+ */
+ @Override
+ public void reloadResources() {
+ this.simpleTabItem.setText(Messages.getString("config.Simple")); //$NON-NLS-1$
+ this.advancedTabItem.setText(Messages.getString("config.Advanced")); //$NON-NLS-1$
+ this.btnSpeichern.setText(Messages.getString("common.Save")); //$NON-NLS-1$
+ this.btnAbbrechen.setText(Messages.getString("common.Cancel")); //$NON-NLS-1$
+ }
}