[TD] improve dialogs
- DlgPrefsTechDraw3.ui: improve wording as discussed - TaskCL2Lines.ui: morph option to QCheckBox - TaskCenterLine.cpp: the Aligned option is not available for face mode - TaskCenterLine.ui: use same default line style as in prefs - TaskCenterLine.ui: correct tooltip for align option
This commit is contained in:
@@ -229,7 +229,7 @@
|
||||
<string>Dimension text font size</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignRight</set>
|
||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
<property name="value" stdset="0">
|
||||
<double>4.000000000000000</double>
|
||||
@@ -254,7 +254,7 @@
|
||||
<string>Arrowhead size</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignRight</set>
|
||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
<property name="value" stdset="0">
|
||||
<double>5.000000000000000</double>
|
||||
@@ -782,7 +782,7 @@
|
||||
<string>Restrict Filled Triangle line end to vertical or horizontal directions</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Balloon Ortho Triangle</string>
|
||||
<string>Balloon Orthogonal Triangle</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QRadioButton" name="rbFlip">
|
||||
<widget class="QCheckBox" name="cbFlip">
|
||||
<property name="text">
|
||||
<string>Flip ends</string>
|
||||
</property>
|
||||
|
||||
@@ -182,6 +182,10 @@ void TaskCenterLine::setUiPrimary()
|
||||
ui->qsbExtend->setValue(qVal);
|
||||
int precision = Base::UnitsApi::getDecimals();
|
||||
ui->dsbRotate->setDecimals(precision);
|
||||
if (m_type == 0) // if face, then aligned is not possible
|
||||
ui->rbAligned->setEnabled(false);
|
||||
else
|
||||
ui->rbAligned->setEnabled(true);
|
||||
}
|
||||
|
||||
void TaskCenterLine::setUiEdit()
|
||||
@@ -221,6 +225,10 @@ void TaskCenterLine::setUiEdit()
|
||||
ui->qsbHorizShift->setValue(qVal);
|
||||
qVal.setValue(m_cl->m_extendBy);
|
||||
ui->qsbExtend->setValue(qVal);
|
||||
if (m_cl->m_type == 0) // if face, then aligned is not possible
|
||||
ui->rbAligned->setEnabled(false);
|
||||
else
|
||||
ui->rbAligned->setEnabled(true);
|
||||
}
|
||||
|
||||
//******************************************************************************
|
||||
@@ -407,7 +415,7 @@ TaskCL2Lines::TaskCL2Lines(TechDrawGui::TaskCenterLine* tcl) :
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
connect(ui->rbFlip, SIGNAL(toggled( bool )), this, SLOT(onFlipToggled( bool )));
|
||||
connect(ui->cbFlip, SIGNAL(toggled( bool )), this, SLOT(onFlipToggled( bool )));
|
||||
|
||||
initUi();
|
||||
}
|
||||
|
||||
@@ -128,7 +128,10 @@
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Option not implemented yet</string>
|
||||
<string>centerline between
|
||||
- lines: in equal distance to the lines and with
|
||||
half of the angle tghe lines have to each other
|
||||
- points: in equal distance to the points</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Aligned</string>
|
||||
@@ -252,7 +255,7 @@
|
||||
<item row="4" column="1">
|
||||
<widget class="QComboBox" name="cboxStyle">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>1</number>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
|
||||
Reference in New Issue
Block a user