kde-extraapps/kget/conf/dlgwebinterface.h

41 lines
835 B
C
Raw Normal View History

/* 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>
#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