Warning, file /office/skrooge/skgbasegui/skgtableview.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 /** @file
0007  * A table view with more features.
0008  *
0009  * @author Stephane MANKOWSKI / Guillaume DE BURE
0010  */
0011 #include "skgtableview.h"
0012 #include <qheaderview.h>
0013 
0014 SKGTableView::SKGTableView(QWidget* iParent)
0015     : SKGTreeView(iParent)
0016 {
0017     this->setAllColumnsShowFocus(true);
0018     this->setRootIsDecorated(false);
0019     this->setUniformRowHeights(true);
0020     header()->setStretchLastSection(false);
0021 }
0022 
0023 SKGTableView::~SKGTableView()
0024     = default;
0025 
0026