Only shows dashboard for the time being.
[gpl/argeo-suite.git] / org.argeo.suite.ui / src / org / argeo / suite / ui / DefaultLeadPane.java
index cbc0a7846636223bf9862fc40b941a8dacd15a6d..1f371823aa1211c958d4ae27377b6041298cec5d 100644 (file)
@@ -1,6 +1,5 @@
 package org.argeo.suite.ui;
 
-import java.util.Dictionary;
 import java.util.Map;
 
 import javax.jcr.Node;
@@ -13,15 +12,17 @@ import org.argeo.cms.ui.CmsView;
 import org.argeo.cms.ui.util.CmsIcon;
 import org.argeo.cms.ui.util.CmsUiUtils;
 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.cm.ConfigurationException;
-import org.osgi.service.cm.ManagedService;
+import org.eclipse.swt.widgets.Label;
 
 /** Side pane listing various perspectives. */
-public class DefaultLeadPane implements CmsUiProvider, ManagedService {
+public class DefaultLeadPane implements CmsUiProvider {
+       // private final static Log log = LogFactory.getLog(DefaultLeadPane.class);
+
        @Override
        public Control createUi(Composite parent, Node node) throws RepositoryException {
                CmsView cmsView = CmsView.getCmsView(parent);
@@ -32,30 +33,30 @@ public class DefaultLeadPane implements CmsUiProvider, ManagedService {
                layout.marginRight = 10;
                parent.setLayout(layout);
 
-               Button dashboardB = createButton(parent, SuiteMsg.dashboard, SuiteIcon.dashboard);
+               Button dashboardB = createButton(parent, SuiteMsg.dashboard.name(), SuiteMsg.dashboard, SuiteIcon.dashboard);
                if (!cmsView.isAnonymous()) {
-                       createButton(parent, SuiteMsg.documents, SuiteIcon.documents);
-                       createButton(parent, SuiteMsg.people, SuiteIcon.people);
-                       createButton(parent, 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;
        }
 
-       protected Button createButton(Composite parent, Localized msg, CmsIcon icon) {
+       protected Button createButton(Composite parent, String layer, Localized msg, CmsIcon icon) {
                CmsTheme theme = CmsTheme.getCmsTheme(parent);
-               Button button = new Button(parent, SWT.FLAT);
+               Button button = new Button(parent, SWT.PUSH);
                CmsUiUtils.style(button, SuiteStyle.leadPane);
-               button.setToolTipText(msg.lead());
                button.setImage(icon.getBigIcon(theme));
+               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;
        }
 
-       @Override
-       public void updated(Dictionary<String, ?> properties) throws ConfigurationException {
-               // TODO Auto-generated method stub
-
-       }
-
        public void init(Map<String, String> properties) {
 
        }