17 #ifndef WIZARD_PAGELIST_H
18 #define WIZARD_PAGELIST_H
24 class PageList :
public QObject
27 Q_PROPERTY(
int index READ index NOTIFY indexChanged)
28 Q_PROPERTY(
int numPages READ numPages NOTIFY numPagesChanged)
31 explicit PageList(QObject *parent = 0);
33 QStringList entries()
const;
34 QStringList paths()
const;
44 void numPagesChanged();
47 int setIndex(
int index);
50 QMap<QString, QString> m_pages;
53 #endif // WIZARD_PAGELIST_H