diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-06 23:36:15 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-06 23:36:15 +0100 |
commit | eaa82c1922c7cc133458c65ecbe8eb2ab6adc03d (patch) | |
tree | b8954514b5d8bd0205bc0b8798de2bef2c7e751e /src/walletwidget.h | |
parent | kde wallet integration. (diff) | |
download | rekonq-eaa82c1922c7cc133458c65ecbe8eb2ab6adc03d.tar.xz |
KWebWallet integration
Diffstat (limited to 'src/walletwidget.h')
-rw-r--r-- | src/walletwidget.h | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/walletwidget.h b/src/walletwidget.h index e9e6ce87..7b20ead5 100644 --- a/src/walletwidget.h +++ b/src/walletwidget.h @@ -30,9 +30,9 @@ // Qt Includes #include <QWidget> - -// Forward Declarations -class KMainWindow; +#include <QString> +#include <QUrl> +#include <QLabel> class WalletWidget : public QWidget @@ -40,7 +40,7 @@ class WalletWidget : public QWidget Q_OBJECT public: - WalletWidget(QObject *parent); + WalletWidget(QWidget *parent); ~WalletWidget(); private slots: @@ -48,6 +48,17 @@ private slots: void rememberData(); void neverRememberData(); void notNowRememberData(); + void onSaveFormData(const QString &, const QUrl &); + +signals: + void saveFormDataAccepted(const QString &); + void saveFormDataRejected(const QString &); + +private: + QString m_key; + QUrl m_url; + + QLabel *m_label; }; #endif // WALLET_WIDGET_H |