2021-12-23 22:17:37 +01:00
|
|
|
|
/*
|
2025-01-04 13:37:40 +01:00
|
|
|
|
Copyright 2006-2025 The QElectroTech Team
|
2020-08-16 09:40:14 +02:00
|
|
|
|
This file is part of QElectroTech.
|
2020-05-08 00:08:57 +02:00
|
|
|
|
|
2020-08-16 09:40:14 +02:00
|
|
|
|
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.
|
2020-05-08 00:08:57 +02:00
|
|
|
|
|
2020-08-16 09:40:14 +02:00
|
|
|
|
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.
|
2020-05-08 00:08:57 +02:00
|
|
|
|
|
2020-08-16 09:40:14 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
2020-05-08 00:08:57 +02:00
|
|
|
|
*/
|
|
|
|
|
#ifndef QETUTILS_H
|
|
|
|
|
#define QETUTILS_H
|
|
|
|
|
|
|
|
|
|
#include <QMargins>
|
2021-12-23 22:17:37 +01:00
|
|
|
|
#include <QWeakPointer>
|
2020-05-08 00:08:57 +02:00
|
|
|
|
|
2022-01-03 21:01:25 +01:00
|
|
|
|
class QGraphicsItem;
|
|
|
|
|
|
2020-05-08 00:08:57 +02:00
|
|
|
|
/**
|
2020-07-15 18:17:39 +02:00
|
|
|
|
Provide some small utils function
|
|
|
|
|
*/
|
2020-05-08 00:08:57 +02:00
|
|
|
|
namespace QETUtils
|
|
|
|
|
{
|
2020-07-15 18:17:39 +02:00
|
|
|
|
QString marginsToString(const QMargins &margins);
|
|
|
|
|
QMargins marginsFromString(const QString &string);
|
2022-01-03 21:01:25 +01:00
|
|
|
|
qreal graphicsHandlerSize(QGraphicsItem *item);
|
2021-12-23 22:17:37 +01:00
|
|
|
|
|
2022-03-12 19:07:49 +01:00
|
|
|
|
bool sortBeginIntString(const QString &str_a, const QString &str_b);
|
|
|
|
|
|
2021-12-23 22:17:37 +01:00
|
|
|
|
template <typename T>
|
|
|
|
|
QVector<QWeakPointer<T>> sharedVectorToWeak(const QVector<QSharedPointer<T>> &vector)
|
|
|
|
|
{
|
|
|
|
|
QVector<QWeakPointer<T>> return_vector;
|
|
|
|
|
for (const auto shared : vector) {
|
|
|
|
|
return_vector.append(shared.toWeakRef());
|
|
|
|
|
}
|
|
|
|
|
return return_vector;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
QVector<QSharedPointer<T>> weakVectorToShared(const QVector<QWeakPointer<T>> &vector)
|
|
|
|
|
{
|
|
|
|
|
QVector<QSharedPointer<T>> return_vector;
|
|
|
|
|
for (const auto weak : vector) {
|
|
|
|
|
return_vector.append(weak.toStrongRef());
|
|
|
|
|
}
|
|
|
|
|
return return_vector;
|
|
|
|
|
}
|
2020-05-08 00:08:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // QETUTILS_H
|