rssguard/src/librssguard/gui/reusable/edittableview.h
2021-05-07 07:25:53 +02:00

22 lines
409 B
C++
Executable file

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef EDITTABLEVIEW_H
#define EDITTABLEVIEW_H
#include <QTableView>
class EditTableView : public QTableView {
Q_OBJECT
public:
explicit EditTableView(QWidget* parent = nullptr);
public slots:
void removeSelected();
void removeAll();
private:
void keyPressEvent(QKeyEvent* event);
};
#endif // EDITTABLEVIEW_H