From 6b2b646a698238fd52132090960f222d02a2923a Mon Sep 17 00:00:00 2001 From: tkellner Date: Wed, 10 Apr 2013 19:09:07 +0000 Subject: + added progress message for waiting composite git-svn-id: https://joinup.ec.europa.eu/svn/pdf-over/trunk@160 174cde9d-5d70-4d2a-aa98-46368bc2aaf7 --- .../at/asit/pdfover/gui/composites/WaitingComposite.java | 15 +++++++++++++-- .../resources/at/asit/pdfover/gui/messages.properties | 1 + 2 files changed, 14 insertions(+), 2 deletions(-) (limited to 'pdf-over-gui') diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/WaitingComposite.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/WaitingComposite.java index 1b609dc9..b9b74149 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/WaitingComposite.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/WaitingComposite.java @@ -21,8 +21,10 @@ import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.ProgressBar; +import at.asit.pdfover.gui.Messages; import at.asit.pdfover.gui.workflow.states.State; /** @@ -39,10 +41,19 @@ public class WaitingComposite extends StateComposite { super(parent, style, state); setLayout(new FormLayout()); + Label lbl_description = new Label(this, SWT.NATIVE); + FormData fd_lbl_description = new FormData(); + fd_lbl_description.bottom = new FormAttachment(50, -10); + fd_lbl_description.left = new FormAttachment(0, +10); + fd_lbl_description.right = new FormAttachment(100, -10); + lbl_description.setLayoutData(fd_lbl_description); + lbl_description.setAlignment(SWT.CENTER); + lbl_description.setText(Messages.getString("waiting.message")); //$NON-NLS-1$ + ProgressBar progressBar = new ProgressBar(this, SWT.HORIZONTAL | SWT.INDETERMINATE); FormData fd_progressBar = new FormData(); - fd_progressBar.top = new FormAttachment(50, -15); - fd_progressBar.bottom = new FormAttachment(50, +15); + fd_progressBar.top = new FormAttachment(50, +10); + fd_progressBar.bottom = new FormAttachment(50, +40); fd_progressBar.left = new FormAttachment(50, -100); fd_progressBar.right = new FormAttachment(50, +100); progressBar.setLayoutData(fd_progressBar); diff --git a/pdf-over-gui/src/main/resources/at/asit/pdfover/gui/messages.properties b/pdf-over-gui/src/main/resources/at/asit/pdfover/gui/messages.properties index 872eef8a..35d33c01 100644 --- a/pdf-over-gui/src/main/resources/at/asit/pdfover/gui/messages.properties +++ b/pdf-over-gui/src/main/resources/at/asit/pdfover/gui/messages.properties @@ -77,6 +77,7 @@ exception.InvalidEmblemFile=is an invalid signature logo file\! exception.InvalidPort=is invalid has to be between 1 and exception.PasswordTooLong=Given password is too long\! exception.PasswordTooShort=Given password is too short\! +waiting.message=Signature creation in progress ... main.configuration=Configuration main.done=Finish main.position=Positioning -- cgit v1.2.3