rssguard/src/gui/edittableview.h
2017-10-19 07:18:13 +02:00

22 lines
402 B
C++
Executable file

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