summaryrefslogtreecommitdiffstats
path: root/examples/corelib/platform
diff options
context:
space:
mode:
Diffstat (limited to 'examples/corelib/platform')
-rw-r--r--examples/corelib/platform/CMakeLists.txt6
-rw-r--r--examples/corelib/platform/androidnotifier/CMakeLists.txt57
-rw-r--r--examples/corelib/platform/androidnotifier/android/AndroidManifest.xml47
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-hdpi/icon.pngbin0 -> 3654 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-ldpi/icon.pngbin0 -> 1432 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-mdpi/icon.pngbin0 -> 1998 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-xhdpi/icon.pngbin0 -> 4549 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-xxhdpi/icon.pngbin0 -> 9275 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/res/drawable-xxxhdpi/icon.pngbin0 -> 12866 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/android/src/org/qtproject/example/androidnotifier/NotificationClient.java46
-rw-r--r--examples/corelib/platform/androidnotifier/androidnotifier.pro20
-rw-r--r--examples/corelib/platform/androidnotifier/doc/images/androidnotifier.pngbin0 -> 48263 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/doc/src/androidnotifier-example.qdoc62
-rw-r--r--examples/corelib/platform/androidnotifier/images/happy.pngbin0 -> 42346 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/images/sad.pngbin0 -> 41223 bytes
-rw-r--r--examples/corelib/platform/androidnotifier/main.cpp56
-rw-r--r--examples/corelib/platform/androidnotifier/main.qrc6
-rw-r--r--examples/corelib/platform/androidnotifier/notificationclient.cpp55
-rw-r--r--examples/corelib/platform/androidnotifier/notificationclient.h29
-rw-r--r--examples/corelib/platform/platform.pro4
20 files changed, 388 insertions, 0 deletions
diff --git a/examples/corelib/platform/CMakeLists.txt b/examples/corelib/platform/CMakeLists.txt
new file mode 100644
index 0000000000..b195713074
--- /dev/null
+++ b/examples/corelib/platform/CMakeLists.txt
@@ -0,0 +1,6 @@
+# Copyright (C) 2023 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+if(ANDROID)
+ qt_internal_add_example(androidnotifier)
+endif()
diff --git a/examples/corelib/platform/androidnotifier/CMakeLists.txt b/examples/corelib/platform/androidnotifier/CMakeLists.txt
new file mode 100644
index 0000000000..b356b15a43
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/CMakeLists.txt
@@ -0,0 +1,57 @@
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+cmake_minimum_required(VERSION 3.16)
+project(androidnotifier LANGUAGES CXX)
+
+if(NOT ANDROID)
+ message(FATAL_ERROR "Example only works on Android")
+endif()
+
+find_package(Qt6 REQUIRED COMPONENTS Widgets)
+
+qt_standard_project_setup()
+
+qt_add_executable(androidnotifier
+ MANUAL_FINALIZATION
+ main.cpp
+ notificationclient.cpp
+ notificationclient.h
+ android/src/org/qtproject/example/androidnotifier/NotificationClient.java
+ android/AndroidManifest.xml
+)
+
+target_link_libraries(androidnotifier PRIVATE
+ Qt6::CorePrivate
+ Qt6::Widgets
+)
+
+set_property(TARGET androidnotifier APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
+ ${CMAKE_CURRENT_SOURCE_DIR}/android)
+
+qt_finalize_executable(androidnotifier)
+
+set(qml_resource_files
+ "images/happy.png"
+ "images/sad.png"
+)
+
+qt_add_resources(androidnotifier "main"
+ PREFIX
+ "/"
+ FILES
+ ${qml_resource_files}
+)
+
+install(TARGETS androidnotifier
+ BUNDLE DESTINATION .
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+)
+
+qt_generate_deploy_app_script(
+ TARGET androidnotifier
+ OUTPUT_SCRIPT deploy_script
+ NO_UNSUPPORTED_PLATFORM_ERROR
+)
+install(SCRIPT ${deploy_script})
diff --git a/examples/corelib/platform/androidnotifier/android/AndroidManifest.xml b/examples/corelib/platform/androidnotifier/android/AndroidManifest.xml
new file mode 100644
index 0000000000..778028a566
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/AndroidManifest.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.qtproject.example.androidnotifier"
+ android:installLocation="auto"
+ android:versionCode="1"
+ android:versionName="1.0">
+
+ <!-- %%INSERT_PERMISSIONS -->
+ <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
+ <!-- %%INSERT_FEATURES -->
+
+ <supports-screens
+ android:anyDensity="true"
+ android:largeScreens="true"
+ android:normalScreens="true"
+ android:smallScreens="true" />
+ <application
+ android:name="org.qtproject.qt.android.bindings.QtApplication"
+ android:extractNativeLibs="true"
+ android:hardwareAccelerated="true"
+ android:label="Qt Notifier"
+ android:requestLegacyExternalStorage="true"
+ android:icon="@drawable/icon"
+ android:allowBackup="true"
+ android:fullBackupOnly="false">
+ <activity
+ android:name="org.qtproject.qt.android.bindings.QtActivity"
+ android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
+ android:label="Qt Notifier"
+ android:launchMode="singleTop"
+ android:screenOrientation="unspecified"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+
+ <meta-data
+ android:name="android.app.lib_name"
+ android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
+
+ <meta-data
+ android:name="android.app.background_running"
+ android:value="false"/>
+ </activity>
+ </application>
+</manifest>
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-hdpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-hdpi/icon.png
new file mode 100644
index 0000000000..d3ccebe1f2
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-hdpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-ldpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-ldpi/icon.png
new file mode 100644
index 0000000000..2194be145e
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-ldpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-mdpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-mdpi/icon.png
new file mode 100644
index 0000000000..31812ccdd9
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-mdpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-xhdpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-xhdpi/icon.png
new file mode 100644
index 0000000000..3aeae642d9
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-xhdpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-xxhdpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-xxhdpi/icon.png
new file mode 100644
index 0000000000..f754fd18ae
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-xxhdpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/res/drawable-xxxhdpi/icon.png b/examples/corelib/platform/androidnotifier/android/res/drawable-xxxhdpi/icon.png
new file mode 100644
index 0000000000..d0d043bf9c
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/res/drawable-xxxhdpi/icon.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/android/src/org/qtproject/example/androidnotifier/NotificationClient.java b/examples/corelib/platform/androidnotifier/android/src/org/qtproject/example/androidnotifier/NotificationClient.java
new file mode 100644
index 0000000000..4cd6c959f6
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/android/src/org/qtproject/example/androidnotifier/NotificationClient.java
@@ -0,0 +1,46 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+package org.qtproject.example.androidnotifier;
+
+import android.app.Notification;
+import android.app.NotificationManager;
+import android.content.Context;
+import android.graphics.Bitmap;
+import android.graphics.Color;
+import android.graphics.BitmapFactory;
+import android.app.NotificationChannel;
+
+public class NotificationClient
+{
+ public static void notify(Context context, String message) {
+ try {
+ NotificationManager m_notificationManager = (NotificationManager)
+ context.getSystemService(Context.NOTIFICATION_SERVICE);
+
+ Notification.Builder m_builder;
+ if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
+ int importance = NotificationManager.IMPORTANCE_DEFAULT;
+ NotificationChannel notificationChannel;
+ notificationChannel = new NotificationChannel("Qt", "Qt Notifier", importance);
+ m_notificationManager.createNotificationChannel(notificationChannel);
+ m_builder = new Notification.Builder(context, notificationChannel.getId());
+ } else {
+ m_builder = new Notification.Builder(context);
+ }
+
+ Bitmap icon = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon);
+ m_builder.setSmallIcon(R.drawable.icon)
+ .setLargeIcon(icon)
+ .setContentTitle("A message from Qt!")
+ .setContentText(message)
+ .setDefaults(Notification.DEFAULT_SOUND)
+ .setColor(Color.GREEN)
+ .setAutoCancel(true);
+
+ m_notificationManager.notify(0, m_builder.build());
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+}
diff --git a/examples/corelib/platform/androidnotifier/androidnotifier.pro b/examples/corelib/platform/androidnotifier/androidnotifier.pro
new file mode 100644
index 0000000000..7e5b845e10
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/androidnotifier.pro
@@ -0,0 +1,20 @@
+QT += core gui widgets
+QT += core-private # For Notification permission request
+
+SOURCES += \
+ main.cpp \
+ notificationclient.cpp
+
+HEADERS += \
+ notificationclient.h
+
+RESOURCES += \
+ main.qrc
+
+target.path = $$[QT_INSTALL_EXAMPLES]/corelib/platform/androidnotifier
+INSTALLS += target
+
+ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
+OTHER_FILES += \
+ android/src/org/qtproject/example/androidnotifier/NotificationClient.java \
+ android/AndroidManifest.xml
diff --git a/examples/corelib/platform/androidnotifier/doc/images/androidnotifier.png b/examples/corelib/platform/androidnotifier/doc/images/androidnotifier.png
new file mode 100644
index 0000000000..36a4a50c47
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/doc/images/androidnotifier.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/doc/src/androidnotifier-example.qdoc b/examples/corelib/platform/androidnotifier/doc/src/androidnotifier-example.qdoc
new file mode 100644
index 0000000000..1315ad7762
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/doc/src/androidnotifier-example.qdoc
@@ -0,0 +1,62 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
+
+/*!
+ \title Qt Android Notifier
+ \example platform/androidnotifier
+ \meta tag {widgets,android,notification}
+ \brief Demonstrates calling Java code from Qt in an Android application.
+ \ingroup androidplatform
+
+ \image androidnotifier.png
+
+ This example demonstrates how to add a custom Java class to an Android
+ application, and how to call it using the JNI convenience APIs in Qt.
+
+ Click on one of the smiley faces to send a notification in the status bar
+ of the Android screen.
+
+ \include examples-run.qdocinc
+
+ \section1 Calling Java Methods from C++ Code
+
+ We define a custom Java class called \c NotificationClient in the
+ NotificationClient.java file:
+
+ \quotefromfile platform/androidnotifier/android/src/org/qtproject/example/androidnotifier/NotificationClient.java
+ \skipto org.qtproject.example.androidnotifier
+ \printuntil /^\}/
+
+ In the NotificationClient C++ class header file, \c notificationclient.h, we
+ declare a simple C++ API to display notifications on an Android device. It
+ consists of a single string property, \c notification, and a slot,
+ \c updateAndroidNotification(), that calls the Java code:
+
+ \snippet platform/androidnotifier/notificationclient.h Qt Notification Class
+
+ We connect the \c notificationChanged() signal to the
+ \c updateAndroidNotification() slot to update the notification text when the
+ \c notification text changes:
+
+ \snippet platform/androidnotifier/notificationclient.cpp notification changed signal
+
+ The \c updateAndroidNotification() function calls the Java method responsible
+ for sending the notification from the Android platform APIs. First, we construct
+ a Java string \c jstring from the notification string, then pass the \c jstring
+ object as a parameter to the \c notify() method in Java:
+
+ \snippet platform/androidnotifier/notificationclient.cpp Send notification message to Java
+
+ The call to the Java meethod use \l QJniObject which relies on the Java Native
+ Interface (JNI) APIs to communicate with Java. Also, in the previous snippet,
+ we are passing the app's context object, which the static Java code can use
+ to tap into the app's specific properties and APIs.
+
+ To make sure our smiley buttons do what they are supposed to, we add the
+ the following code to change the notification text if either of them are
+ clicked:
+
+ \snippet platform/androidnotifier/main.cpp Connect button signals
+
+ \sa {Qt for Android}
+*/
diff --git a/examples/corelib/platform/androidnotifier/images/happy.png b/examples/corelib/platform/androidnotifier/images/happy.png
new file mode 100644
index 0000000000..af9412c2fb
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/images/happy.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/images/sad.png b/examples/corelib/platform/androidnotifier/images/sad.png
new file mode 100644
index 0000000000..928184b413
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/images/sad.png
Binary files differ
diff --git a/examples/corelib/platform/androidnotifier/main.cpp b/examples/corelib/platform/androidnotifier/main.cpp
new file mode 100644
index 0000000000..07eff5d2b0
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/main.cpp
@@ -0,0 +1,56 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+#include "notificationclient.h"
+
+#include <QApplication>
+#include <QWidget>
+#include <QPushButton>
+#include <QHBoxLayout>
+#include <QLabel>
+#include <QFont>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+
+ QWidget widget;
+ QPushButton happyButton;
+ happyButton.setIcon(QIcon(":/images/happy.png"));
+ happyButton.setIconSize(QSize(happyButton.width(), 120));
+
+ QPushButton sadButton;
+ sadButton.setIcon(QIcon(":/images/sad.png"));
+ sadButton.setIconSize(QSize(sadButton.width(), 120));
+
+ QVBoxLayout mainLayout;
+ QHBoxLayout labelLayout;
+ QLabel label = QLabel("Click a smiley to notify your mood");
+ QFont font = label.font();
+ font.setPointSize(20);
+ label.setFont(font);
+ labelLayout.addWidget(&label);
+ labelLayout.setAlignment(Qt::AlignHCenter);
+ mainLayout.addLayout(&labelLayout);
+
+ QHBoxLayout smileysLayout;
+ smileysLayout.addWidget(&sadButton);
+ smileysLayout.addWidget(&happyButton);
+ smileysLayout.setAlignment(Qt::AlignCenter);
+ mainLayout.addLayout(&smileysLayout);
+ widget.setLayout(&mainLayout);
+
+//! [Connect button signals]
+ QObject::connect(&happyButton, &QPushButton::clicked, &happyButton, []() {
+ NotificationClient().setNotification("The user is happy!");
+ });
+
+ QObject::connect(&sadButton, &QPushButton::clicked, &happyButton, []() {
+ NotificationClient().setNotification("The user is sad!");
+ });
+//! [Connect button signals]
+
+ widget.show();
+ return a.exec();
+}
+
diff --git a/examples/corelib/platform/androidnotifier/main.qrc b/examples/corelib/platform/androidnotifier/main.qrc
new file mode 100644
index 0000000000..e0bb052fd2
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/main.qrc
@@ -0,0 +1,6 @@
+<RCC>
+ <qresource prefix="/">
+ <file>images/happy.png</file>
+ <file>images/sad.png</file>
+ </qresource>
+</RCC>
diff --git a/examples/corelib/platform/androidnotifier/notificationclient.cpp b/examples/corelib/platform/androidnotifier/notificationclient.cpp
new file mode 100644
index 0000000000..aa6093c29c
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/notificationclient.cpp
@@ -0,0 +1,55 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+#include "notificationclient.h"
+
+#include <QtCore/qjniobject.h>
+#include <QtCore/qcoreapplication.h>
+#include <QtCore/private/qandroidextras_p.h>
+
+using namespace Qt::StringLiterals;
+
+NotificationClient::NotificationClient(QObject *parent)
+ : QObject(parent)
+{
+ if (QNativeInterface::QAndroidApplication::sdkVersion() >= __ANDROID_API_T__) {
+ const auto notificationPermission = "android.permission.POST_NOTIFICATIONS"_L1;
+ auto requestResult = QtAndroidPrivate::requestPermission(notificationPermission);
+ if (requestResult.result() != QtAndroidPrivate::Authorized) {
+ qWarning() << "Failed to acquire permission to post notifications "
+ "(required for Android 13+)";
+ }
+ }
+
+ connect(this, &NotificationClient::notificationChanged,
+ this, &NotificationClient::updateAndroidNotification);
+}
+
+void NotificationClient::setNotification(const QString &notification)
+{
+ if (m_notification == notification)
+ return;
+
+//! [notification changed signal]
+ m_notification = notification;
+ emit notificationChanged();
+//! [notification changed signal]
+}
+
+QString NotificationClient::notification() const
+{
+ return m_notification;
+}
+
+//! [Send notification message to Java]
+void NotificationClient::updateAndroidNotification()
+{
+ QJniObject javaNotification = QJniObject::fromString(m_notification);
+ QJniObject::callStaticMethod<void>(
+ "org/qtproject/example/androidnotifier/NotificationClient",
+ "notify",
+ "(Landroid/content/Context;Ljava/lang/String;)V",
+ QNativeInterface::QAndroidApplication::context(),
+ javaNotification.object<jstring>());
+}
+//! [Send notification message to Java]
diff --git a/examples/corelib/platform/androidnotifier/notificationclient.h b/examples/corelib/platform/androidnotifier/notificationclient.h
new file mode 100644
index 0000000000..4ed7bfff50
--- /dev/null
+++ b/examples/corelib/platform/androidnotifier/notificationclient.h
@@ -0,0 +1,29 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+#ifndef NOTIFICATIONCLIENT_H
+#define NOTIFICATIONCLIENT_H
+
+#include <QObject>
+
+//! [Qt Notification Class]
+class NotificationClient : public QObject
+{
+ Q_OBJECT
+public:
+ explicit NotificationClient(QObject *parent = 0);
+
+ void setNotification(const QString &notification);
+ QString notification() const;
+
+signals:
+ void notificationChanged();
+
+private slots:
+ void updateAndroidNotification();
+
+private:
+ QString m_notification;
+};
+//! [Qt Notification Class]
+#endif // NOTIFICATIONCLIENT_H
diff --git a/examples/corelib/platform/platform.pro b/examples/corelib/platform/platform.pro
new file mode 100644
index 0000000000..b9e58c7c7e
--- /dev/null
+++ b/examples/corelib/platform/platform.pro
@@ -0,0 +1,4 @@
+TEMPLATE = subdirs
+CONFIG += no_docs_target
+
+android: SUBDIRS += androidnotifier