MauiKit Controls

mauiwindows.cpp
1#include "mauiwindows.h"
2#include <QDesktopServices>
3
4MAUIWindows::MAUIWindows(QObject *parent)
5 : AbstractPlatform(parent)
6{
7}
8
9void MAUIWindows::shareFiles(const QList<QUrl> &urls)
10{
11}
12
13void MAUIWindows::shareText(const QString &urls)
14{
15}
16
17bool MAUIWindows::hasKeyboard()
18{
19 return true;
20}
21
22bool MAUIWindows::hasMouse()
23{
24 return true;
25}
26
27void MAUIWindows::notify(const QString &title, const QString &message, const QString &icon, const QString &imageUrl)
28{
29}
The AbstractPlatform class Defines abstract methods and properties that are common to be implemeted b...
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.