qmlhandler.h 353 B

123456789101112131415161718192021
  1. #ifndef CCATS_GUI_QMLHANDLER_H
  2. #define CCATS_GUI_QMLHANDLER_H
  3. #include <QDebug>
  4. #include <QObject>
  5. #include <QUrl>
  6. class QMLHandler : public QObject {
  7. Q_OBJECT
  8. public:
  9. explicit QMLHandler(QObject *parent = 0);
  10. signals:
  11. void setFileUrlText(QString signalText);
  12. public slots:
  13. void onSelectFile(QUrl url);
  14. };
  15. #endif // CCATS_GUI_QMLHANDLER_H