├── LICENSE ├── QThisPlayer.pro ├── README.md ├── images ├── icons │ ├── app_icon.ico │ ├── app_icon.png │ ├── app_name.png │ ├── chapterList.png │ ├── decreaseVolume.png │ ├── exit-fullscreen.png │ ├── exit-picture-in-picture.png │ ├── fullscreen.png │ ├── increaseVolume.png │ ├── loop_current.png │ ├── muteVolume.png │ ├── nextChapter.png │ ├── openFile.png │ ├── picture-in-picture.png │ ├── playlist.png │ ├── previousChapter.png │ ├── random.png │ ├── record.png │ ├── refresh.png │ └── toggleRepeat.png └── screenshots │ ├── Screenshot_1.png │ ├── Screenshot_2.png │ ├── Screenshot_3.png │ └── Screenshot_4.png ├── resources.qrc ├── src ├── components │ ├── chapterlistpage.cpp │ ├── chapterlistpage.h │ ├── mainpage.cpp │ ├── mainpage.h │ ├── mediaprogressslider.h │ ├── mediavolumeslider.h │ ├── pictureinpicturewindow.cpp │ ├── pictureinpicturewindow.h │ ├── playercontroller.cpp │ ├── playercontroller.h │ ├── playlistdock.h │ ├── playlistpage.cpp │ ├── playlistpage.h │ ├── screenmessage.cpp │ ├── screenmessage.h │ └── videoWidget.h ├── dialogs │ ├── about.cpp │ ├── about.h │ ├── about.ui │ ├── gototime.cpp │ ├── gototime.h │ └── gototime.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── settings.cpp ├── settings.h ├── shared.cpp └── shared.h └── vlcqt ├── Enums.h ├── Equalizer.h ├── Instance.h ├── Media.h ├── MediaPlayer.h ├── MetaManager.h ├── ModuleDescription.h ├── Stats.h ├── VideoDelegate.h └── vlcqt.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /QThisPlayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/QThisPlayer.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/README.md -------------------------------------------------------------------------------- /images/icons/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/app_icon.ico -------------------------------------------------------------------------------- /images/icons/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/app_icon.png -------------------------------------------------------------------------------- /images/icons/app_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/app_name.png -------------------------------------------------------------------------------- /images/icons/chapterList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/chapterList.png -------------------------------------------------------------------------------- /images/icons/decreaseVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/decreaseVolume.png -------------------------------------------------------------------------------- /images/icons/exit-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/exit-fullscreen.png -------------------------------------------------------------------------------- /images/icons/exit-picture-in-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/exit-picture-in-picture.png -------------------------------------------------------------------------------- /images/icons/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/fullscreen.png -------------------------------------------------------------------------------- /images/icons/increaseVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/increaseVolume.png -------------------------------------------------------------------------------- /images/icons/loop_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/loop_current.png -------------------------------------------------------------------------------- /images/icons/muteVolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/muteVolume.png -------------------------------------------------------------------------------- /images/icons/nextChapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/nextChapter.png -------------------------------------------------------------------------------- /images/icons/openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/openFile.png -------------------------------------------------------------------------------- /images/icons/picture-in-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/picture-in-picture.png -------------------------------------------------------------------------------- /images/icons/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/playlist.png -------------------------------------------------------------------------------- /images/icons/previousChapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/previousChapter.png -------------------------------------------------------------------------------- /images/icons/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/random.png -------------------------------------------------------------------------------- /images/icons/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/record.png -------------------------------------------------------------------------------- /images/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/refresh.png -------------------------------------------------------------------------------- /images/icons/toggleRepeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/icons/toggleRepeat.png -------------------------------------------------------------------------------- /images/screenshots/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/screenshots/Screenshot_1.png -------------------------------------------------------------------------------- /images/screenshots/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/screenshots/Screenshot_2.png -------------------------------------------------------------------------------- /images/screenshots/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/screenshots/Screenshot_3.png -------------------------------------------------------------------------------- /images/screenshots/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/images/screenshots/Screenshot_4.png -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/resources.qrc -------------------------------------------------------------------------------- /src/components/chapterlistpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/chapterlistpage.cpp -------------------------------------------------------------------------------- /src/components/chapterlistpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/chapterlistpage.h -------------------------------------------------------------------------------- /src/components/mainpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/mainpage.cpp -------------------------------------------------------------------------------- /src/components/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/mainpage.h -------------------------------------------------------------------------------- /src/components/mediaprogressslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/mediaprogressslider.h -------------------------------------------------------------------------------- /src/components/mediavolumeslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/mediavolumeslider.h -------------------------------------------------------------------------------- /src/components/pictureinpicturewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/pictureinpicturewindow.cpp -------------------------------------------------------------------------------- /src/components/pictureinpicturewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/pictureinpicturewindow.h -------------------------------------------------------------------------------- /src/components/playercontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/playercontroller.cpp -------------------------------------------------------------------------------- /src/components/playercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/playercontroller.h -------------------------------------------------------------------------------- /src/components/playlistdock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/playlistdock.h -------------------------------------------------------------------------------- /src/components/playlistpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/playlistpage.cpp -------------------------------------------------------------------------------- /src/components/playlistpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/playlistpage.h -------------------------------------------------------------------------------- /src/components/screenmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/screenmessage.cpp -------------------------------------------------------------------------------- /src/components/screenmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/screenmessage.h -------------------------------------------------------------------------------- /src/components/videoWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/components/videoWidget.h -------------------------------------------------------------------------------- /src/dialogs/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/about.cpp -------------------------------------------------------------------------------- /src/dialogs/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/about.h -------------------------------------------------------------------------------- /src/dialogs/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/about.ui -------------------------------------------------------------------------------- /src/dialogs/gototime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/gototime.cpp -------------------------------------------------------------------------------- /src/dialogs/gototime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/gototime.h -------------------------------------------------------------------------------- /src/dialogs/gototime.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/dialogs/gototime.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/shared.cpp -------------------------------------------------------------------------------- /src/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/src/shared.h -------------------------------------------------------------------------------- /vlcqt/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/Enums.h -------------------------------------------------------------------------------- /vlcqt/Equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/Equalizer.h -------------------------------------------------------------------------------- /vlcqt/Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/Instance.h -------------------------------------------------------------------------------- /vlcqt/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/Media.h -------------------------------------------------------------------------------- /vlcqt/MediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/MediaPlayer.h -------------------------------------------------------------------------------- /vlcqt/MetaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/MetaManager.h -------------------------------------------------------------------------------- /vlcqt/ModuleDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/ModuleDescription.h -------------------------------------------------------------------------------- /vlcqt/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/Stats.h -------------------------------------------------------------------------------- /vlcqt/VideoDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/VideoDelegate.h -------------------------------------------------------------------------------- /vlcqt/vlcqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbtalha/QThisPlayer/HEAD/vlcqt/vlcqt.h --------------------------------------------------------------------------------