~unity-api-team/indicator-network/connectity-api-beginnings

« back to all changes in this revision

Viewing changes to src/connectivity-api/connectivity-qt/connectivityqt/connectivity.h

  • Committer: Pete Woods
  • Date: 2015-04-23 10:02:23 UTC
  • Revision ID: pete.woods@canonical.com-20150423100223-jv1xhtmk5f6da4ov
Robustify the tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    Q_PROPERTY(bool FlightMode READ flightMode WRITE setFlightMode NOTIFY flightModeUpdated)
44
44
    bool flightMode() const;
45
45
 
46
 
    Q_PROPERTY(bool FlightModeIsChanging READ flightModeIsChanging NOTIFY flightModeIsChangingUpdated)
47
 
    bool flightModeIsChanging() const;
48
 
 
49
46
//    Q_PROPERTY(QStringList Limitations READ limitations NOTIFY limitationsUpdated)
50
47
//    QStringList limitations() const;
51
48
 
55
52
    Q_PROPERTY(bool WifiEnabled READ wifiEnabled WRITE setwifiEnabled NOTIFY wifiEnabledUpdated)
56
53
    bool wifiEnabled() const;
57
54
 
58
 
    Q_PROPERTY(bool WifiEnabledIsChanging READ wifiEnabledIsChanging NOTIFY wifiEnabledIsChangingUpdated)
59
 
    bool wifiEnabledIsChanging() const;
 
55
    Q_PROPERTY(bool UnstoppableOperationHappening READ unstoppableOperationHappening NOTIFY unstoppableOperationHappeningUpdated)
 
56
    bool unstoppableOperationHappening() const;
 
57
 
 
58
    Q_PROPERTY(bool Initialized READ isInitialized NOTIFY initialized)
 
59
    bool isInitialized() const;
60
60
 
61
61
public Q_SLOTS:
62
62
    void setFlightMode(bool enabled);
66
66
Q_SIGNALS:
67
67
    void flightModeUpdated(bool);
68
68
 
69
 
    void flightModeIsChangingUpdated(bool);
70
 
 
71
69
//    void limitationsUpdated(const QStringList&);
72
70
 
73
71
//    void statusUpdated(const QString&);
74
72
 
75
73
    void wifiEnabledUpdated(bool);
76
74
 
77
 
    void wifiEnabledIsChangingUpdated(bool);
 
75
    void unstoppableOperationHappeningUpdated(bool);
 
76
 
 
77
    void initialized();
78
78
 
79
79
protected:
80
80
    class Priv;