File indexing completed on 2024-12-22 04:31:08
0001 #ifndef MAUIWINDOWSH_H 0002 #define MAUIWINDOWSH_H 0003 0004 #include "abstractplatform.h" 0005 #include <QObject> 0006 0007 class MAUIWindows : public AbstractPlatform 0008 { 0009 Q_OBJECT 0010 public: 0011 explicit MAUIWindows(QObject *parent = nullptr); 0012 0013 public slots: 0014 void shareFiles(const QList<QUrl> &urls) override final; 0015 void shareText(const QString &urls) override final; 0016 bool hasKeyboard() override final; 0017 bool hasMouse() override final; 0018 void notify(const QString &title, const QString &message, const QString &icon, const QString &imageUrl) override final; 0019 }; 0020 0021 #endif // MAUIWINDOWSH_H