MauiKit Controls

mauiwindows.h
1#ifndef MAUIWINDOWSH_H
2#define MAUIWINDOWSH_H
3
4#include "abstractplatform.h"
5#include <QObject>
6
7class MAUIWindows : public AbstractPlatform
8{
10public:
11 explicit MAUIWindows(QObject *parent = nullptr);
12
13public slots:
14 void shareFiles(const QList<QUrl> &urls) override final;
15 void shareText(const QString &urls) override final;
16 bool hasKeyboard() override final;
17 bool hasMouse() override final;
18 void notify(const QString &title, const QString &message, const QString &icon, const QString &imageUrl) override final;
19};
20
21#endif // MAUIWINDOWSH_H
The AbstractPlatform class Defines abstract methods and properties that are common to be implemeted b...
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:56:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.