2014-11-19 17:18:01 +00:00
|
|
|
/* 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>
|
2015-09-02 08:54:43 +03:00
|
|
|
#include <KDialog>
|
2022-04-05 01:40:28 +03:00
|
|
|
#include <kpasswdstore.h>
|
2014-11-19 17:18:01 +00:00
|
|
|
|
|
|
|
#include "ui_dlgwebinterface.h"
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
private:
|
2022-04-05 01:40:28 +03:00
|
|
|
KPasswdStore *m_passwdstore;
|
2014-11-19 17:18:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|