Warning, file /education/kalzium/src/tableinfowidget.h 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: 2007 Carsten Niehaus <cniehaus@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef TABLEINFOWIDGET_H 0008 #define TABLEINFOWIDGET_H 0009 0010 #include <QLabel> 0011 0012 #include "kalziumschemetype.h" 0013 0014 /** 0015 * @author Carsten Niehaus 0016 */ 0017 class TableInfoWidget : public QWidget 0018 { 0019 Q_OBJECT 0020 0021 public: 0022 explicit TableInfoWidget(QWidget *parent); 0023 0024 ~TableInfoWidget() override = default; 0025 0026 private: 0027 QLabel *const m_tableType; 0028 0029 public Q_SLOTS: 0030 void setTableType(int type); 0031 }; 0032 0033 #endif // TABLEINFOWIDGET_H