* 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
21 lines
486 B
C++
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
|