diff options
| author | 2014-12-06 17:33:25 -0500 | |
|---|---|---|
| committer | 2014-12-06 17:33:25 -0500 | |
| commit | 7167ce41b61d2ba2cdb526777a4233eb84a3b66a (patch) | |
| tree | a35c14143716e1f2c98f808c81f89426045a946f /SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h | |
Imported Upstream version 2.99.6upstream/2.99.6
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h')
| -rw-r--r-- | SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h b/SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h new file mode 100644 index 0000000..26b424c --- /dev/null +++ b/SQLiteStudio3/guiSQLiteStudio/common/tablewidget.h @@ -0,0 +1,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 |
