~ubuntu-branches/ubuntu/saucy/plasma-nm/saucy-proposed

« back to all changes in this revision

Viewing changes to lib/bssidcombobox.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-08-16 19:07:09 UTC
  • Revision ID: package-import@ubuntu.com-20130816190709-ef9ydm9skigmg15l
Tags: upstream-0.0~git20130816
ImportĀ upstreamĀ versionĀ 0.0~git20130816

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright 2013 Lukas Tinkl <ltinkl@redhat.com>
 
3
    Copyright 2013 Jan Grulich <jgrulich@redhat.com>
 
4
 
 
5
    This library is free software; you can redistribute it and/or
 
6
    modify it under the terms of the GNU Lesser General Public
 
7
    License as published by the Free Software Foundation; either
 
8
    version 2.1 of the License, or (at your option) version 3, or any
 
9
    later version accepted by the membership of KDE e.V. (or its
 
10
    successor approved by the membership of KDE e.V.), which shall
 
11
    act as a proxy defined in Section 6 of version 3 of the license.
 
12
 
 
13
    This library is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
    Lesser General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU Lesser General Public
 
19
    License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
#ifndef PLASMA_NM_BSSIDCOMBOBOX_H
 
23
#define PLASMA_NM_BSSIDCOMBOBOX_H
 
24
 
 
25
#include <KComboBox>
 
26
 
 
27
#include <kdemacros.h>
 
28
 
 
29
#include <NetworkManagerQt/Device>
 
30
#include <NetworkManagerQt/AccessPoint>
 
31
 
 
32
class KDE_EXPORT BssidComboBox : public KComboBox
 
33
{
 
34
    Q_OBJECT
 
35
public:
 
36
    explicit BssidComboBox(QWidget *parent = 0);
 
37
 
 
38
    QString bssid() const;
 
39
    bool isValid() const;
 
40
 
 
41
Q_SIGNALS:
 
42
    void bssidChanged();
 
43
 
 
44
public slots:
 
45
    void init(const QString & bssid, const QString &ssid);
 
46
 
 
47
private slots:
 
48
    void editTextChanged(const QString &);
 
49
    void currentIndexChanged(int);
 
50
 
 
51
private:
 
52
    void addBssidsToCombo(const QList<NetworkManager::AccessPoint::Ptr> & aps);
 
53
 
 
54
    QString m_initialBssid;
 
55
    bool m_dirty;
 
56
};
 
57
 
 
58
#endif // PLASMA_NM_BSSIDCOMBOBOX_H