File indexing completed on 2024-05-05 17:19:05

0001 /***************************************************************************
0002  * SPDX-FileCopyrightText: 2022 S. MANKOWSKI stephane@mankowski.fr
0003  * SPDX-FileCopyrightText: 2022 G. DE BURE support@mankowski.fr
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  ***************************************************************************/
0006 #ifndef SKGTABLEVIEW_H
0007 #define SKGTABLEVIEW_H
0008 /** @file
0009  * A table view with more features.
0010  *
0011  * @author Stephane MANKOWSKI / Guillaume DE BURE
0012  */
0013 #include "skgbasegui_export.h"
0014 #include "skgtreeview.h"
0015 
0016 /**
0017  * This file is a tab widget used by plugins
0018  */
0019 class SKGBASEGUI_EXPORT SKGTableView : public SKGTreeView
0020 {
0021     Q_OBJECT
0022 public:
0023     /**
0024      * Default Constructor
0025      * @param iParent the parent
0026      */
0027     explicit SKGTableView(QWidget* iParent);
0028 
0029     /**
0030      * Default Destructor
0031      */
0032     ~SKGTableView() override;
0033 };
0034 
0035 #endif  // SKGTABLEVIEW_H