#ifndef PROJECTICONSELECTIONDLG_H #define PROJECTICONSELECTIONDLG_H #include #include #include #include class ProjectIconSelectionDlg : public QDialog { Q_OBJECT public: ProjectIconSelectionDlg(const QMap,QWidget* parent = nullptr); QByteArray selectedSVG() const; private: QListWidget* listWidget; QMap svgMap; }; #endif