// For license of this file, see /LICENSE.md. #ifndef FEEDSTOOLBAR_H #define FEEDSTOOLBAR_H #include "gui/basetoolbar.h" class FeedsToolBar : public BaseToolBar { Q_OBJECT public: explicit FeedsToolBar(const QString& title, QWidget* parent = nullptr); QList availableActions() const; QList changeableActions() const; void saveChangeableActions(const QStringList& actions); QList getSpecificActions(const QStringList& actions); void loadSpecificActions(const QList& actions, bool initial_load = false); QStringList defaultActions() const; QStringList savedActions() const; }; #endif // FEEDSTOOLBAR_H