File indexing completed on 2024-12-01 06:33:12
0001 /* 0002 This file is part of Kiten, a KDE Japanese Reference Tool... 0003 SPDX-FileCopyrightText: 2001 Jason Katz-Brown <jason@katzbrown.com> 0004 SPDX-FileCopyrightText: 2006 Joseph Kerian <jkerian@gmail.com> 0005 SPDX-FileCopyrightText: 2006 Eric Kjeldergaard <kjelderg@gmail.com> 0006 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 0010 #ifndef ENTRYLISTVIEW_H 0011 #define ENTRYLISTVIEW_H 0012 0013 #include <QTableView> 0014 0015 class EntryListView : public QTableView 0016 { 0017 Q_OBJECT 0018 0019 public: 0020 explicit EntryListView(QWidget *parent = nullptr); 0021 0022 public Q_SLOTS: 0023 void setEmptyModel(); 0024 0025 protected: 0026 void resizeEvent(QResizeEvent *event) override; 0027 }; 0028 0029 #endif