Hi Jukka,
It would speed up things sometimes if some style settings could be
edited for all selected layers at once. Making lines wider width is
the most common case for me.
Agree with you.
Easy to solve with a script.
Doing a nice plugin, consistent with OpenJUMP style management and
style panels is much more work.
I would recommend a FeatureRequest (I think there are already several
FR related to styling, but unfortunately, there has not been work done
in this domain for a long time).
Attached is a small beantool doing the job.
Could be added to the distribution as an example of a beantool with a
small UI.
Michaël
-Jukka Rahkonen-
------------------------------------------------------------------------------
Virtualization& Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
//Commencez votre script BeanShell ici
import com.vividsolutions.jump.workbench.ui.MultiInputDialog;
import com.vividsolutions.jump.workbench.ui.GUIUtil;
dialog = new MultiInputDialog(wc.getWorkbench().getFrame(), "Change line
width", true);
dialog.addIntegerField("Line Width", 2, 12, "");
GUIUtil.centreOnWindow(dialog);
dialog.setVisible(true);
if (dialog.wasOKPressed()) {
width = dialog.getInteger("Line Width");
for (lyr : wc.layerNamePanel.selectedLayers) {
lyr.basicStyle.setLineWidth(width);
}
wc.layerViewPanel.repaint();
}
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel