Remove calls to model.setCurrentUnit in Booster and Pod configs which are changing the default units of some fields in the config panels
This commit is contained in:
parent
b278adecbf
commit
af18606eb9
@ -45,7 +45,7 @@ public class ParallelStageConfig extends AxialStageConfig {
|
|||||||
motherPanel.add( radiusLabel , "align left");
|
motherPanel.add( radiusLabel , "align left");
|
||||||
autoRadOffsModel.addEnableComponent(radiusLabel, false);
|
autoRadOffsModel.addEnableComponent(radiusLabel, false);
|
||||||
DoubleModel radiusModel = new DoubleModel( boosters, "RadialOffset", UnitGroup.UNITS_LENGTH, 0);
|
DoubleModel radiusModel = new DoubleModel( boosters, "RadialOffset", UnitGroup.UNITS_LENGTH, 0);
|
||||||
//radiusModel.setCurrentUnit( UnitGroup.UNITS_LENGTH.getUnit("cm"));
|
|
||||||
JSpinner radiusSpinner = new JSpinner( radiusModel.getSpinnerModel());
|
JSpinner radiusSpinner = new JSpinner( radiusModel.getSpinnerModel());
|
||||||
radiusSpinner.setEditor(new SpinnerEditor(radiusSpinner ));
|
radiusSpinner.setEditor(new SpinnerEditor(radiusSpinner ));
|
||||||
motherPanel.add(radiusSpinner , "growx 1, align right");
|
motherPanel.add(radiusSpinner , "growx 1, align right");
|
||||||
@ -58,7 +58,7 @@ public class ParallelStageConfig extends AxialStageConfig {
|
|||||||
JLabel angleLabel = new JLabel(trans.get("StageConfig.parallel.angle"));
|
JLabel angleLabel = new JLabel(trans.get("StageConfig.parallel.angle"));
|
||||||
motherPanel.add( angleLabel, "align left");
|
motherPanel.add( angleLabel, "align left");
|
||||||
DoubleModel angleModel = new DoubleModel( boosters, "AngularOffset", 1.0, UnitGroup.UNITS_ANGLE, 0.0, Math.PI*2);
|
DoubleModel angleModel = new DoubleModel( boosters, "AngularOffset", 1.0, UnitGroup.UNITS_ANGLE, 0.0, Math.PI*2);
|
||||||
angleModel.setCurrentUnit( UnitGroup.UNITS_ANGLE.getUnit("rad"));
|
|
||||||
JSpinner angleSpinner = new JSpinner(angleModel.getSpinnerModel());
|
JSpinner angleSpinner = new JSpinner(angleModel.getSpinnerModel());
|
||||||
angleSpinner.setEditor(new SpinnerEditor(angleSpinner));
|
angleSpinner.setEditor(new SpinnerEditor(angleSpinner));
|
||||||
motherPanel.add(angleSpinner, "growx 1");
|
motherPanel.add(angleSpinner, "growx 1");
|
||||||
@ -94,7 +94,7 @@ public class ParallelStageConfig extends AxialStageConfig {
|
|||||||
JLabel positionPlusLabel = new JLabel(trans.get("StageConfig.parallel.offset"));
|
JLabel positionPlusLabel = new JLabel(trans.get("StageConfig.parallel.offset"));
|
||||||
motherPanel.add( positionPlusLabel );
|
motherPanel.add( positionPlusLabel );
|
||||||
DoubleModel axialOffsetModel = new DoubleModel( boosters, "AxialOffset", UnitGroup.UNITS_LENGTH);
|
DoubleModel axialOffsetModel = new DoubleModel( boosters, "AxialOffset", UnitGroup.UNITS_LENGTH);
|
||||||
axialOffsetModel.setCurrentUnit(UnitGroup.UNITS_LENGTH.getUnit("cm"));
|
|
||||||
JSpinner axPosSpin= new JSpinner( axialOffsetModel.getSpinnerModel());
|
JSpinner axPosSpin= new JSpinner( axialOffsetModel.getSpinnerModel());
|
||||||
axPosSpin.setEditor(new SpinnerEditor(axPosSpin));
|
axPosSpin.setEditor(new SpinnerEditor(axPosSpin));
|
||||||
motherPanel.add(axPosSpin, "growx");
|
motherPanel.add(axPosSpin, "growx");
|
||||||
|
@ -38,7 +38,7 @@ public class PodSetConfig extends RocketComponentConfig {
|
|||||||
JLabel radiusLabel = new JLabel(trans.get("StageConfig.parallel.radius"));
|
JLabel radiusLabel = new JLabel(trans.get("StageConfig.parallel.radius"));
|
||||||
motherPanel.add( radiusLabel , "align left");
|
motherPanel.add( radiusLabel , "align left");
|
||||||
DoubleModel radiusModel = new DoubleModel( assembly, "RadialOffset", UnitGroup.UNITS_LENGTH, 0);
|
DoubleModel radiusModel = new DoubleModel( assembly, "RadialOffset", UnitGroup.UNITS_LENGTH, 0);
|
||||||
//radiusModel.setCurrentUnit( UnitGroup.UNITS_LENGTH.getUnit("cm"));
|
|
||||||
JSpinner radiusSpinner = new JSpinner( radiusModel.getSpinnerModel());
|
JSpinner radiusSpinner = new JSpinner( radiusModel.getSpinnerModel());
|
||||||
radiusSpinner.setEditor(new SpinnerEditor(radiusSpinner ));
|
radiusSpinner.setEditor(new SpinnerEditor(radiusSpinner ));
|
||||||
motherPanel.add(radiusSpinner , "growx 1, align right");
|
motherPanel.add(radiusSpinner , "growx 1, align right");
|
||||||
@ -49,7 +49,7 @@ public class PodSetConfig extends RocketComponentConfig {
|
|||||||
JLabel angleLabel = new JLabel(trans.get("StageConfig.parallel.angle"));
|
JLabel angleLabel = new JLabel(trans.get("StageConfig.parallel.angle"));
|
||||||
motherPanel.add( angleLabel, "align left");
|
motherPanel.add( angleLabel, "align left");
|
||||||
DoubleModel angleModel = new DoubleModel( assembly, "AngularOffset", 1.0, UnitGroup.UNITS_ANGLE, 0.0, Math.PI*2);
|
DoubleModel angleModel = new DoubleModel( assembly, "AngularOffset", 1.0, UnitGroup.UNITS_ANGLE, 0.0, Math.PI*2);
|
||||||
angleModel.setCurrentUnit( UnitGroup.UNITS_ANGLE.getUnit("rad"));
|
|
||||||
JSpinner angleSpinner = new JSpinner(angleModel.getSpinnerModel());
|
JSpinner angleSpinner = new JSpinner(angleModel.getSpinnerModel());
|
||||||
angleSpinner.setEditor(new SpinnerEditor(angleSpinner));
|
angleSpinner.setEditor(new SpinnerEditor(angleSpinner));
|
||||||
motherPanel.add(angleSpinner, "growx 1");
|
motherPanel.add(angleSpinner, "growx 1");
|
||||||
@ -84,7 +84,7 @@ public class PodSetConfig extends RocketComponentConfig {
|
|||||||
JLabel positionPlusLabel = new JLabel(trans.get("StageConfig.parallel.offset"));
|
JLabel positionPlusLabel = new JLabel(trans.get("StageConfig.parallel.offset"));
|
||||||
motherPanel.add( positionPlusLabel );
|
motherPanel.add( positionPlusLabel );
|
||||||
DoubleModel axialOffsetModel = new DoubleModel( assembly, "AxialOffset", UnitGroup.UNITS_LENGTH);
|
DoubleModel axialOffsetModel = new DoubleModel( assembly, "AxialOffset", UnitGroup.UNITS_LENGTH);
|
||||||
axialOffsetModel.setCurrentUnit(UnitGroup.UNITS_LENGTH.getUnit("cm"));
|
|
||||||
JSpinner axPosSpin= new JSpinner( axialOffsetModel.getSpinnerModel());
|
JSpinner axPosSpin= new JSpinner( axialOffsetModel.getSpinnerModel());
|
||||||
axPosSpin.setEditor(new SpinnerEditor(axPosSpin));
|
axPosSpin.setEditor(new SpinnerEditor(axPosSpin));
|
||||||
motherPanel.add(axPosSpin, "growx");
|
motherPanel.add(axPosSpin, "growx");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user