File indexing completed on 2024-04-28 04:55:52

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2009-2010 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 UNTINYCONFIG_H
0010 #define UNTINYCONFIG_H
0011 
0012 #include <kcmodule.h>
0013 #include "ui_untinyprefs.h"
0014 
0015 class UnTinyConfig : public KCModule
0016 {
0017     Q_OBJECT
0018 public:
0019     UnTinyConfig(QWidget* parent, const QVariantList& args);
0020     ~UnTinyConfig();
0021 
0022     virtual void save();
0023     virtual void load();
0024     virtual void defaults();
0025 
0026 protected Q_SLOTS:
0027     void emitChanged();
0028 private:
0029     Ui_UnTinyPrefsBase ui;
0030 };
0031 
0032 #endif // UNTINYCONFIG_H