123456789101112131415161718192021 |
- #ifndef CCATS_GUI_QMLHANDLER_H
- #define CCATS_GUI_QMLHANDLER_H
- #include <QDebug>
- #include <QObject>
- #include <QUrl>
- class QMLHandler : public QObject {
- Q_OBJECT
- public:
- explicit QMLHandler(QObject *parent = 0);
- signals:
- void setFileUrlText(QString signalText);
- public slots:
- void onSelectFile(QUrl url);
- };
- #endif // CCATS_GUI_QMLHANDLER_H
|