File indexing completed on 2023-12-03 08:28:38

0001 /*
0002  * Settings KCM Dialog
0003  *
0004  * Copyright (C) 2011 Martin Klapetek <martin.klapetek@gmail.com>
0005  * Copyright (C) 2014 Siddhartha Sahu <sh.siddhartha@gmail.com>
0006  *
0007  * This library is free software; you can redistribute it and/or
0008  * modify it under the terms of the GNU Lesser General Public
0009  * License as published by the Free Software Foundation; either
0010  * version 2.1 of the License, or (at your option) any later version.
0011  *
0012  * This library is distributed in the hope that it will be useful,
0013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0015  * Lesser General Public License for more details.
0016  *
0017  * You should have received a copy of the GNU Lesser General Public
0018  * License along with this library; if not, write to the Free Software
0019  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
0020  */
0021 
0022 #ifndef SETTINGS_KCM_DIALOG_H
0023 #define SETTINGS_KCM_DIALOG_H
0024 
0025 #include <ksettings/Dialog>
0026 #include <KTp/ktpcommoninternals_export.h>
0027 
0028 namespace KTp
0029 {
0030 
0031 class KTPCOMMONINTERNALS_EXPORT SettingsKcmDialog : public KSettings::Dialog
0032 {
0033     Q_OBJECT
0034 public:
0035     SettingsKcmDialog(QWidget *parent = nullptr);
0036 
0037     // Add the General Settings tab
0038     void addGeneralSettingsModule();
0039     // Add the Notifications tab
0040     void addNotificationsModule();
0041 };
0042 
0043 } // namespace KTp
0044 
0045 #endif // SETTINGS_KCM_DIALOG_H