qelectrotech-source-mirror/sources/ui/elementinfopartwidget.cpp

157 lines
3.6 KiB
C++
Raw Normal View History

/*
2024-03-29 10:09:48 +01:00
Copyright 2006-2024 The QElectroTech Team
This file is part of QElectroTech.
QElectroTech is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
QElectroTech is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
*/
#include "elementinfopartwidget.h"
2020-12-10 21:19:45 +01:00
#include "../SearchAndReplace/searchandreplaceworker.h"
#include "ui_elementinfopartwidget.h"
2020-12-10 21:19:45 +01:00
#include <utility>
typedef SearchAndReplaceWorker sarw;
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::ElementInfoPartWidget
Constructor
@param key the string key what represent this info part
@param translated_key the string key translated
@param parent parent widget
*/
2020-09-07 22:03:40 +02:00
ElementInfoPartWidget::ElementInfoPartWidget(
QString key,
const QString& translated_key,
QWidget *parent):
QWidget(parent),
ui(new Ui::ElementInfoPartWidget),
key_(std::move(key))
{
ui->setupUi(this);
ui->label_->setText(translated_key);
ui->m_erase_text->setVisible(false);
2020-08-25 20:32:21 +02:00
connect(ui->line_edit, &QLineEdit::textEdited,
this, &ElementInfoPartWidget::textEdited);
connect(ui->line_edit, &QLineEdit::textChanged,
this, &ElementInfoPartWidget::textChanged);
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::~ElementInfoPartWidget
destructor
*/
ElementInfoPartWidget::~ElementInfoPartWidget()
{
delete ui;
}
2020-08-25 20:32:21 +02:00
/**
@brief ElementInfoPartWidget::text
@return the text in the line edit
*/
QString ElementInfoPartWidget::text() const
{
return (ui->line_edit->text());
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setText
Set text to line edit
@param txt
*/
void ElementInfoPartWidget::setText(const QString &txt)
{
if (m_show_erase) {
sarw::setupLineEdit(ui->line_edit, ui->m_erase_text, txt);
} else {
ui->line_edit->setText(txt);
}
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setPlaceHolderText
@param text
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setPlaceHolderText(const QString &text)
{
ui->line_edit->setPlaceholderText(text);
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setFocusTolineEdit
Set the focus to the line edit
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setFocusTolineEdit()
{
ui->line_edit->setFocus();
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setEnabled
enable the line edit
@param e
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setEnabled(bool e)
{
ui->line_edit->setEnabled(e);
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setDisabled
disable the line edit
@param d
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setDisabled(bool d)
{
ui->line_edit->setDisabled(d);
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setEraseTextVisible
@param visible
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setEraseTextVisible(bool visible)
{
ui->m_erase_text->setVisible(visible);
m_show_erase = visible;
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::setEraseTextChecked
@param check
*/
2020-08-25 20:32:21 +02:00
void ElementInfoPartWidget::setEraseTextChecked(bool check)
{
ui->m_erase_text->setChecked(check);
}
/**
2020-08-16 11:19:36 +02:00
@brief ElementInfoPartWidget::EraseTextCheckState
@return
*/
2020-08-25 20:32:21 +02:00
Qt::CheckState ElementInfoPartWidget::EraseTextCheckState() const
{
return ui->m_erase_text->checkState();
}
void ElementInfoPartWidget::on_m_erase_text_clicked()
{
ui->line_edit->setText(ui->m_erase_text->isChecked()
? SearchAndReplaceWorker::eraseText()
: QString());
ui->line_edit->setDisabled(ui->m_erase_text->isChecked());
}