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

« back to all changes in this revision

Viewing changes to vpn/openconnect/openconnectui.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 2011 Ilia Kats <ilia-kats@gmx.net>
 
3
Copyright 2013 Lukas Tinkl <ltinkl@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 OPENCONNECT_UI_H
 
23
#define OPENCONNECT_UI_H
 
24
 
 
25
#include "vpnuiplugin.h"
 
26
 
 
27
#include <QVariant>
 
28
#include <KDialog>
 
29
 
 
30
class OpenconnectUiPlugin : public VpnUiPlugin
 
31
{
 
32
    Q_OBJECT
 
33
public:
 
34
    explicit OpenconnectUiPlugin(QObject * parent = 0, const QVariantList& = QVariantList());
 
35
    virtual ~OpenconnectUiPlugin();
 
36
    virtual SettingWidget * widget(const NetworkManager::VpnSetting::Ptr &setting, QWidget * parent = 0);
 
37
    virtual SettingWidget * askUser(const NetworkManager::VpnSetting::Ptr &setting, QWidget * parent = 0);
 
38
 
 
39
    QString suggestedFileName(const NetworkManager::ConnectionSettings::Ptr &connection) const;
 
40
    QString supportedFileExtensions() const;
 
41
    NMVariantMapMap importConnectionSettings(const QString &fileName);
 
42
    bool exportConnectionSettings(const NetworkManager::ConnectionSettings::Ptr &connection, const QString &fileName);
 
43
};
 
44
 
 
45
#endif //  OPENCONNECT_UI_H