File indexing completed on 2024-06-16 04:46:41

0001 /*
0002     SPDX-FileCopyrightText: Bernd Gonsior <bernd.gonsior@googlemail.com>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 #ifndef TOCITEMGROUP_H
0006 #define TOCITEMGROUP_H
0007 
0008 // ----------------------------------------------------------------------------
0009 // QT Includes
0010 
0011 
0012 // ----------------------------------------------------------------------------
0013 // KDE Includes
0014 
0015 
0016 // ----------------------------------------------------------------------------
0017 // Project Includes
0018 
0019 #include "tocitem.h"
0020 
0021 /**
0022  * Class for reportgroup items in reports table of contents (TOC).
0023  */
0024 class TocItemGroup : public TocItem
0025 {
0026 public:
0027 
0028     /** Constructor.
0029      *
0030      * @param parent pointer to the parent QWidget
0031      * @param groupNo group number
0032      * @param title group title in i18n-form
0033      */
0034     TocItemGroup(QTreeWidget* parent, int groupNo, QString title);
0035 };
0036 
0037 #endif