summaryrefslogtreecommitdiffstats
path: root/src/src.pro
Commit message (Collapse)AuthorAgeFilesLines
* Remove all qmake filesSamuli Piippo2021-06-141-15/+0
| | | | | | | Support builds only with CMake. Change-Id: I4b242a27d2d747ffa2d9b55a43f0d2b8f5f4cbc2 Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
* Remove all device utilities except network settingsLassi Lehikoinen2020-12-161-5/+0
| | | | | | | | | 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>
* Fix build orderSamuli Piippo2018-06-261-1/+2
| | | | | | | | bluetoothsetting has dependency to networksettings, build subdirs in correct order. Change-Id: I060c114ad4d217dc25d339fca055e58888cd1df7 Reviewed-by: Ville Voutilainen <ville.voutilainen@qt.io>
* Merge remote-tracking branch 'origin/5.10' into devMikko Gronoff2017-12-191-4/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/5.10: Merge remote-tracking branch 'origin/5.9' into 5.10 Fix compilation with namespaces Import only available modules Update license headers Verify that Qtdbus module is available tests: add tests.pro for CI Doc: Bump version to 5.9.3 Conflicts: src/bluetoothsettings/discoverymodel.cpp src/localesettings/localefiltermodel.cpp src/localesettings/localemodel.cpp src/timedatesettings/timezonefiltermodel.cpp Change-Id: Iabf7f372c634abea2734c97d748b3e836394ddb1
| * Verify that Qtdbus module is availableSamuli Piippo2017-11-241-4/+7
| | | | | | | | | | | | | | Task-number: QTBUG-64693 Change-Id: I7660016274bf177c2be4c119cd17d3ccf2352167 Reviewed-by: Sami Nurmenniemi <sami.nurmenniemi@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
* | Move QtButtonImageProvider from QtLauncherDemo to QtDeviceUtilitiesSami Nurmenniemi2017-11-221-0/+1
|/ | | | | | | Task-number: QTBUG-63091 Change-Id: I54211671174bc04cb07302e0b6001dca2f29d5d4 Reviewed-by: Kari Oikarinen <kari.oikarinen@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
* Fix compile error in qtdevicesettingsTeemu Holappa2016-11-171-2/+3
| | | | | Change-Id: Ibc1188da2729a39991b84a38bd121ded097d3362 Reviewed-by: Rainer Keller <Rainer.Keller@qt.io>
* Make bluetooth support optionalRainer Keller2016-11-011-1/+2
| | | | | | | Change-Id: I33db4d7c8531be0b02f9550bb2d2fbb2c0de9af8 Reviewed-by: Michael Winkelmann <Michael.winkelmann@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com> Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
* Separated SettingsUI to its own plugin.Kimmo Ollila2016-05-131-1/+2
| | | | | | Change-Id: I7893231ab2d18270183f9838456d0e48cdc63186 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com>
* Refactored Qml plugins into modules.Teemu Holappa2016-02-171-2/+7
| | | | | | | Separated C++ and Qml interfaces. All the UI's from plugins are moved to the settingsui folder. Change-Id: Id6a6623346b18321357bc42d24121c4d9cdfd098 Reviewed-by: Kimmo Ollila <kimmo.ollila@theqtcompany.com>
* Merge Boot2Qt Wifi module into Network Settings Plugin.Teemu Holappa2016-02-081-1/+1
| | | | | | | Added wpasupplicant as alternative backend for the network settings. Change-Id: Ic05b3e87def2c9a143c30e4045a36db294ce8719 Reviewed-by: Risto Avila <risto.avila@theqtcompany.com>
* Remove unused update toolsRainer Keller2015-11-161-2/+1
| | | | | Change-Id: I3bf3863e76d58ba6dc42947c337451e1d7fc4ee5 Reviewed-by: Gatis Paeglis <gatis.paeglis@theqtcompany.com>
* Remove eAndroid specific modulesEirik Aavitsland2015-07-101-4/+0
| | | | | Change-Id: Ied9d920dfa6d12093b40d32d5f3a61c1c23b137d Reviewed-by: Gatis Paeglis <gatis.paeglis@digia.com>
* [Wifi] graduate from Qt.labs.wifi 0.1 to B2Qt.Wifi 1.0Gatis Paeglis2014-12-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Make wifi library available from c++ 1) included with "#include <B2QtWifi>", available classes are: QWifiDevice, QWifiManager, QWifiConfiguration - Re-design of API: 1) connectedSSID -> currentSSID get current network from this property instead of networks state change events 2) networkStateChanaged(QWifiNetwork *) -> networkStateChanged(NetworkState) Don't expose QWifiNetwork objects to library users, use data model roles instead, no need to pollute API with "read-only" class. The flaws of exposing QWifiNetwork become apparent when looking at C++ API. 3) New BackendState enum for backend state changes events, backendStateChanged(BackendState) Initializing backend can be lengthy operation and can block GUI thread, same is true for DHCP requests, now these operations are moved into a separate thread and backend state change events are delivered asynchronously. 4) Make WifiManager a Singleton, we don't want several instances starting and stopping system processes and it makes global state handling simpler. 5) Rename Interface -> WifiDevice 6!) Introducing QWifiConfiguration. This abstraction allows for easy way to add new features, whatever we choose to support from: http://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf The idea for it is to be a Qt-style wrapper for "network {}" configurations from wpa_supplicant.conf. Also this makes life simpler for developers if they know what network they will be using, they can omit scanning, listing, selecting parts and do something like this instead: WifiConfiguration { id: config ssid: "network name" passphrase: "12345678" } if (!WifiManager.connect(config)) print("failed to connect: " + WifiManager.lastError) - Optimizations: 1) Async. event delivery. 2) eLinux: Don't use "ifup", it is slow because it starts dhcp request even before any network has been configured. Use start-stop-daemon and ifconfig directly. - Bug fixes (many), but most importantly: 1) Get backend state properly when WifiManager is created. - Public header cleanup - Other: 1) Added categorized logging. 2) Methods to get/set wifi interface name. Not exposed to qml. - Missing parts that will be added as a separate patch: * [doc] Getting started guide for c++ and qml * [doc] Update for qml docs and new docs for c++. The current docs are out-of-date. Task-number: QTEE-649 Task-number: QTEE-810 Change-Id: I7dc8709aed2de622828a119749aef31534a4296d Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
* Add tools related for updateRainer Keller2014-09-041-0/+1
| | | | | | | | b2qt-update-application is for doing the actual update. b2qt-update-util is for initiating and finishing the update. Change-Id: Ide1c1ba307d9346bacf83c507816feecefe87a16 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Introducing QConnectivityDaemonGatis Paeglis2014-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | This change enables ethernet support on embedded android and provides DHCP info for other processes. Now we can simply plugin an ethernet cable and start browsing a network, for this we use netd events - netd is a network manager daemon, it opens android's "reserved" unix domain socket on /dev/socket/netd and listens for connections and commands. QConnectivityDaemon listens for DHCP requests on android's "reserved" socket /dev/socket/qconnectivity which can be used by other processes to do dhcp requests on different network interfaces (wifi, bluetooth, etc.). QConnectivityDaemon uses line-oriented protocol and expects requests to be "\n" terminated. Change-Id: I6d52619d27685650a155141bf09191e5a56914df Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Add qt_hw_init launched from qt_init.shv1.0.0-RC2Laszlo Agocs2013-10-151-1/+1
| | | | | | | This application is launched once during boot, from qt_init.sh. Change-Id: I76b39319d1777cd1e8cb068c734588b84f2c0062 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Add missing "subdir template" project filesGatis Paeglis2013-09-231-1/+3
| | | | | | | Without these build scripts can't find the sensor plugin Change-Id: Ia94782fcb6292df8de3ea1f5fa88e2b880441f81 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Added 'doppelganger' daemon.Yoann Lopes2013-08-281-0/+2
| | | | | | | | It provides the Android permission and scheduling policy services. These services are normally provided by Zygote. Change-Id: I11eeba92b6b12e26b45baa5871a6fd7c2058b6c6 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Doc: Initial documentation set for B2QtTopi Reinio2013-04-261-1/+2
| | | | | | | | | Contains introduction, getting started, setting up development hardware, supported platforms and troubleshooting sections. Task-number: QTRD-1956 Change-Id: Ib14d2314f35ec929b4f62293b5efdb5a9c5ebdb4 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Initial commit - Long live the B2Qt utils!aavit2013-02-071-0/+5