mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 15:37:23 +00:00
101 lines
3.5 KiB
C++
101 lines
3.5 KiB
C++
/***************************************************************************
|
|
* This file is part of awesome-widgets *
|
|
* *
|
|
* awesome-widgets 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 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* awesome-widgets 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 awesome-widgets. If not, see http://www.gnu.org/licenses/ *
|
|
***************************************************************************/
|
|
|
|
#ifndef ABSTRACTEXTITEMAGGREGATOR_H
|
|
#define ABSTRACTEXTITEMAGGREGATOR_H
|
|
|
|
#include <QDialog>
|
|
#include <QStandardPaths>
|
|
|
|
#include "abstractextitem.h"
|
|
#include "awdebug.h"
|
|
|
|
|
|
class QAbstractButton;
|
|
class QListWidgetItem;
|
|
namespace Ui
|
|
{
|
|
class AbstractExtItemAggregator;
|
|
}
|
|
|
|
class AbstractExtItemAggregator : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QVariant configArgs READ configArgs WRITE setConfigArgs)
|
|
Q_PROPERTY(QVariant type READ type)
|
|
|
|
public:
|
|
explicit AbstractExtItemAggregator(QWidget *_parent, QString _type);
|
|
~AbstractExtItemAggregator() override;
|
|
// methods
|
|
void copyItem();
|
|
template <class T> void createItem()
|
|
{
|
|
QString fileName = getName();
|
|
int number = uniqNumber();
|
|
QString dir
|
|
= QString("%1/awesomewidgets/%2")
|
|
.arg(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation))
|
|
.arg(m_type);
|
|
if (fileName.isEmpty()) {
|
|
qCWarning(LOG_LIB) << "Nothing to create";
|
|
return;
|
|
}
|
|
QString filePath = QString("%1/%2").arg(dir).arg(fileName);
|
|
|
|
T *newItem = new T(this, filePath);
|
|
newItem->setNumber(number);
|
|
if (newItem->showConfiguration(configArgs()) == 1) {
|
|
initItems();
|
|
repaintList();
|
|
}
|
|
};
|
|
void deleteItem();
|
|
void editItem();
|
|
QString getName();
|
|
virtual void initItems() = 0;
|
|
AbstractExtItem *itemFromWidget() const;
|
|
void repaintList() const;
|
|
[[nodiscard]] int uniqNumber() const;
|
|
// get methods
|
|
[[nodiscard]] QVariant configArgs() const;
|
|
[[nodiscard]] QStringList directories() const;
|
|
[[nodiscard]] virtual QList<AbstractExtItem *> items() const = 0;
|
|
[[nodiscard]] QString type() const;
|
|
// set methods
|
|
void setConfigArgs(const QVariant &_configArgs);
|
|
|
|
private slots:
|
|
void editItemActivated(QListWidgetItem *);
|
|
void editItemButtonPressed(QAbstractButton *_button);
|
|
|
|
private:
|
|
// ui
|
|
Ui::AbstractExtItemAggregator *ui = nullptr;
|
|
QPushButton *copyButton = nullptr;
|
|
QPushButton *createButton = nullptr;
|
|
QPushButton *deleteButton = nullptr;
|
|
// properties
|
|
QVariant m_configArgs;
|
|
QString m_type;
|
|
// ui methods
|
|
virtual void doCreateItem() = 0;
|
|
};
|
|
|
|
|
|
#endif /* ABSTRACTEXTITEMAGGREGATOR_H */
|