rssguard/src/librssguard/gui/dialogs/formaddeditlabel.h
2020-10-07 20:22:50 +02:00

31 lines
568 B
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef FORMADDEDITLABEL_H
#define FORMADDEDITLABEL_H
#include <QDialog>
#include "ui_formaddeditlabel.h"
namespace Ui {
class FormAddEditLabel;
}
class Label;
class FormAddEditLabel : public QDialog {
Q_OBJECT
public:
explicit FormAddEditLabel(QWidget* parent = nullptr);
public slots:
Label* execForAdd();
bool execForEdit(Label* lbl);
private:
Ui::FormAddEditLabel m_ui;
Label* m_editableLabel;
};
#endif // FORMADDEDITLABEL_H