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.
29 lines
646 B
29 lines
646 B
/* |
|
SPDX-FileCopyrightText: 2015 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef WIDGETDRAWINGTOOLS_H |
|
#define WIDGETDRAWINGTOOLS_H |
|
|
|
#include "widgetconfigurationtoolsbase.h" |
|
|
|
class WidgetDrawingTools : public WidgetConfigurationToolsBase |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit WidgetDrawingTools(QWidget *parent = nullptr); |
|
~WidgetDrawingTools() override; |
|
|
|
QStringList tools() const override; |
|
void setTools(const QStringList &items) override; |
|
|
|
QString defaultName() const; |
|
|
|
protected Q_SLOTS: |
|
void slotAdd() override; |
|
void slotEdit() override; |
|
}; |
|
|
|
#endif // WIDGETDRAWINGTOOLS_H
|
|
|