Improve some code and gui

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5643 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2018-12-09 18:37:09 +00:00
parent d0f3825bfc
commit 835ff082bf
5 changed files with 20 additions and 16 deletions

View File

@@ -236,7 +236,7 @@ void SearchAndReplaceWorker::replaceConductor(Conductor *conductor)
* With search and replace, when the variable to edit is a text,
* the editor is always the same no matter if it is for a folio, element or conductor.
* The editor is a QLineEdit to edit the text and checkbox to erase the text if checked.
* This function fill the editor
* This function fill the editor, from the current string
* @param l
* @param cb
* @param str
@@ -245,6 +245,7 @@ void SearchAndReplaceWorker::setupLineEdit(QLineEdit *l, QCheckBox *cb, QString
{
l->setText(str);
cb->setChecked(str == eraseText() ? true : false);
l->setDisabled(str == eraseText() ? true : false);
}
ConductorProperties SearchAndReplaceWorker::invalidConductorProperties()

View File

@@ -47,10 +47,8 @@ void ReplaceElementDialog::setContext(DiagramContext context)
{
m_context = context;
for (ElementInfoPartWidget *eipw : m_eipw_list)
{
for (ElementInfoPartWidget *eipw : m_eipw_list) {
eipw->setText(m_context[eipw->key()].toString());
eipw->setEraseTextChecked(false);
}
}

View File

@@ -22,6 +22,8 @@
#include <QDialogButtonBox>
typedef SearchAndReplaceWorker sarw;
ReplaceFolioWidget::ReplaceFolioWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::ReplaceFolioWidget)
@@ -75,13 +77,13 @@ TitleBlockProperties ReplaceFolioWidget::titleBlockProperties() const
*/
void ReplaceFolioWidget::setTitleBlockProperties(const TitleBlockProperties &properties)
{
ui->m_title_le ->setText (properties.title);
ui->m_author_le->setText (properties.author);
ui->m_file_le ->setText (properties.filename);
ui->m_plant ->setText (properties.plant);
ui->m_loc ->setText (properties.locmach);
ui->m_indice ->setText (properties.indexrev);
ui->m_folio_le ->setText (properties.folio);
sarw::setupLineEdit(ui->m_title_le, ui->m_title_cb, properties.title);
sarw::setupLineEdit(ui->m_author_le, ui->m_author_cb, properties.author);
sarw::setupLineEdit(ui->m_file_le, ui->m_file_cb, properties.filename);
sarw::setupLineEdit(ui->m_plant, ui->m_plant_cb, properties.plant);
sarw::setupLineEdit(ui->m_loc, ui->m_loc_cb, properties.locmach);
sarw::setupLineEdit(ui->m_indice, ui->m_indice_cb, properties.indexrev);
sarw::setupLineEdit(ui->m_folio_le, ui->m_folio_cb, properties.folio);
//About date
ui->m_date_now_pb->setDisabled(true);