rssguard/src/librssguard/services/abstract/gui/multifeededitcheckbox.h
martinrotter 623caa7631
Multi select feeds list - basic implementation (#1148)
* Starting to work on this.

* Working, saving of common data in feeds could work

* Working, saving of common data in feeds could work

* work on standard

* save work

* work on multi feed select, should work now for feeds

* kind of works, there are some corner cases and UX things that need to be sorted out, will merge so people can test
2023-10-30 10:54:44 +01:00

21 lines
486 B
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef MULTIFEEDEDITCHECKBOX_H
#define MULTIFEEDEDITCHECKBOX_H
#include <QCheckBox>
class MultiFeedEditCheckBox : public QCheckBox {
Q_OBJECT
public:
explicit MultiFeedEditCheckBox(QWidget* parent = nullptr);
QList<QWidget*> actionWidgets() const;
void addActionWidget(QWidget* widget);
private:
QList<QWidget*> m_actionWidgets;
};
#endif // MULTIFEEDEDITCHECKBOX_H