diff options
author | Arno <arno@disconnect.de> | 2016-11-27 20:25:49 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2016-11-27 20:25:49 +0100 |
commit | c7e3315b663566f71f83dcc9d2259aac262081c1 (patch) | |
tree | d228aa2a385f6097efe319160a01f1d890d78b5b /filewidget.h | |
parent | f5b9109987cd19bbc69e7a20f7a73ac3d86be96a (diff) | |
download | ShemovCleaner-c7e3315b663566f71f83dcc9d2259aac262081c1.tar.gz ShemovCleaner-c7e3315b663566f71f83dcc9d2259aac262081c1.tar.bz2 ShemovCleaner-c7e3315b663566f71f83dcc9d2259aac262081c1.zip |
Add preview for videos
Grab 4 frames from a video and display them in the Viewer. First frame
is @00:01:00, last at length - 1 minute, and the other two are in
between: length / 4 * 2 and 3 (hardcoded).
Diffstat (limited to 'filewidget.h')
-rw-r--r-- | filewidget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/filewidget.h b/filewidget.h index a886914..8304b1a 100644 --- a/filewidget.h +++ b/filewidget.h @@ -53,6 +53,7 @@ class FileWidget : public QWidget { void selectDir(); void properties(); void properties(const QModelIndex &idx); + void preview(); void filter(); void clearFilter(); void copy(); @@ -96,6 +97,7 @@ class FileWidget : public QWidget { QAction *mDirUpA; QAction *mDirBackA; QAction *mPropertiesA; + QAction *mPreviewA; QAction *mCopyA; QAction *mCutA; QAction *mPasteA; |