File indexing completed on 2024-12-22 04:31:08

0001 #include "mauiwindows.h"
0002 #include <QDesktopServices>
0003 
0004 MAUIWindows::MAUIWindows(QObject *parent)
0005     : AbstractPlatform(parent)
0006 {
0007 }
0008 
0009 void MAUIWindows::shareFiles(const QList<QUrl> &urls)
0010 {
0011 }
0012 
0013 void MAUIWindows::shareText(const QString &urls)
0014 {
0015 }
0016 
0017 bool MAUIWindows::hasKeyboard()
0018 {
0019     return true;
0020 }
0021 
0022 bool MAUIWindows::hasMouse()
0023 {
0024     return true;
0025 }
0026 
0027 void MAUIWindows::notify(const QString &title, const QString &message, const QString &icon, const QString &imageUrl)
0028 {
0029 }