X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=org.simantics.plant3d%2Fsrc%2Forg%2Fsimantics%2Fplant3d%2Fdialog%2FComponentSelectionDialog.java;h=030cce9f12d47c89c8d5d12dcea1a716372c60fb;hb=d207cfa3235339e7d7b894494be400160b121bd5;hp=95b22512b7b06e534fe810a4ec37e195c179f930;hpb=b464f638f47c449c3ddad850a2466773c3453999;p=simantics%2F3d.git diff --git a/org.simantics.plant3d/src/org/simantics/plant3d/dialog/ComponentSelectionDialog.java b/org.simantics.plant3d/src/org/simantics/plant3d/dialog/ComponentSelectionDialog.java index 95b22512..030cce9f 100644 --- a/org.simantics.plant3d/src/org/simantics/plant3d/dialog/ComponentSelectionDialog.java +++ b/org.simantics.plant3d/src/org/simantics/plant3d/dialog/ComponentSelectionDialog.java @@ -7,6 +7,7 @@ import java.util.Set; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; +import org.eclipse.jface.dialogs.IDialogSettings; import org.eclipse.jface.layout.GridDataFactory; import org.eclipse.jface.layout.GridLayoutFactory; import org.eclipse.jface.resource.JFaceResources; @@ -33,6 +34,8 @@ import org.eclipse.swt.widgets.ExpandItem; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; +import org.simantics.Simantics; +import org.simantics.db.Session; import org.simantics.db.exception.DatabaseException; import org.simantics.plant3d.Activator; import org.simantics.plant3d.ontology.Plant3D; @@ -49,6 +52,12 @@ import org.simantics.utils.ui.ExceptionUtils; public class ComponentSelectionDialog extends Dialog implements ISelectionChangedListener { + private static final String DIALOG = "ComponentSelectionDialog"; //$NON-NLS-1$ + + private IDialogSettings dialogSettings; + + private double lengthFactor = 1.0; + private ResourceManager resourceManager; private String libUri; @@ -74,7 +83,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange private Text lengthText; // Turn component private Text angleText; - // Rotated In-line, or turn conponent. + // Rotated In-line, or turn component. private Text rotationAngleText; // Input for new PipeRun @@ -113,8 +122,24 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange this.libUri = libUri; usedNames = new HashSet<>(); + + setShellStyle(getShellStyle() | SWT.RESIZE); + + IDialogSettings settings = Activator.getDefault().getDialogSettings(); + dialogSettings = settings.getSection(DIALOG); + if (dialogSettings == null) + dialogSettings = settings.addNewSection(DIALOG); } + public void setLengthFactor(double lengthFactor) { + this.lengthFactor = lengthFactor; + } + + @Override + protected IDialogSettings getDialogBoundsSettings() { + return dialogSettings; + } + @Override protected void configureShell(Shell newShell) { super.configureShell(newShell); @@ -126,12 +151,13 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange } protected List getItems(Class c, String libUri) throws DatabaseException { + Session session = Simantics.getSession(); if (InlineComponent.class.equals(c)) { - return P3DUtil.getInlines(libUri); + return P3DUtil.getInlines(session, libUri); } else if (TurnComponent.class.equals(c)) { - return P3DUtil.getTurns(libUri); + return P3DUtil.getTurns(session, libUri); } else if (EndComponent.class.equals(c)) { - return P3DUtil.getEnds(libUri); + return P3DUtil.getEnds(session, libUri); } else { return null; } @@ -179,7 +205,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange turns = P3DUtil.filterUserComponents(turns); inlines = P3DUtil.filterUserComponents(inlines); - ExpandBar expandBar = new ExpandBar(composite, SWT.NONE); + ExpandBar expandBar = new ExpandBar(composite, SWT.V_SCROLL); ExpandItem inlineItem = new ExpandItem(expandBar, SWT.NONE); inlineItem.setText("Inline"); @@ -216,7 +242,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange endViewer.addSelectionChangedListener(this); GridDataFactory.fillDefaults().grab(true, true).align(SWT.FILL, SWT.FILL).span(2, 1).applyTo(expandBar); - GridDataFactory.fillDefaults().minSize(500, 500).hint(500, 500).applyTo(composite); + GridDataFactory.fillDefaults().grab(true, true).minSize(500, 500).hint(500, 500).applyTo(composite); Label label = new Label(composite, SWT.NONE); label.setText("Position"); @@ -300,7 +326,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange @Override public void keyReleased(KeyEvent e) { try { - length = Double.parseDouble(lengthText.getText()); + length = Double.parseDouble(lengthText.getText()) / lengthFactor; } catch (NumberFormatException err) { length = null; } @@ -336,7 +362,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange @Override public void keyReleased(KeyEvent e) { try { - diameter = Double.parseDouble(diameterText.getText()); + diameter = Double.parseDouble(diameterText.getText()) / lengthFactor; } catch (NumberFormatException err) { diameter = null; } @@ -348,7 +374,7 @@ public class ComponentSelectionDialog extends Dialog implements ISelectionChange @Override public void keyReleased(KeyEvent e) { try { - turnRadius = Double.parseDouble(turnRadiusText.getText()); + turnRadius = Double.parseDouble(turnRadiusText.getText()) / lengthFactor; } catch (NumberFormatException err) { turnRadius = null; }