File indexing completed on 2024-05-12 05:07:44

0001 /*
0002     SPDX-FileCopyrightText: 2009 Alvaro Soliverez <asoliverez@gmail.com>
0003     SPDX-FileCopyrightText: 2021 Dawid Wróbel <me@dawidwrobel.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #ifndef KWELCOMEPAGE_H
0007 #define KWELCOMEPAGE_H
0008 
0009 // ----------------------------------------------------------------------------
0010 // QT Includes
0011 #include <QString>
0012 #include <QStringList>
0013 
0014 // ----------------------------------------------------------------------------
0015 // KDE Includes
0016 
0017 // ----------------------------------------------------------------------------
0018 // Project Includes
0019 
0020 
0021 /**
0022   * Generates welcome page
0023   *
0024   * @author Alvaro Soliverez
0025   *
0026   * @short Generates the welcome page
0027 **/
0028 class KWelcomePage
0029 {
0030 public:
0031 
0032     KWelcomePage();
0033     ~KWelcomePage();
0034 
0035     static const QString welcomePage();
0036 
0037 protected:
0038 
0039     static bool isGroupHeader(const QString& item);
0040     static bool isGroupItem(const QString& item);
0041 };
0042 
0043 #endif