Artifact 03e56d87c2d46411b9762b87f4d301619aaf18df:
- File FileTableView.h — part of check-in [a5a77363fd] at 2012-04-15 09:08:58 on branch trunk — Added support for dragging files from the file list Upped version to 0.9.6 Changed the configuration namespace to fuel-scm.org (user: kostas size: 413)
- File src/FileTableView.h — part of check-in [8212394713] at 2012-05-13 03:40:24 on branch trunk — Major reorganization of the project files (user: kostas size: 413)
#ifndef FILETABLEVIEW_H #define FILETABLEVIEW_H #include <QTableView> #include <QPoint> class FileTableView : public QTableView { Q_OBJECT public: explicit FileTableView(QWidget *parent = 0); signals: void dragOutEvent(); private: void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); private: QPoint dragStartPos; }; #endif // FILETABLEVIEW_H