├── .gitignore ├── CMakeLists.txt ├── README.md ├── content ├── Background.qml ├── Button.qml ├── CurtainEffect.qml ├── DelegateItem.qml ├── DetailsView.qml ├── FpsItem.qml ├── InfoView.qml ├── InfoViewItem.qml ├── MainView.qml ├── MoviesModel.qml ├── RatingsItem.qml ├── SettingsView.qml ├── Switch.qml └── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── background.png │ ├── background3.png │ ├── button.png │ ├── cc-by_logo.png │ ├── cover_nmap.png │ ├── grip.png │ ├── heading.png │ ├── heading_big.png │ ├── info.png │ ├── panel_bg.png │ ├── particle.png │ ├── planet_sprite.png │ ├── qt_ambassador_logo.png │ ├── qt_logo.png │ ├── qt_logo2.png │ ├── quit_logo.png │ ├── sc1.png │ ├── sc2.png │ ├── sc3.png │ ├── sc4.png │ ├── sc5.png │ ├── settings.png │ ├── smoke.png │ ├── spinner.png │ ├── star.png │ ├── stars.png │ ├── stars2.png │ ├── switch_background.png │ ├── switch_frame.png │ ├── switch_on.png │ └── switch_thumb.png ├── main.cpp ├── main.qml └── shaders ├── button.frag ├── curtain.frag ├── curtain.vert ├── lighting.frag └── switch.frag /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/README.md -------------------------------------------------------------------------------- /content/Background.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/Background.qml -------------------------------------------------------------------------------- /content/Button.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/Button.qml -------------------------------------------------------------------------------- /content/CurtainEffect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/CurtainEffect.qml -------------------------------------------------------------------------------- /content/DelegateItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/DelegateItem.qml -------------------------------------------------------------------------------- /content/DetailsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/DetailsView.qml -------------------------------------------------------------------------------- /content/FpsItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/FpsItem.qml -------------------------------------------------------------------------------- /content/InfoView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/InfoView.qml -------------------------------------------------------------------------------- /content/InfoViewItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/InfoViewItem.qml -------------------------------------------------------------------------------- /content/MainView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/MainView.qml -------------------------------------------------------------------------------- /content/MoviesModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/MoviesModel.qml -------------------------------------------------------------------------------- /content/RatingsItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/RatingsItem.qml -------------------------------------------------------------------------------- /content/SettingsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/SettingsView.qml -------------------------------------------------------------------------------- /content/Switch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/Switch.qml -------------------------------------------------------------------------------- /content/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/1.png -------------------------------------------------------------------------------- /content/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/10.png -------------------------------------------------------------------------------- /content/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/11.png -------------------------------------------------------------------------------- /content/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/12.png -------------------------------------------------------------------------------- /content/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/13.png -------------------------------------------------------------------------------- /content/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/14.png -------------------------------------------------------------------------------- /content/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/15.png -------------------------------------------------------------------------------- /content/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/16.png -------------------------------------------------------------------------------- /content/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/17.png -------------------------------------------------------------------------------- /content/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/18.png -------------------------------------------------------------------------------- /content/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/19.png -------------------------------------------------------------------------------- /content/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/2.png -------------------------------------------------------------------------------- /content/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/20.png -------------------------------------------------------------------------------- /content/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/3.png -------------------------------------------------------------------------------- /content/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/4.png -------------------------------------------------------------------------------- /content/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/5.png -------------------------------------------------------------------------------- /content/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/6.png -------------------------------------------------------------------------------- /content/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/7.png -------------------------------------------------------------------------------- /content/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/8.png -------------------------------------------------------------------------------- /content/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/9.png -------------------------------------------------------------------------------- /content/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/background.png -------------------------------------------------------------------------------- /content/images/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/background3.png -------------------------------------------------------------------------------- /content/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/button.png -------------------------------------------------------------------------------- /content/images/cc-by_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/cc-by_logo.png -------------------------------------------------------------------------------- /content/images/cover_nmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/cover_nmap.png -------------------------------------------------------------------------------- /content/images/grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/grip.png -------------------------------------------------------------------------------- /content/images/heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/heading.png -------------------------------------------------------------------------------- /content/images/heading_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/heading_big.png -------------------------------------------------------------------------------- /content/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/info.png -------------------------------------------------------------------------------- /content/images/panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/panel_bg.png -------------------------------------------------------------------------------- /content/images/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/particle.png -------------------------------------------------------------------------------- /content/images/planet_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/planet_sprite.png -------------------------------------------------------------------------------- /content/images/qt_ambassador_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/qt_ambassador_logo.png -------------------------------------------------------------------------------- /content/images/qt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/qt_logo.png -------------------------------------------------------------------------------- /content/images/qt_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/qt_logo2.png -------------------------------------------------------------------------------- /content/images/quit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/quit_logo.png -------------------------------------------------------------------------------- /content/images/sc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/sc1.png -------------------------------------------------------------------------------- /content/images/sc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/sc2.png -------------------------------------------------------------------------------- /content/images/sc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/sc3.png -------------------------------------------------------------------------------- /content/images/sc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/sc4.png -------------------------------------------------------------------------------- /content/images/sc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/sc5.png -------------------------------------------------------------------------------- /content/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/settings.png -------------------------------------------------------------------------------- /content/images/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/smoke.png -------------------------------------------------------------------------------- /content/images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/spinner.png -------------------------------------------------------------------------------- /content/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/star.png -------------------------------------------------------------------------------- /content/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/stars.png -------------------------------------------------------------------------------- /content/images/stars2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/stars2.png -------------------------------------------------------------------------------- /content/images/switch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/switch_background.png -------------------------------------------------------------------------------- /content/images/switch_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/switch_frame.png -------------------------------------------------------------------------------- /content/images/switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/switch_on.png -------------------------------------------------------------------------------- /content/images/switch_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/content/images/switch_thumb.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/main.qml -------------------------------------------------------------------------------- /shaders/button.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/shaders/button.frag -------------------------------------------------------------------------------- /shaders/curtain.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/shaders/curtain.frag -------------------------------------------------------------------------------- /shaders/curtain.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/shaders/curtain.vert -------------------------------------------------------------------------------- /shaders/lighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/shaders/lighting.frag -------------------------------------------------------------------------------- /shaders/switch.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpqr/qt5-cinematic-experience/HEAD/shaders/switch.frag --------------------------------------------------------------------------------