Simplify suite specific branding
[gpl/argeo-suite.git] / org.argeo.suite.workbench.rap / src / org / argeo / suite / workbench / rap / AsSecureEntryPoint.java
index 7c1a93a397bae96b434dd25ddb2561bdc7bd291d..bae894d7cfa3195b758095da47e8c682a8265c1f 100644 (file)
@@ -1,19 +1,11 @@
 package org.argeo.suite.workbench.rap;
 
-import static org.eclipse.swt.SWT.CENTER;
-import static org.eclipse.swt.SWT.LEFT;
-import static org.eclipse.swt.SWT.NO_FOCUS;
-import static org.eclipse.swt.SWT.TOP;
-
 import org.argeo.cms.ui.workbench.rap.RapWorkbenchAdvisor;
 import org.argeo.cms.ui.workbench.rap.RapWorkbenchLogin;
 import org.argeo.cms.util.CmsUtils;
 import org.argeo.cms.widgets.auth.CmsLogin;
 import org.argeo.eclipse.ui.EclipseUiUtils;
 import org.eclipse.swt.SWT;
-import org.eclipse.swt.layout.FormAttachment;
-import org.eclipse.swt.layout.FormData;
-import org.eclipse.swt.layout.FormLayout;
 import org.eclipse.swt.layout.GridData;
 import org.eclipse.swt.layout.GridLayout;
 import org.eclipse.swt.widgets.Composite;
@@ -44,10 +36,10 @@ public class AsSecureEntryPoint extends RapWorkbenchLogin {
                // Logo
                Label headerLbl = new Label(bodyCmp, SWT.WRAP);
                CmsUtils.markup(headerLbl);
+               // Images are declared via the resources extension point in plugin.xml
                String headerStr = "<a href=\"http://argeo.org\" "
-                               + "title=\"Smart Data Productivity Suite, by Argeo\" target=\"_blank\"> "
-                               + "<img src=\"/ui/suite/img/logo.jpg\" width=\"200\" height=\"140\"></img> "
-                               + "</a>";
+                               + "title=\"Smart Data Productivity Suite by Argeo\" target=\"_blank\"> "
+                               + "<img src=\"/img/logo-argeo.png\" width=\"200\" height=\"200\"></img> " + "</a>";
                headerLbl.setText(headerStr);
                GridData gd = new GridData(SWT.LEFT, SWT.CENTER, true, false);
                headerLbl.setLayoutData(gd);
@@ -58,7 +50,7 @@ public class AsSecureEntryPoint extends RapWorkbenchLogin {
                String titleStr = "<big> Please sign in to your personal dashboard</big>";
                titleLbl.setText(titleStr);
                gd = new GridData(SWT.CENTER, SWT.BOTTOM, false, false);
-               gd.verticalIndent = 40;
+               gd.verticalIndent = 15;
                titleLbl.setLayoutData(gd);
 
                // Login composite
@@ -68,12 +60,13 @@ public class AsSecureEntryPoint extends RapWorkbenchLogin {
                gd.verticalIndent = 15;
                loginCmp.setLayoutData(gd);
 
-               // Footer
-               Label footerLbl = new Label(bodyCmp, SWT.WRAP | SWT.CENTER);
-               CmsUtils.markup(footerLbl);
-               String footerStr = "<small>SDPS is a private service. <br/>"
-                               + " Please <a href=\"mailto:contact@argeo.org\">contact us</a> if you have any question.</small>";
-               footerLbl.setText(footerStr);
-               footerLbl.setLayoutData(EclipseUiUtils.fillWidth());
+               // // Footer
+               // Label footerLbl = new Label(bodyCmp, SWT.WRAP | SWT.CENTER);
+               // CmsUtils.markup(footerLbl);
+               // String footerStr = "<small>SDPS is a private service. <br/>"
+               // + " Please <a href=\"mailto:contact@argeo.org\">contact us</a> if you
+               // have any question.</small>";
+               // footerLbl.setText(footerStr);
+               // footerLbl.setLayoutData(EclipseUiUtils.fillWidth());
        }
 }