File indexing completed on 2024-05-12 04:57:44

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2008-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef YOURLSCONFIG_H
0010 #define YOURLSCONFIG_H
0011 
0012 #include <QVariantList>
0013 
0014 #include <KCModule>
0015 
0016 #include "ui_yourlsprefs.h"
0017 
0018 class YourlsConfig : public KCModule
0019 {
0020     Q_OBJECT
0021 public:
0022     YourlsConfig(QWidget *parent, const QVariantList &);
0023     ~YourlsConfig();
0024 
0025     virtual void save() override;
0026     virtual void load() override;
0027 
0028 protected Q_SLOTS:
0029     void emitChanged();
0030 private:
0031     Ui_YourlsPrefsBase ui;
0032 };
0033 
0034 #endif // YOURLSCONFIG_H