summaryrefslogtreecommitdiffstats
path: root/src/imports/displaysettings
diff options
context:
space:
mode:
authorLassi Lehikoinen <lassi.lehikoinen@qt.io>2020-11-20 10:10:39 +0200
committerLassi Lehikoinen <lassi.lehikoinen@qt.io>2020-12-16 11:49:13 +0200
commit1ace321e373ad19287c41cef9ae17fcfb7ab938d (patch)
treefcaaa1763fc94f77443cb134d9e0a50955f1ad36 /src/imports/displaysettings
parent764eb9529aa163302aac3fec70cdbb3b6589752b (diff)
Remove all device utilities except network settings
Also remove USB ethernet functionality from Qt Network Settings. Task-number: QTBUG-88315 Change-Id: I06c41b61854b57f57c264b3c98940333902222d2 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io> Reviewed-by: Rami Potinkara <rami.potinkara@qt.io>
Diffstat (limited to 'src/imports/displaysettings')
-rw-r--r--src/imports/displaysettings/displaysettings.pro10
-rw-r--r--src/imports/displaysettings/plugin.cpp108
-rw-r--r--src/imports/displaysettings/plugins.qmltypes47
-rw-r--r--src/imports/displaysettings/qmldir4
4 files changed, 0 insertions, 169 deletions
diff --git a/src/imports/displaysettings/displaysettings.pro b/src/imports/displaysettings/displaysettings.pro
deleted file mode 100644
index efa1903..0000000
--- a/src/imports/displaysettings/displaysettings.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-QT += qml displaysettings
-
-CONFIG += no_cxx_module
-
-TARGET = qmldisplaysettingsplugin
-TARGETPATH = QtDeviceUtilities/DisplaySettings
-
-SOURCES += plugin.cpp \
-
-load(qml_plugin)
diff --git a/src/imports/displaysettings/plugin.cpp b/src/imports/displaysettings/plugin.cpp
deleted file mode 100644
index 1fd56b0..0000000
--- a/src/imports/displaysettings/plugin.cpp
+++ /dev/null
@@ -1,108 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the Device Utilities module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt 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 General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 or (at your option) 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.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-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-#include <QtQml/QQmlExtensionPlugin>
-#include <QtQml/qqml.h>
-#include <QQmlEngine>
-#include <qcoreapplication.h>
-#include "displaysettings.h"
-
-/*!
- \qmlmodule QtDeviceUtilities.DisplaySettings 1.0
- \ingroup qtdevice-utilities-qml-modules
- \ingroup qmlmodules
- \title Qt Display Settings QML Types
-
- \brief Provides a singleton QML type for controlling display settings.
-
- To import and use the module's QML types, use the following statement:
-
- \badcode
- import QtDeviceUtilities.DisplaySettings 1.0
- \endcode
-
- \note Some functions may not be available on all of the platforms.
-
- \section1 QML Types
-*/
-
-/*!
- \qmltype DisplaySettings
- \inqmlmodule QtDeviceUtilities.DisplaySettings
- \brief A singleton QML type for controlling display settings.
-
- There is no need to create an instance of this object. To use it,
- simply import the \c {QtDeviceUtilities.DisplaySettings} module.
-*/
-
-/*!
- \qmlproperty int DisplaySettings::displayBrightness
-
- Holds the display brightness (intensity of the backlight). A valid
- range for the property is from 0 to 255, where 255 is the maximum
- brightness and 0 is the minimum (typically, the backlight turned off).
-*/
-
-/*!
- \qmlproperty int DisplaySettings::physicalScreenSizeInch
-
- Holds the physical (diagonal) screen size in inches.
-*/
-
-/*!
- \qmlproperty bool DisplaySettings::physicalScreenSizeOverride
-
- Holds whether the value in physicalScreenSizeInch should be
- used or not.
-*/
-
-QT_BEGIN_NAMESPACE
-
-template <typename T>
-QObject *instance(QQmlEngine *engine, QJSEngine *) {
- T *t = new T(engine);
- t->setObjectName(T::staticMetaObject.className());
- return t;
-}
-
-class DisplaySettingsQmlPlugin : public QQmlExtensionPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface")
-
-public:
- void registerTypes(const char *uri)
- {
- qmlRegisterType(QUrl("qrc:/Display.qml"), uri, 1, 0, "Display");
- qmlRegisterSingletonType<DisplaySettings>(uri, 1, 0, "DisplaySettings", &instance<DisplaySettings>);
- }
-};
-
-QT_END_NAMESPACE
-
-#include "plugin.moc"
diff --git a/src/imports/displaysettings/plugins.qmltypes b/src/imports/displaysettings/plugins.qmltypes
deleted file mode 100644
index bebb50e..0000000
--- a/src/imports/displaysettings/plugins.qmltypes
+++ /dev/null
@@ -1,47 +0,0 @@
-import QtQuick.tooling 1.2
-
-// This file describes the plugin-supplied types contained in the library.
-// It is used for QML tooling purposes only.
-//
-// This file was auto-generated by:
-// 'qmlplugindump -nonrelocatable QtDeviceUtilities.DisplaySettings 1.0'
-
-Module {
- dependencies: []
- Component {
- name: "DisplaySettings"
- prototype: "QObject"
- exports: ["QtDeviceUtilities.DisplaySettings/DisplaySettings 1.0"]
- isCreatable: false
- isSingleton: true
- exportMetaObjectRevisions: [0]
- Property { name: "displayBrightness"; type: "int" }
- Property { name: "physicalScreenSizeInch"; type: "int" }
- Property { name: "physicalScreenSizeOverride"; type: "bool" }
- Signal {
- name: "displayBrightnessChanged"
- Parameter { name: "newValue"; type: "int" }
- }
- Signal {
- name: "physicalScreenSizeInchChanged"
- Parameter { name: "newInches"; type: "int" }
- }
- Signal {
- name: "physicalScreenSizeOverrideChanged"
- Parameter { name: "newValue"; type: "bool" }
- }
- Method {
- name: "setDisplayBrightness"
- type: "bool"
- Parameter { name: "value"; type: "int" }
- }
- Method {
- name: "setPhysicalScreenSizeInch"
- Parameter { name: "inches"; type: "int" }
- }
- Method {
- name: "setPhysicalScreenSizeOverride"
- Parameter { name: "enable"; type: "bool" }
- }
- }
-}
diff --git a/src/imports/displaysettings/qmldir b/src/imports/displaysettings/qmldir
deleted file mode 100644
index 1bfbe93..0000000
--- a/src/imports/displaysettings/qmldir
+++ /dev/null
@@ -1,4 +0,0 @@
-module QtDeviceUtilities.DisplaySettings
-plugin qmldisplaysettingsplugin
-classname DisplaySettingsQmlPlugin
-typeinfo plugins.qmltypes