summaryrefslogtreecommitdiffstats
path: root/videoviewer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Delete videoviewer filesArno2022-04-151-104/+0
| | | | I guess it was bitrotten anyway...
* Make it run with Qt6Arno2022-04-151-7/+6
| | | | | | | | | This is a huge commit. Changes: * Obviously, make it compile * Make it run (only scarcely tested) * get rid of most of clang's warnings Let's see what surprises are in store...
* Remember full screen status for VideoViewerArno2018-09-131-4/+5
| | | | And don't crash on close. Remove deleteLater()!
* Make VideoViewer local to FSWidgetArno2018-09-131-1/+2
| | | | Now we can't have multiple VideoViewers, which is what we want :)
* VideoViewer: set initial size and centerArno2018-09-131-0/+4
|
* Don't register VideoViewer as global WidgetArno2018-09-131-1/+0
|
* Add some more keyboard action to VideoViewerArno2018-08-261-0/+19
| | | | | | * Ĺšpace for play/pause * 1 for lowering volume * 2 for raising volume
* Read and Write some settings for VideoViewerArno2018-08-261-0/+17
|
* Fix next and previous in VideoViewerArno2018-08-261-2/+12
| | | | | The QMediaPlayList implementations return -1 after the last valid index. Fix it by implementing a homebrewed version...
* Implement custom Video playerArno2018-08-261-0/+54
Well, well, well. Due to several unforseen circumstances I ventured into the sources again and implemented a Video player with Qt. Looks very promising so far. There are some bugs to weed out, but I'm getting there...