Skip to content

Commit

Permalink
Extend range of spin boxes for 3d properties
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Sep 15, 2017
1 parent 35b37a2 commit 12a0063
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 6 deletions.
21 changes: 18 additions & 3 deletions src/ui/3d/line3dsymbolwidget.ui
Expand Up @@ -24,7 +24,14 @@
</widget>
</item>
<item row="1" column="1">
<widget class="QDoubleSpinBox" name="spinHeight"/>
<widget class="QDoubleSpinBox" name="spinHeight">
<property name="minimum">
<double>-99999.000000000000000</double>
</property>
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_2">
Expand All @@ -34,7 +41,11 @@
</widget>
</item>
<item row="2" column="1">
<widget class="QDoubleSpinBox" name="spinExtrusion"/>
<widget class="QDoubleSpinBox" name="spinExtrusion">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_3">
Expand Down Expand Up @@ -91,7 +102,11 @@
</widget>
</item>
<item row="0" column="1">
<widget class="QDoubleSpinBox" name="spinWidth"/>
<widget class="QDoubleSpinBox" name="spinWidth">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
</layout>
</item>
Expand Down
21 changes: 20 additions & 1 deletion src/ui/3d/point3dsymbolwidget.ui
Expand Up @@ -33,6 +33,9 @@
</item>
<item row="1" column="1">
<widget class="QDoubleSpinBox" name="spinRadius">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
<property name="value">
<double>10.000000000000000</double>
</property>
Expand All @@ -47,6 +50,9 @@
</item>
<item row="2" column="1">
<widget class="QDoubleSpinBox" name="spinMinorRadius">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
<property name="value">
<double>5.000000000000000</double>
</property>
Expand All @@ -60,7 +66,11 @@
</widget>
</item>
<item row="3" column="1">
<widget class="QDoubleSpinBox" name="spinTopRadius"/>
<widget class="QDoubleSpinBox" name="spinTopRadius">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="labelBottomRadius">
Expand All @@ -71,6 +81,9 @@
</item>
<item row="4" column="1">
<widget class="QDoubleSpinBox" name="spinBottomRadius">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
<property name="value">
<double>10.000000000000000</double>
</property>
Expand All @@ -85,6 +98,9 @@
</item>
<item row="5" column="1">
<widget class="QDoubleSpinBox" name="spinSize">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
<property name="value">
<double>10.000000000000000</double>
</property>
Expand All @@ -99,6 +115,9 @@
</item>
<item row="6" column="1">
<widget class="QDoubleSpinBox" name="spinLength">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
<property name="value">
<double>10.000000000000000</double>
</property>
Expand Down
15 changes: 13 additions & 2 deletions src/ui/3d/polygon3dsymbolwidget.ui
Expand Up @@ -24,7 +24,14 @@
</widget>
</item>
<item row="0" column="1">
<widget class="QDoubleSpinBox" name="spinHeight"/>
<widget class="QDoubleSpinBox" name="spinHeight">
<property name="minimum">
<double>-99999.000000000000000</double>
</property>
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_2">
Expand All @@ -34,7 +41,11 @@
</widget>
</item>
<item row="1" column="1">
<widget class="QDoubleSpinBox" name="spinExtrusion"/>
<widget class="QDoubleSpinBox" name="spinExtrusion">
<property name="maximum">
<double>99999.000000000000000</double>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_3">
Expand Down

0 comments on commit 12a0063

Please sign in to comment.