summaryrefslogtreecommitdiffstats
path: root/src/imports
Commit message (Collapse)AuthorAgeFilesLines
* [Wifi] Fix initialization codeGatis Paeglis2014-02-191-11/+11
| | | | | | | | Bug was that on freshly deployed Boot2Qt image (Nexus) the current code caused a device to restart when trying to launch "launcher settings". Change-Id: I3cc55488a1993c2c74567fccf39edd189b356bac Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Don't use wifi on EmulatorGatis Paeglis2014-02-131-11/+17
| | | | | Change-Id: I9ae1b5b68f3e3ec2c513ec5a6811ea5396425766 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Update copyright yearaavit2014-02-1217-17/+17
| | | | | Change-Id: Ic818e79d7bfca04bd8a8d8aa12b3ff70ea26a7a3 Reviewed-by: Topi Reiniö <topi.reinio@digia.com>
* Re-enable the wifi plguin now that toolchains have been updatedaavit2014-01-301-1/+1
| | | | | Change-Id: I87efe6b020b3c8b13491a1611b7992e8f697cb46 Reviewed-by: Gatis Paeglis <gatis.paeglis@digia.com>
* Make sure that wifi event thread doesn't block on exitGatis Paeglis2014-01-302-8/+18
| | | | | | | | | After setting m_exitEventThread to True we need to generate wifi event, otherwise there might be cases that we block in wifi_wait_for_event and wifi event thread never exits. Change-Id: I699ca0c25e23abc7045c1850bf773443bac897e8 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Disable building of wifi libraryGatis Paeglis2014-01-281-1/+1
| | | | | Change-Id: I3f8c2183f9bb0a620bad8128bdceda1bcb00ebd4 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Fix dhcp issues and improve public APIGatis Paeglis2014-01-285-185/+246
| | | | | | | | | | | | | | | | | | | | | - Use qconnectivity daemon for dhcp requests. Since dhcp requests are executed in other process we don't block gui thread for this lengthy operation. - Why not to use "do_dhcp_request" - it is a legacy implementation of a dhcp client and is not used anywhere in the Android source code itself. It appears that do_dhcp_request was not removed from the libhardware_legacy to keep compatibility for others, whose code might still depend on it. - Differnet changes to the internal implementation and the public API. - Add 'Interface' singleton type, installing a singleton type allows developers to provide arbitrary functionality to a client without requiring individual instances of the type to be instantiated by the client. We use this to determine if Android has wifi interface. Change-Id: I836f3a2a587b1ebf9f670ed08b10fe3483504b9e Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Merge remote-tracking branch 'origin/stable' into devaavit2014-01-1717-0/+306
|\ | | | | | | | | | | | | Conflicts: src/doc/src/b2qt.qdoc Change-Id: I9d345dcc689e751b997df797ce12b6cd8a14ffb9
| * Add license headersTopi Reinio2013-12-0317-0/+306
| | | | | | | | | | | | | | Add an Enterprise License header to source files. Change-Id: I373886dade31ce00d4c10c64ebaf8ba226d5a62d Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* | List the strongest access point when ssid equalGatis Paeglis2014-01-162-22/+26
| | | | | | | | | | | | | | | | List only the strongest access point when sensing several access points within the same network. Change-Id: I58bf3083058f6e1c8a0c353b20d731672e64aefc Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* | Remove virtual keyboardRainer Keller2014-01-1640-3100/+1
|/ | | | | Change-Id: I2e28ef84e5c71c46924fd2b62bc9b199a0c6c7a9 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Snapshot of wifi module development, from customer projectaavit2013-08-055-76/+140
| | | | | | | Corresponds to 0c397d2287d33b08501c48e029306b8908583e6a of github repo Change-Id: I60c140513255394b6728ddd0ff85ac79fa5e88b9 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Register the QWifiNetworkList with the QML type systemGunnar Sletta2013-06-121-0/+1
| | | | | Change-Id: I43d1b525cf91b508113fcc6d883050b585a622f8 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* add missing pluginmain.cpp file for wifiGunnar Sletta2013-04-251-0/+22
| | | | | Change-Id: I1ef3cd3c915813fec9ef62c4453b8b5e132a95f3 Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
* Disable nativemedia for nowRainer Keller2013-04-221-1/+1
| | | | | Change-Id: I8da972b7cfd2e10ced0f49b30e946bfca645b1bf Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
* Disable wifiRainer Keller2013-04-121-1/+1
|
* Made the virtual keyboard stuff compileGunnar Sletta2013-04-114-126/+4
|
* Add wifi to buildGunnar Sletta2013-03-211-1/+1
|
* Moved wifi to its own importable moduleGunnar Sletta2013-03-218-0/+617
|
* Better structure for virtual keyboardGunnar Sletta2013-03-2140-1/+3222
|
* Made OMX initializing a bit more robust.Samuel Rødal2013-03-142-9/+30
| | | | | We should do it on the rendering thread where there's a current context since we're calling glGenTextures() etc.
* Fixed nativemedia plugin name in qmldir.Samuel Rødal2013-03-141-1/+1
|
* Added nativemedia for video playback.Samuel Rødal2013-03-1318-1/+5681
| | | | See the test.qml in src/imports/nativemedia for usage.
* Initial commit - Long live the B2Qt utils!aavit2013-02-074-0/+49