summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Krause <volker.krause@kdab.com>2016-11-08 15:27:30 +0100
committerVolker Krause <volker.krause@kdab.com>2016-11-08 22:07:20 +0000
commit857f3e569eab8208ac4fb22e116a39565ab366e6 (patch)
tree4330910d87b5a5d2ccf1b714502c84410f96fc2e
parent15f2a17a52ce9ebac6ab9a6f50f8f5a2cc4763a5 (diff)
downloadqtapplicationmanager-857f3e569eab8208ac4fb22e116a39565ab366e6.tar.gz
Add dummy import for Notification
Far from complete, just enough to be able to start Neptune again. Change-Id: I2502032b4704fd9ed7b969c53d76340618a59351 Reviewed-by: Dominik Holland <dominik.holland@pelagicore.com> Reviewed-by: Tomas Hallenberg <tomas.hallenberg@pelagicore.com>
-rw-r--r--dummyimports/QtApplicationManager/Notification.qml49
-rw-r--r--dummyimports/QtApplicationManager/qmldir1
2 files changed, 50 insertions, 0 deletions
diff --git a/dummyimports/QtApplicationManager/Notification.qml b/dummyimports/QtApplicationManager/Notification.qml
new file mode 100644
index 00000000..23ebae51
--- /dev/null
+++ b/dummyimports/QtApplicationManager/Notification.qml
@@ -0,0 +1,49 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 Pelagicore AG
+** Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Pelagicore Application Manager.
+**
+** $QT_BEGIN_LICENSE:LGPL-QTAS$
+** Commercial License Usage
+** Licensees holding valid commercial Qt Automotive Suite licenses may use
+** this file in accordance with the commercial license agreement provided
+** with the Software or, alternatively, in accordance with the terms
+** contained in a written agreement between you and The Qt Company. For
+** licensing terms and conditions see https://www.qt.io/terms-conditions.
+** For further information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+** SPDX-License-Identifier: LGPL-3.0
+**
+****************************************************************************/
+
+import QtQml 2.0
+
+QtObject {
+ property string summary
+ property int timeout
+ property variant actions
+}
diff --git a/dummyimports/QtApplicationManager/qmldir b/dummyimports/QtApplicationManager/qmldir
index 8dfc6001..6af7b9d7 100644
--- a/dummyimports/QtApplicationManager/qmldir
+++ b/dummyimports/QtApplicationManager/qmldir
@@ -2,5 +2,6 @@ singleton ApplicationManager 1.0 ApplicationManager.qml
ApplicationManagerWindow 1.0 ApplicationManagerWindow.qml
ApplicationInstaller 1.0 ApplicationInstaller.js
ApplicationIPCInterface 1.0 ApplicationIPCInterface.qml
+Notification 1.0 Notification.qml
singleton WindowManager 1.0 WindowManager.qml
singleton SystemMonitor 1.0 SystemMonitor.qml