~ubuntu-branches/ubuntu/precise/networkmanagement/precise

« back to all changes in this revision

Viewing changes to applet/activatablelistwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-23 14:00:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111023140013-e38hdzybcg6zndrk
Tags: 0.9~svngit.nm09.20111023.ff842e-0ubuntu1
* New upstream snapshot.
* Drop all patches, merged upstream.
* Add kubuntu_add_subdirectory_po.diff to build the translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    void setShowAllTypes(bool show, bool refresh = false);
48
48
    void setHasWireless(bool hasWireless); // Used to decide wether or not to show the hidden item
49
49
 
 
50
Q_SIGNALS:
 
51
    void showInterfaceDetails(QString);
 
52
 
50
53
public Q_SLOTS:
51
 
    void activatableAdded(RemoteActivatable*);
 
54
    void activatableAdded(RemoteActivatable*, int);
52
55
    void activatableRemoved(RemoteActivatable*);
53
56
    void listDisappeared();
54
57
    void listAppeared();
61
64
    void deleteItem();
62
65
    void hoverEnter(const QString& uni);
63
66
    void hoverLeave(const QString& uni);
 
67
    void vpnHoverEnter();
 
68
    void vpnHoverLeave();
64
69
    void connectToHiddenNetwork(const QString &ssid);
65
70
    void filter();
66
71
 
67
72
private:
68
 
    void createItem(RemoteActivatable* conn);
 
73
    void createItem(RemoteActivatable* conn, int index);
69
74
    void createHiddenItem();
70
75
    int m_connectionType;
71
76
    QList<Knm::Activatable::ActivatableType> m_types;
80
85
    bool m_showAllTypes;
81
86
    bool m_vpn;
82
87
    bool m_hasWireless; // Used to determine wether or not to show hidden config
83
 
 
84
 
    QStringList m_hiddenConnectionInProgress;
85
 
 
86
88
};
87
89
#endif // ACTIVATABLELISTWIDGET_H