ios: detect switch usermode -> dev mode

this does polling, but only with devices in user mode connected...

Change-Id: I828715a2b4a35f8f9b3bdbcf0da9a74990f3047f
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Fawzi Mohamed
2014-02-14 01:08:09 +01:00
parent 7f7b8f0ef7
commit 6daa558fb3
2 changed files with 46 additions and 25 deletions

View File

@@ -38,6 +38,8 @@
#include <QMap>
#include <QString>
#include <QSharedPointer>
#include <QStringList>
#include <QTimer>
namespace ProjectExplorer{
class Kit;
@@ -100,8 +102,12 @@ public slots:
const Ios::IosToolHandler::Dict &info);
void infoGathererFinished(Ios::IosToolHandler *gatherer);
void monitorAvailableDevices();
private slots:
void updateUserModeDevices();
private:
IosDeviceManager(QObject *parent = 0);
QTimer m_userModeDevicesTimer;
QStringList m_userModeDeviceIds;
};
namespace IosKitInformation {