File indexing completed on 2024-09-22 04:58:53

0001 /*
0002 This file is part of LightDM-KDE.
0003 
0004 Copyright 2011, 2012 David Edmundson <kde@davidedmundson.co.uk>
0005 
0006 LightDM-KDE is free software: you can redistribute it and/or modify
0007 it under the terms of the GNU General Public License as published by
0008 the Free Software Foundation, either version 3 of the License, or
0009 (at your option) any later version.
0010 
0011 LightDM-KDE is distributed in the hope that it will be useful,
0012 but WITHOUT ANY WARRANTY; without even the implied warranty of
0013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014 GNU General Public License for more details.
0015 
0016 You should have received a copy of the GNU General Public License
0017 along with LightDM-KDE.  If not, see <http://www.gnu.org/licenses/>.
0018 */
0019 #ifndef LIGHTDMKCM_H
0020 #define LIGHTDMKCM_H
0021 
0022 #include <KCModule>
0023 
0024 class CoreConfig;
0025 class ThemeConfig;
0026 
0027 class LightDMKcm : public KCModule
0028 {
0029     Q_OBJECT
0030 public:
0031     explicit LightDMKcm(QWidget *parent, const QVariantList &args);
0032 
0033 signals:
0034 
0035 public slots:
0036     void save();
0037     void defaults();
0038 
0039 private:
0040     CoreConfig *m_coreConfig;
0041     ThemeConfig *m_themeConfig;
0042 };
0043 
0044 #endif // LIGHTDMKCM_H