blob: 26b424c489e3ac338dc90ce51ff905d751ba630b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef TABLEWIDGET_H
#define TABLEWIDGET_H
#include "guiSQLiteStudio_global.h"
#include <QTableWidget>
class QKeyEvent;
class GUI_API_EXPORT TableWidget : public QTableWidget
{
Q_OBJECT
public:
explicit TableWidget(QWidget *parent = 0);
protected:
void keyPressEvent(QKeyEvent *event);
public slots:
void copy();
};
#endif // TABLEWIDGET_H
|