~ubuntu-branches/ubuntu/utopic/kget/utopic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* This file is part of the KDE project

   Copyright (C) 2008 Urs Wolfer <uwolfer @ kde.org>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
*/

#ifndef DLGWEBINTERFACE_H
#define DLGWEBINTERFACE_H

#include <QWidget>

#include "ui_dlgwebinterface.h"

namespace KWallet {
    class Wallet;
}

class DlgWebinterface : public QWidget, public Ui::DlgWebinterface
{
    Q_OBJECT

public:
    DlgWebinterface(KDialog *parent = 0);
    ~DlgWebinterface();
    
signals:
    void changed();
    void saved();

private Q_SLOTS:
    void readConfig();
    void saveSettings();
    void walletOpened(bool);
    
private:
    KWallet::Wallet *m_wallet;
};

#endif