diff options
author | Arno <arno@disconnect.de> | 2018-05-21 08:53:49 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-05-21 08:54:48 +0200 |
commit | d2225f43d25746d0870fed31c3ca1deaaa9e7686 (patch) | |
tree | b3f73cf1bc48953dbafc07838d1e767f251684be /moviewidget.h | |
parent | 55244c62be2a78a4e742635bfaed51c0178c83f8 (diff) | |
download | SheMov-d2225f43d25746d0870fed31c3ca1deaaa9e7686.tar.gz SheMov-d2225f43d25746d0870fed31c3ca1deaaa9e7686.tar.bz2 SheMov-d2225f43d25746d0870fed31c3ca1deaaa9e7686.zip |
Implement edit files
Make it possible to edit files (again).
Diffstat (limited to 'moviewidget.h')
-rw-r--r-- | moviewidget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/moviewidget.h b/moviewidget.h index 7c23c3b..c30c63d 100644 --- a/moviewidget.h +++ b/moviewidget.h @@ -10,6 +10,7 @@ class QSortFilterProxyModel; class QStandardItemModel; class SmView; class MoviePropertiesDialog; +class EditFileDialog; class MovieWidget : public QWidget { Q_OBJECT @@ -33,6 +34,7 @@ class MovieWidget : public QWidget { void topDoubleClicked(const QModelIndex &idx); void playSelected(); void copyToClipboard(int role); + void editFile(); void forwardSelection(int by); private: @@ -46,6 +48,7 @@ class MovieWidget : public QWidget { QSortFilterProxyModel *mBottomProxy; QStandardItemModel *mBottomModel; MoviePropertiesDialog *mPropDlg; + EditFileDialog *mEditFileDlg; }; #endif // MOVIEWIDGET_H |