You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
/* |
|
SPDX-FileCopyrightText: 2015 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef WIDGETCONFIGURATIONTOOLSBASE_H |
|
#define WIDGETCONFIGURATIONTOOLSBASE_H |
|
|
|
#include <QWidget> |
|
class QListWidget; |
|
class QPushButton; |
|
|
|
class WidgetConfigurationToolsBase : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(QStringList tools READ tools WRITE setTools NOTIFY changed USER true) |
|
|
|
public: |
|
explicit WidgetConfigurationToolsBase(QWidget *parent = nullptr); |
|
~WidgetConfigurationToolsBase() override; |
|
|
|
virtual QStringList tools() const = 0; |
|
virtual void setTools(const QStringList &items) = 0; |
|
|
|
Q_SIGNALS: |
|
void changed(); |
|
|
|
protected: |
|
QListWidget *m_list; |
|
|
|
private: |
|
QPushButton *m_btnAdd; |
|
QPushButton *m_btnEdit; |
|
QPushButton *m_btnRemove; |
|
QPushButton *m_btnMoveUp; |
|
QPushButton *m_btnMoveDown; |
|
|
|
protected Q_SLOTS: |
|
virtual void slotAdd() = 0; |
|
virtual void slotEdit() = 0; |
|
void updateButtons(); |
|
void slotRemove(); |
|
void slotMoveUp(); |
|
void slotMoveDown(); |
|
}; |
|
|
|
#endif // WIDGETCONFIGURATIONTOOLSBASE_H
|
|
|