qelectrotech-source-mirror/sources/autoNum/numerotationcontext.cpp

203 lines
5.2 KiB
C++
Raw Normal View History

/*
2025-01-04 13:37:40 +01:00
Copyright 2006-2025 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 "numerotationcontext.h"
2020-12-08 19:57:35 +01:00
#include "../qet.h"
#include <QRegularExpression>
2020-12-08 19:57:35 +01:00
#include <utility>
/**
2020-08-16 11:19:36 +02:00
Constructor
*/
2020-09-07 22:03:40 +02:00
NumerotationContext::NumerotationContext()
{
}
/**
2020-08-16 11:19:36 +02:00
Constructor from xml
*/
NumerotationContext::NumerotationContext(QDomElement &e) {
fromXml(e);
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::clear, clear the content
*/
2020-09-07 22:03:40 +02:00
void NumerotationContext::clear ()
{
content_.clear();
}
/**
2020-08-20 21:57:35 +02:00
@brief NumerotationContext::addValue
add a new value on the contexte
2020-08-16 11:19:36 +02:00
@param type the type of value
@param value the value itself
@param increase the increase number of value
2020-08-20 21:57:35 +02:00
@param initialvalue
2020-08-16 11:19:36 +02:00
@return true if value is append
*/
2020-08-20 21:58:23 +02:00
bool NumerotationContext::addValue(const QString &type,
const QVariant &value,
const int increase,
const int initialvalue) {
if (!keyIsAcceptable(type) && !value.canConvert(QVariant::String))
return false;
if (keyIsNumber(type) && !value.canConvert(QVariant::Int))
return false;
QString valuestr = value.toString();
valuestr.remove("|");
2020-08-20 21:58:23 +02:00
content_ << type
+ "|"
+ valuestr
+ "|"
+ QString::number(increase)
+ "|"
+ QString::number(initialvalue);
return true;
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::operator []
2020-08-18 20:07:55 +02:00
@param i
@return the string at position i
2020-08-16 11:19:36 +02:00
*/
2020-09-07 22:03:40 +02:00
QString NumerotationContext::operator [] (const int &i) const
{
return (content_.at(i));
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::operator << , append other
*/
void NumerotationContext::operator << (const NumerotationContext &other) {
for (int i=0; i<other.size(); ++i) content_.append(other[i]);
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::size
@return size of context
*/
2020-09-07 22:03:40 +02:00
int NumerotationContext::size() const
{
return (content_.size());
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::isEmpty
@return true if numerotation content is empty
2020-08-16 11:19:36 +02:00
*/
2020-09-07 22:03:40 +02:00
bool NumerotationContext::isEmpty() const
{
if (content_.size() > 0) return false;
return true;
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::itemAt
2020-08-18 20:07:55 +02:00
@param i
@return the content at position i 1:type 2:value 3:increase
2020-08-16 11:19:36 +02:00
*/
2020-09-07 22:03:40 +02:00
QStringList NumerotationContext::itemAt(const int i) const
{
return (content_.at(i).split("|"));
}
/**
2020-08-16 11:19:36 +02:00
@brief validRegExpNum
@return all type use to numerotation
*/
2020-09-07 22:03:40 +02:00
QString NumerotationContext::validRegExpNum () const
{
return ("unit|unitfolio|ten|tenfolio|hundred|hundredfolio|string|idfolio|folio|plant|locmach|elementline|elementcolumn|elementprefix");
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::validRegExpNumber
@return all type represents a number
*/
2020-09-07 22:03:40 +02:00
QString NumerotationContext::validRegExpNumber() const
{
return ("unit|unitfolio|ten|tenfolio|hundred|hundredfolio");
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::keyIsAcceptable
2020-08-18 20:07:55 +02:00
@return true if type is acceptable
2020-08-16 11:19:36 +02:00
*/
2020-09-07 22:03:40 +02:00
bool NumerotationContext::keyIsAcceptable(const QString &type) const
{
return (type.contains(QRegularExpression(validRegExpNum())));
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::keyIsNumber
@return true if type represents a number
2020-08-16 11:19:36 +02:00
*/
2020-09-07 22:03:40 +02:00
bool NumerotationContext::keyIsNumber(const QString &type) const
{
return (type.contains(QRegularExpression(validRegExpNumber())));
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::toXml
2020-08-18 20:07:55 +02:00
Save the numerotation context in a QDomElement under the element name str
2020-08-16 11:19:36 +02:00
*/
QDomElement NumerotationContext::toXml(QDomDocument &d, const QString& str) {
QDomElement num_auto = d.createElement(str);
for (int i=0; i<content_.size(); ++i) {
QStringList strl = itemAt(i);
QDomElement part = d.createElement("part");
part.setAttribute("type", strl.at(0));
part.setAttribute("value", strl.at(1));
part.setAttribute("increase", strl.at(2));
if (strl.at(0) == ("unitfolio") ||
strl.at(0) == ("tenfolio") ||
strl.at(0) == ("hundredfolio")) {
part.setAttribute("initialvalue", strl.at(3));
}
num_auto.appendChild(part);
}
return num_auto;
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::fromXml
2020-08-18 20:07:55 +02:00
load numerotation context from e
2020-08-16 11:19:36 +02:00
*/
void NumerotationContext::fromXml(QDomElement &e) {
clear();
foreach(QDomElement qde, QET::findInDomElement(e, "part")) addValue(qde.attribute("type"), qde.attribute("value"), qde.attribute("increase").toInt(), qde.attribute("initialvalue").toInt());
}
/**
2020-08-16 11:19:36 +02:00
@brief NumerotationContext::replaceValue
This class replaces the current NC field value with content
@param index of NC Item
2020-08-18 20:07:55 +02:00
@param content to replace current value
2020-08-16 11:19:36 +02:00
*/
void NumerotationContext::replaceValue(int index, QString content) {
QString sep = "|";
QString type = content_[index].split("|").at(0);
const QString& value = std::move(content);
QString increase = content_[index].split("|").at(2);
QString initvalue = content_[index].split("|").at(3);
content_[index].replace(content_[index], type + "|" + value + "|" + increase + "|" + initvalue);
}