Improve multi-layers and introduce documents layer.
[gpl/argeo-suite.git] / org.argeo.suite.ui / src / org / argeo / suite / ui / DefaultLeadPane.java
index 48e6149d6af6aba132523a1b28e4cacf0356f890..77ba555e3b1af3e636f8cb1e9c9ea014c28135aa 100644 (file)
@@ -1,6 +1,5 @@
 package org.argeo.suite.ui;
 
-import java.util.HashMap;
 import java.util.Map;
 
 import javax.jcr.Node;
@@ -14,19 +13,23 @@ import org.argeo.cms.ui.CmsUiProvider;
 import org.argeo.cms.ui.CmsView;
 import org.argeo.cms.ui.util.CmsIcon;
 import org.argeo.cms.ui.util.CmsUiUtils;
-import org.argeo.eclipse.ui.Selected;
 import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridData;
 import org.eclipse.swt.layout.GridLayout;
 import org.eclipse.swt.widgets.Button;
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.Control;
-import org.osgi.service.event.Event;
-import org.osgi.service.event.EventAdmin;
+import org.eclipse.swt.widgets.Label;
 
 /** Side pane listing various perspectives. */
 public class DefaultLeadPane implements CmsUiProvider {
        private final static Log log = LogFactory.getLog(DefaultLeadPane.class);
-       private EventAdmin eventAdmin;
+
+       public static enum Property {
+               defaultLayers;
+       }
+
+       private String[] defaultLayers;
 
        @Override
        public Control createUi(Composite parent, Node node) throws RepositoryException {
@@ -38,31 +41,42 @@ public class DefaultLeadPane implements CmsUiProvider {
                layout.marginRight = 10;
                parent.setLayout(layout);
 
-               Button dashboardB = createButton(parent, SuiteMsg.dashboard.name(), SuiteMsg.dashboard, SuiteIcon.dashboard);
+               Button first = null;
+               for (String layerId : defaultLayers) {
+                       Button b = createButton(parent, layerId, SuiteMsg.dashboard, SuiteIcon.dashboard);
+                       if (first == null)
+                               first = b;
+               }
+
+//             Button dashboardB = createButton(parent, SuiteMsg.dashboard.name(), SuiteMsg.dashboard, SuiteIcon.dashboard);
                if (!cmsView.isAnonymous()) {
-                       createButton(parent, SuiteMsg.documents.name(), SuiteMsg.documents, SuiteIcon.documents);
-                       createButton(parent, SuiteMsg.people.name(), SuiteMsg.people, SuiteIcon.people);
-                       createButton(parent, SuiteMsg.locations.name(), SuiteMsg.locations, SuiteIcon.location);
+//                     createButton(parent, SuiteMsg.documents.name(), SuiteMsg.documents, SuiteIcon.documents);
+//                     createButton(parent, SuiteMsg.people.name(), SuiteMsg.people, SuiteIcon.people);
+//                     createButton(parent, SuiteMsg.locations.name(), SuiteMsg.locations, SuiteIcon.location);
                }
-               return dashboardB;
+               return first;
        }
 
        protected Button createButton(Composite parent, String layer, Localized msg, CmsIcon icon) {
                CmsTheme theme = CmsTheme.getCmsTheme(parent);
                Button button = new Button(parent, SWT.PUSH);
                CmsUiUtils.style(button, SuiteStyle.leadPane);
-               button.setToolTipText(msg.lead());
                button.setImage(icon.getBigIcon(theme));
-               CmsUiUtils.sendEventOnSelect(button, SuiteEvent.switchLayer.topic(), SuiteEvent.LAYER_PARAM, layer);
+               button.setLayoutData(new GridData(SWT.CENTER, SWT.BOTTOM, true, false));
+               // button.setToolTipText(msg.lead());
+               Label lbl = new Label(parent, SWT.NONE);
+               CmsUiUtils.style(lbl, SuiteStyle.leadPane);
+               lbl.setText(msg.lead());
+               lbl.setLayoutData(new GridData(SWT.CENTER, SWT.TOP, true, false));
+               CmsUiUtils.sendEventOnSelect(button, SuiteEvent.switchLayer.topic(), SuiteEvent.LAYER, layer);
                return button;
        }
 
-       public void init(Map<String, String> properties) {
-
-       }
-
-       public void setEventAdmin(EventAdmin eventAdmin) {
-               this.eventAdmin = eventAdmin;
+       public void init(Map<String, Object> properties) {
+               defaultLayers = (String[]) properties.get(Property.defaultLayers.toString());
+               if (defaultLayers == null)
+                       throw new IllegalArgumentException("Default layers must be set.");
+               if (log.isDebugEnabled())
+                       log.debug("Default layers: " + defaultLayers);
        }
-
 }