parent
73b29b972c
commit
9bf4cc0dbd
|
@ -147,6 +147,8 @@ void DialogIndividualMeasurements::CheckState()
|
||||||
bool flagPath = false;
|
bool flagPath = false;
|
||||||
if (ui->radioButtonExistM->isChecked())
|
if (ui->radioButtonExistM->isChecked())
|
||||||
{
|
{
|
||||||
|
ui->labelGivenName->setEnabled(true);
|
||||||
|
ui->labelFamilyName->setEnabled(true);
|
||||||
ui->lineEditPathExistM->setEnabled(true);
|
ui->lineEditPathExistM->setEnabled(true);
|
||||||
ui->toolButtonOpenExist->setEnabled(true);
|
ui->toolButtonOpenExist->setEnabled(true);
|
||||||
|
|
||||||
|
@ -165,6 +167,8 @@ void DialogIndividualMeasurements::CheckState()
|
||||||
ui->toolButtonOpenNew->setEnabled(true);
|
ui->toolButtonOpenNew->setEnabled(true);
|
||||||
ui->comboBoxUnits->setEnabled(true);
|
ui->comboBoxUnits->setEnabled(true);
|
||||||
|
|
||||||
|
ui->labelGivenName->setEnabled(false);
|
||||||
|
ui->labelFamilyName->setEnabled(false);
|
||||||
ui->toolButtonOpenExist->setEnabled(false);
|
ui->toolButtonOpenExist->setEnabled(false);
|
||||||
ui->lineEditPathExistM->setEnabled(false);
|
ui->lineEditPathExistM->setEnabled(false);
|
||||||
|
|
||||||
|
@ -199,6 +203,10 @@ void DialogIndividualMeasurements::OpenTable()
|
||||||
e.CriticalMessageBox(tr("File error."), this);
|
e.CriticalMessageBox(tr("File error."), this);
|
||||||
fileName.clear();
|
fileName.clear();
|
||||||
}
|
}
|
||||||
|
VIndividualMeasurements m(data);
|
||||||
|
m.setContent(fileName);
|
||||||
|
ui->labelGivenName->setText(m.GivenName());
|
||||||
|
ui->labelFamilyName->setText(m.FamilyName());
|
||||||
ui->lineEditPathExistM->setText(fileName);
|
ui->lineEditPathExistM->setText(fileName);
|
||||||
ui->lineEditPathExistM->setToolTip(fileName);
|
ui->lineEditPathExistM->setToolTip(fileName);
|
||||||
CheckState();
|
CheckState();
|
||||||
|
|
|
@ -60,11 +60,13 @@ private:
|
||||||
void InitUnits();
|
void InitUnits();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
inline QString DialogIndividualMeasurements::name() const
|
inline QString DialogIndividualMeasurements::name() const
|
||||||
{
|
{
|
||||||
return _name;
|
return _name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
inline QString DialogIndividualMeasurements::tablePath() const
|
inline QString DialogIndividualMeasurements::tablePath() const
|
||||||
{
|
{
|
||||||
return _tablePath;
|
return _tablePath;
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>397</width>
|
<width>385</width>
|
||||||
<height>280</height>
|
<height>295</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
|
@ -73,6 +73,93 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
|
<property name="sizeConstraint">
|
||||||
|
<enum>QLayout::SetMinimumSize</enum>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>90</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Given name:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="labelGivenName">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>1</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string notr="true"/>
|
||||||
|
</property>
|
||||||
|
<property name="wordWrap">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||||||
|
<property name="sizeConstraint">
|
||||||
|
<enum>QLayout::SetMinimumSize</enum>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_7">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>90</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Family name:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="labelFamilyName">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>1</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="wordWrap">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user