kde-extraapps/kget/conf/dlgwebinterface.h
Ivailo Monev 9d6895e488 generic: port to KPasswdStore
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-04-05 01:40:28 +03:00

40 lines
835 B
C++

/* 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 <KDialog>
#include <kpasswdstore.h>
#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:
KPasswdStore *m_passwdstore;
};
#endif