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

« back to all changes in this revision

Viewing changes to declarative-plugins/applet/globalconfig.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 Dan Vratil <dvratil@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_GLOBAL_CONFIG_H
 
23
#define PLASMA_NM_GLOBAL_CONFIG_H
 
24
 
 
25
#include <QObject>
 
26
#include <QStringList>
 
27
 
 
28
class GlobalConfig : public QObject
 
29
{
 
30
Q_OBJECT
 
31
 
 
32
Q_PROPERTY(QStringList detailKeys
 
33
           READ detailKeys
 
34
           WRITE setDetailKeys
 
35
           NOTIFY detailKeysChanged)
 
36
 
 
37
Q_PROPERTY(NetworkSpeedUnit networkSpeedUnit
 
38
           READ networkSpeedUnit
 
39
           WRITE setNetworkSpeedUnit
 
40
           NOTIFY networkSpeedUnitChanged)
 
41
 
 
42
public:
 
43
    enum NetworkSpeedUnit { KBytes, KBits };
 
44
    Q_ENUMS(NetworkSpeedUnit)
 
45
 
 
46
    explicit GlobalConfig();
 
47
    virtual ~GlobalConfig();
 
48
 
 
49
public Q_SLOTS:
 
50
    QStringList detailKeys() const;
 
51
    void setDetailKeys(const QStringList& keys);
 
52
 
 
53
    NetworkSpeedUnit networkSpeedUnit() const;
 
54
    void setNetworkSpeedUnit(NetworkSpeedUnit unit);
 
55
 
 
56
Q_SIGNALS:
 
57
    void detailKeysChanged();
 
58
    void networkSpeedUnitChanged();
 
59
 
 
60
private:
 
61
    explicit GlobalConfig(void *dummy);
 
62
    GlobalConfig * instance();
 
63
 
 
64
    QStringList m_keys;
 
65
    NetworkSpeedUnit m_unit;
 
66
};
 
67
 
 
68
#endif // PLASMA_NM_GLOBAL_CONFIG_H