mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
34 lines
818 B
C++
34 lines
818 B
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2006 Manolo Valdes <nolis71cu@gmail.com>
|
|
Copyright (C) 2009 Matthias Fuchs <mat69@gmx.net>
|
|
|
|
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 DLGMETALINK_H
|
|
#define DLGMETALINK_H
|
|
|
|
#include "ui_dlgmetalink.h"
|
|
|
|
#include <KCModule>
|
|
|
|
class DlgSettingsWidget : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DlgSettingsWidget(QWidget *parent = 0, const QVariantList &args = QVariantList());
|
|
~DlgSettingsWidget();
|
|
|
|
public slots:
|
|
virtual void save();
|
|
virtual void load();
|
|
|
|
private:
|
|
Ui::DlgMetalink ui;
|
|
};
|
|
|
|
#endif // DLGMETALINK_H
|