File indexing completed on 2024-05-19 04:58:06

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 APPEARANCECONFIG_H
0010 #define APPEARANCECONFIG_H
0011 
0012 #include "ui_appearanceconfig_base.h"
0013 
0014 #include <KCModule>
0015 
0016 /**
0017  * @author Mehrdad Momeny \<mehrdad.momeny@gmail.com\>
0018  */
0019 class AppearanceConfig : public KCModule, public Ui_AppearanceConfig_Base
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     AppearanceConfig(QWidget *parent, const QVariantList &args);
0025     ~AppearanceConfig();
0026 };
0027 #endif