X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.suite.ui%2Fsrc%2Forg%2Fargeo%2Fsuite%2Fui%2FSuiteUiUtils.java;h=048b94657459e58f378d5f99d597c95b8d5b6a97;hb=26204f48e2c40e98cc5b85757779b8a291edaa6a;hp=08d2410e5495fd1cc9bcf3780e802e5a18e175d9;hpb=0065916d6aac82d95b21e56f7c531bd418b06faf;p=gpl%2Fargeo-suite.git diff --git a/org.argeo.suite.ui/src/org/argeo/suite/ui/SuiteUiUtils.java b/org.argeo.suite.ui/src/org/argeo/suite/ui/SuiteUiUtils.java index 08d2410..048b946 100644 --- a/org.argeo.suite.ui/src/org/argeo/suite/ui/SuiteUiUtils.java +++ b/org.argeo.suite.ui/src/org/argeo/suite/ui/SuiteUiUtils.java @@ -7,10 +7,17 @@ import javax.jcr.Node; import javax.jcr.RepositoryException; import javax.jcr.Session; -import org.argeo.api.NodeConstants; +import org.argeo.cms.LocaleUtils; import org.argeo.cms.Localized; +import org.argeo.cms.auth.CurrentUser; import org.argeo.cms.ui.CmsEditable; -import org.argeo.cms.ui.dialogs.CmsWizardDialog; +import org.argeo.cms.ui.CmsTheme; +import org.argeo.cms.ui.CmsView; +import org.argeo.cms.ui.dialogs.LightweightDialog; +import org.argeo.cms.ui.util.CmsEvent; +import org.argeo.cms.ui.util.CmsIcon; +import org.argeo.cms.ui.util.CmsLink; +import org.argeo.cms.ui.util.CmsStyle; import org.argeo.cms.ui.util.CmsUiUtils; import org.argeo.eclipse.ui.EclipseUiUtils; import org.argeo.entity.EntityNames; @@ -18,17 +25,21 @@ import org.argeo.entity.EntityType; import org.argeo.jcr.Jcr; import org.argeo.jcr.JcrException; import org.argeo.jcr.JcrUtils; -import org.eclipse.jface.window.Window; -import org.eclipse.jface.wizard.Wizard; +import org.argeo.suite.SuiteRole; import org.eclipse.swt.SWT; +import org.eclipse.swt.custom.ScrolledComposite; +import org.eclipse.swt.events.MouseEvent; +import org.eclipse.swt.events.MouseListener; import org.eclipse.swt.graphics.ImageData; +import org.eclipse.swt.graphics.Point; 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.eclipse.swt.widgets.Label; -import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; +import org.osgi.service.event.Event; /** UI utilities related to the APAF project. */ public class SuiteUiUtils { @@ -214,22 +225,43 @@ public class SuiteUiUtils { } public static Label addPicture(Composite parent, Node fileNode, Integer maxWidth) throws RepositoryException { + return addPicture(parent, fileNode, maxWidth, null); + } + + public static Label addPicture(Composite parent, Node fileNode, Integer maxWidth, Node link) + throws RepositoryException { Node content = fileNode.getNode(Node.JCR_CONTENT); // TODO move it deeper in the middleware. if (!content.isNodeType(EntityType.box.get())) { + if (content.getSession().hasPermission(content.getPath(), Session.ACTION_SET_PROPERTY)) { + try (InputStream in = JcrUtils.getFileAsStream(fileNode)) { + ImageData imageData = new ImageData(in); + content.addMixin(EntityType.box.get()); + content.setProperty(EntityNames.SVG_WIDTH, imageData.width); + content.setProperty(EntityNames.SVG_HEIGHT, imageData.height); + content.getSession().save(); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + } + + // TODO optimise + Long width; + Long height; + if (content.isNodeType(EntityType.box.get())) { + width = content.getProperty(EntityNames.SVG_WIDTH).getLong(); + height = content.getProperty(EntityNames.SVG_HEIGHT).getLong(); + } else { try (InputStream in = JcrUtils.getFileAsStream(fileNode)) { ImageData imageData = new ImageData(in); - content.addMixin(EntityType.box.get()); - content.setProperty(EntityNames.SVG_WIDTH, imageData.width); - content.setProperty(EntityNames.SVG_HEIGHT, imageData.height); - content.getSession().save(); + width = Long.valueOf(imageData.width); + height = Long.valueOf(imageData.height); } catch (IOException e) { - throw new IllegalStateException(e); + throw new RuntimeException(e); } } - Long width = content.getProperty(EntityNames.SVG_WIDTH).getLong(); - Long height = content.getProperty(EntityNames.SVG_HEIGHT).getLong(); if (maxWidth != null && width > maxWidth) { Double ratio = maxWidth.doubleValue() / width.doubleValue(); width = maxWidth.longValue(); @@ -237,45 +269,167 @@ public class SuiteUiUtils { } Label img = new Label(parent, SWT.NONE); CmsUiUtils.markup(img); - img.setText(CmsUiUtils.img(fileNode, width.toString(), height.toString())); - if (parent.getLayout() instanceof GridLayout) - img.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, false, false)); + StringBuffer txt = new StringBuffer(); + String target = toLink(link); + if (target != null) + txt.append(""); + txt.append(CmsUiUtils.img(fileNode, width.toString(), height.toString())); + if (target != null) + txt.append(""); + img.setText(txt.toString()); + if (parent.getLayout() instanceof GridLayout) { + GridData gd = new GridData(SWT.CENTER, SWT.CENTER, false, false); + gd.widthHint = width.intValue(); + gd.heightHint = height.intValue(); + img.setLayoutData(gd); + } + + if (target == null) + img.addMouseListener(new MouseListener() { + private static final long serialVersionUID = -1362242049325206168L; + + @Override + public void mouseUp(MouseEvent e) { + } + + @Override + public void mouseDown(MouseEvent e) { + } + + @Override + public void mouseDoubleClick(MouseEvent e) { + LightweightDialog dialog = new LightweightDialog(img.getShell()) { + + @Override + protected Control createDialogArea(Composite parent) { + parent.setLayout(new GridLayout()); + ScrolledComposite scroll = new ScrolledComposite(parent, SWT.H_SCROLL | SWT.V_SCROLL); + scroll.setLayoutData(CmsUiUtils.fillAll()); + scroll.setLayout(CmsUiUtils.noSpaceGridLayout()); + scroll.setExpandHorizontal(true); + scroll.setExpandVertical(true); + // scroll.setAlwaysShowScrollBars(true); + + Composite c = new Composite(scroll, SWT.NONE); + scroll.setContent(c); + c.setLayout(new GridLayout()); + c.setLayoutData(CmsUiUtils.fillAll()); + Label bigImg = new Label(c, SWT.NONE); + CmsUiUtils.markup(bigImg); + bigImg.setText(CmsUiUtils.img(fileNode, Jcr.get(content, EntityNames.SVG_WIDTH), + Jcr.get(content, EntityNames.SVG_HEIGHT))); + bigImg.setLayoutData(new GridData(SWT.CENTER, SWT.CENTER, true, true)); + return bigImg; + } + + @Override + protected Point getInitialSize() { + Point shellSize = img.getShell().getSize(); + return new Point(shellSize.x - 100, shellSize.y - 100); + } + + }; + dialog.open(); + } + }); return img; } - public static String createAndConfigureEntity(Shell shell, Session referenceSession, String mainMixin, - String... additionnalProps) { - - Session tmpSession = null; - Session mainSession = null; + public static String toLink(Node node) { try { - // FIXME would not work if home is another physical workspace - tmpSession = referenceSession.getRepository().login(NodeConstants.HOME_WORKSPACE); - Node draftNode = null; - for (int i = 0; i < additionnalProps.length - 1; i += 2) { - draftNode.setProperty(additionnalProps[i], additionnalProps[i + 1]); - } - Wizard wizard = null; - CmsWizardDialog dialog = new CmsWizardDialog(shell, wizard); - // WizardDialog dialog = new WizardDialog(shell, wizard); - if (dialog.open() == Window.OK) { - String parentPath = null;// "/" + appService.getBaseRelPath(mainMixin); - // FIXME it should be possible to specify the workspace - mainSession = referenceSession.getRepository().login(); - Node parent = mainSession.getNode(parentPath); - Node task = null;// appService.publishEntity(parent, mainMixin, draftNode); -// task = appService.saveEntity(task, false); - referenceSession.refresh(true); - return task.getPath(); - } - return null; - } catch (RepositoryException e1) { - throw new JcrException( - "Unable to create " + mainMixin + " entity with session " + referenceSession.toString(), e1); - } finally { - JcrUtils.logoutQuietly(tmpSession); - JcrUtils.logoutQuietly(mainSession); + return node != null ? "#" + CmsUiUtils.cleanPathForUrl(SuiteApp.nodeToState(node)) : null; + } catch (RepositoryException e) { + throw new JcrException("Cannot get link from " + node, e); + } + } + + public static Control addLink(Composite parent, String label, Node node, CmsStyle style) + throws RepositoryException { + String target = toLink(node); + CmsLink link = new CmsLink(label, target, style); + return link.createUi(parent, node); + } + + public static Control addExternalLink(Composite parent, String label, String url, String plainCssAnchorClass, + boolean newWindow) throws RepositoryException { + Label lbl = new Label(parent, SWT.NONE); + CmsUiUtils.markup(lbl); + StringBuilder txt = new StringBuilder(); + txt.append(""); + txt.append(label); + txt.append(""); + lbl.setText(txt.toString()); + return lbl; + } + + public static boolean isCoworker(CmsView cmsView) { + boolean coworker = cmsView.doAs(() -> CurrentUser.isInRole(SuiteRole.coworker.dn())); + return coworker; + } + + public static boolean isTopic(Event event, CmsEvent cmsEvent) { + return event.getTopic().equals(cmsEvent.topic()); + } + + public static Button createLayerButton(Composite parent, String layer, Localized msg, CmsIcon icon, + ClassLoader l10nClassLoader) { + CmsTheme theme = CmsTheme.getCmsTheme(parent); + Button button = new Button(parent, SWT.PUSH); + CmsUiUtils.style(button, SuiteStyle.leadPane); + if (icon != null) + button.setImage(icon.getBigIcon(theme)); + button.setLayoutData(new GridData(SWT.CENTER, SWT.BOTTOM, true, false)); + // button.setToolTipText(msg.lead()); + if (msg != null) { + Label lbl = new Label(parent, SWT.CENTER); + CmsUiUtils.style(lbl, SuiteStyle.leadPane); + String txt = LocaleUtils.lead(msg, l10nClassLoader); +// String txt = msg.lead(); + lbl.setText(txt); + lbl.setLayoutData(new GridData(SWT.CENTER, SWT.TOP, true, false)); } + CmsUiUtils.sendEventOnSelect(button, SuiteEvent.switchLayer.topic(), SuiteEvent.LAYER, layer); + return button; } +// public static String createAndConfigureEntity(Shell shell, Session referenceSession, String mainMixin, +// String... additionnalProps) { +// +// Session tmpSession = null; +// Session mainSession = null; +// try { +// // FIXME would not work if home is another physical workspace +// tmpSession = referenceSession.getRepository().login(NodeConstants.HOME_WORKSPACE); +// Node draftNode = null; +// for (int i = 0; i < additionnalProps.length - 1; i += 2) { +// draftNode.setProperty(additionnalProps[i], additionnalProps[i + 1]); +// } +// Wizard wizard = null; +// CmsWizardDialog dialog = new CmsWizardDialog(shell, wizard); +// // WizardDialog dialog = new WizardDialog(shell, wizard); +// if (dialog.open() == Window.OK) { +// String parentPath = null;// "/" + appService.getBaseRelPath(mainMixin); +// // FIXME it should be possible to specify the workspace +// mainSession = referenceSession.getRepository().login(); +// Node parent = mainSession.getNode(parentPath); +// Node task = null;// appService.publishEntity(parent, mainMixin, draftNode); +//// task = appService.saveEntity(task, false); +// referenceSession.refresh(true); +// return task.getPath(); +// } +// return null; +// } catch (RepositoryException e1) { +// throw new JcrException( +// "Unable to create " + mainMixin + " entity with session " + referenceSession.toString(), e1); +// } finally { +// JcrUtils.logoutQuietly(tmpSession); +// JcrUtils.logoutQuietly(mainSession); +// } +// } + }