File indexing completed on 2024-06-23 05:33:17

0001 #ifndef SHEETPROPERTIES_H
0002 #define SHEETPROPERTIES_H
0003 
0004 #include <QDialog>
0005 #include <QStringListModel>
0006 namespace Ui
0007 {
0008 class SheetProperties;
0009 }
0010 class QmlGeneratorController;
0011 class SheetProperties : public QDialog
0012 {
0013     Q_OBJECT
0014 
0015 public:
0016     explicit SheetProperties(QmlGeneratorController* m_ctrl, QWidget* parent= nullptr);
0017     virtual ~SheetProperties() override;
0018 
0019     void init();
0020 public slots:
0021     void accept() override;
0022 
0023 private:
0024     Ui::SheetProperties* ui;
0025     QStringList m_fontUri;
0026     QStringListModel m_model;
0027     QmlGeneratorController* m_ctrl;
0028 };
0029 
0030 #endif // SHEETPROPERTIES_H