├── .flake8
├── official
├── embedded
│ ├── styleexample
│ │ ├── files
│ │ │ ├── nostyle.qss
│ │ │ ├── add.png
│ │ │ ├── remove.png
│ │ │ ├── nature_1.jpg
│ │ │ └── blue.qss
│ │ ├── styleexample.qrc
│ │ └── main.py
│ └── lightmaps
│ │ └── main.py
├── demos
│ ├── coffee
│ │ ├── imports
│ │ │ └── Coffee
│ │ │ │ ├── qmldir
│ │ │ │ └── TitilliumWeb-Regular.ttf
│ │ ├── images
│ │ │ ├── ui controls
│ │ │ │ ├── line.png
│ │ │ │ └── buttons
│ │ │ │ │ ├── go
│ │ │ │ │ └── white.png
│ │ │ │ │ └── back
│ │ │ │ │ └── white.png
│ │ │ ├── icons
│ │ │ │ ├── coffees
│ │ │ │ │ ├── Latte.png
│ │ │ │ │ ├── Americano.png
│ │ │ │ │ ├── Espresso.png
│ │ │ │ │ ├── Macchiato.png
│ │ │ │ │ └── cappucino.png
│ │ │ │ └── contents
│ │ │ │ │ ├── milk.png
│ │ │ │ │ ├── sugar.png
│ │ │ │ │ └── coffee.png
│ │ │ └── cup structure
│ │ │ │ ├── coffee_cup_large.png
│ │ │ │ ├── coffee_cup_outline.png
│ │ │ │ ├── liquids
│ │ │ │ ├── liquid_foam.png
│ │ │ │ ├── liquid_milk.png
│ │ │ │ └── liquid_coffee.png
│ │ │ │ └── cup elements
│ │ │ │ ├── coffee_cup_back.png
│ │ │ │ ├── coffee_cup_front.png
│ │ │ │ └── coffee_cup_coverplate.png
│ │ ├── qtquickcontrols2.conf
│ │ ├── qt_attribution.json
│ │ └── main.py
│ ├── clocks
│ │ ├── content
│ │ │ ├── hour.png
│ │ │ ├── quit.png
│ │ │ ├── arrow.png
│ │ │ ├── center.png
│ │ │ ├── clock.png
│ │ │ ├── minute.png
│ │ │ ├── second.png
│ │ │ ├── background.png
│ │ │ └── clock-night.png
│ │ ├── clocks.qrc
│ │ └── main.py
│ ├── maroon
│ │ ├── content
│ │ │ ├── gfx
│ │ │ │ ├── mob.png
│ │ │ │ ├── bomb.png
│ │ │ │ ├── catch.png
│ │ │ │ ├── cloud.png
│ │ │ │ ├── grid.png
│ │ │ │ ├── help.png
│ │ │ │ ├── lifes.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── melee.png
│ │ │ │ ├── wave.png
│ │ │ │ ├── currency.png
│ │ │ │ ├── dialog.png
│ │ │ │ ├── factory.png
│ │ │ │ ├── mob-idle.png
│ │ │ │ ├── points.png
│ │ │ │ ├── scores.png
│ │ │ │ ├── shooter.png
│ │ │ │ ├── sunlight.png
│ │ │ │ ├── text-1.png
│ │ │ │ ├── text-2.png
│ │ │ │ ├── text-3.png
│ │ │ │ ├── text-go.png
│ │ │ │ ├── background.png
│ │ │ │ ├── bomb-idle.png
│ │ │ │ ├── logo-fish.png
│ │ │ │ ├── melee-idle.png
│ │ │ │ ├── projectile.png
│ │ │ │ ├── text-blank.png
│ │ │ │ ├── bomb-action.png
│ │ │ │ ├── button-help.png
│ │ │ │ ├── button-play.png
│ │ │ │ ├── catch-action.png
│ │ │ │ ├── dialog-bomb.png
│ │ │ │ ├── dialog-melee.png
│ │ │ │ ├── factory-idle.png
│ │ │ │ ├── logo-bubble.png
│ │ │ │ ├── melee-action.png
│ │ │ │ ├── shooter-idle.png
│ │ │ │ ├── text-gameover.png
│ │ │ │ ├── dialog-factory.png
│ │ │ │ ├── dialog-pointer.png
│ │ │ │ ├── dialog-shooter.png
│ │ │ │ ├── factory-action.png
│ │ │ │ ├── shooter-action.png
│ │ │ │ └── projectile-action.png
│ │ │ └── audio
│ │ │ │ ├── catch.wav
│ │ │ │ ├── currency.wav
│ │ │ │ ├── bomb-action.wav
│ │ │ │ ├── catch-action.wav
│ │ │ │ ├── melee-action.wav
│ │ │ │ ├── factory-action.wav
│ │ │ │ ├── shooter-action.wav
│ │ │ │ └── projectile-action.wav
│ │ └── main.py
│ ├── photosurface
│ │ ├── resources
│ │ │ ├── icon.png
│ │ │ ├── folder.png
│ │ │ ├── photosurface.icns
│ │ │ ├── photosurface.ico
│ │ │ └── photosurface.rc
│ │ └── photosurface.qrc
│ └── calqlatr
│ │ ├── content
│ │ └── images
│ │ │ ├── paper-grip.png
│ │ │ ├── paper-edge-left.png
│ │ │ └── paper-edge-right.png
│ │ ├── calqlatr.qrc
│ │ └── main.py
├── quickcontrols2
│ ├── flatstyle
│ │ ├── qtquickcontrols2.conf
│ │ ├── imports
│ │ │ └── Theme
│ │ │ │ └── qmldir
│ │ ├── resources.qrc
│ │ └── main.py
│ ├── gallery
│ │ ├── images
│ │ │ ├── arrow.png
│ │ │ ├── arrow@2x.png
│ │ │ ├── arrow@3x.png
│ │ │ ├── arrow@4x.png
│ │ │ ├── arrows.png
│ │ │ ├── qt-logo.png
│ │ │ ├── arrows@2x.png
│ │ │ ├── arrows@3x.png
│ │ │ ├── arrows@4x.png
│ │ │ ├── qt-logo@2x.png
│ │ │ ├── qt-logo@3x.png
│ │ │ └── qt-logo@4x.png
│ │ ├── icons
│ │ │ └── gallery
│ │ │ │ ├── 20x20
│ │ │ │ ├── back.png
│ │ │ │ ├── menu.png
│ │ │ │ └── drawer.png
│ │ │ │ ├── 20x20@2
│ │ │ │ ├── back.png
│ │ │ │ ├── menu.png
│ │ │ │ └── drawer.png
│ │ │ │ ├── 20x20@3
│ │ │ │ ├── back.png
│ │ │ │ ├── menu.png
│ │ │ │ └── drawer.png
│ │ │ │ ├── 20x20@4
│ │ │ │ ├── back.png
│ │ │ │ ├── menu.png
│ │ │ │ └── drawer.png
│ │ │ │ └── index.theme
│ │ ├── qtquickcontrols2.conf
│ │ └── main.py
│ ├── imagine
│ │ ├── automotive
│ │ │ ├── icons
│ │ │ │ ├── car.png
│ │ │ │ ├── car@2x.png
│ │ │ │ ├── warning.png
│ │ │ │ ├── weather.png
│ │ │ │ ├── warning@2x.png
│ │ │ │ ├── weather@2x.png
│ │ │ │ ├── automotive
│ │ │ │ │ ├── 44x44
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── seats.png
│ │ │ │ │ │ ├── air-con.png
│ │ │ │ │ │ ├── command.png
│ │ │ │ │ │ ├── message.png
│ │ │ │ │ │ ├── settings.png
│ │ │ │ │ │ ├── windows.png
│ │ │ │ │ │ └── statistics.png
│ │ │ │ │ ├── 44x44@2
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── seats.png
│ │ │ │ │ │ ├── air-con.png
│ │ │ │ │ │ ├── command.png
│ │ │ │ │ │ ├── message.png
│ │ │ │ │ │ ├── settings.png
│ │ │ │ │ │ ├── windows.png
│ │ │ │ │ │ ├── navigation.png
│ │ │ │ │ │ └── statistics.png
│ │ │ │ │ └── index.theme
│ │ │ │ └── icons.qrc
│ │ │ ├── resources.qrc
│ │ │ ├── imagine-assets
│ │ │ │ ├── dial-handle.png
│ │ │ │ ├── dial-handle@2x.png
│ │ │ │ ├── slider-handle.png
│ │ │ │ ├── dial-background.png
│ │ │ │ ├── slider-handle@2x.png
│ │ │ │ ├── button-background.9.png
│ │ │ │ ├── dial-background@2x.png
│ │ │ │ ├── dial-handle-pressed.png
│ │ │ │ ├── frame-background.9.png
│ │ │ │ ├── frame-background@2x.9.png
│ │ │ │ ├── radiobutton-indicator.png
│ │ │ │ ├── slider-handle-hovered.png
│ │ │ │ ├── slider-handle-pressed.png
│ │ │ │ ├── switchdelegate-handle.png
│ │ │ │ ├── button-background@2x.9.png
│ │ │ │ ├── dial-background-hovered.png
│ │ │ │ ├── dial-background-pressed.png
│ │ │ │ ├── dial-handle-pressed@2x.png
│ │ │ │ ├── radiobutton-indicator@2x.png
│ │ │ │ ├── scrollindicator-handle.png
│ │ │ │ ├── slider-handle-hovered@2x.png
│ │ │ │ ├── slider-handle-pressed@2x.png
│ │ │ │ ├── switchdelegate-handle@2x.png
│ │ │ │ ├── switchdelegate-indicator.png
│ │ │ │ ├── dial-background-hovered@2x.png
│ │ │ │ ├── dial-background-pressed@2x.png
│ │ │ │ ├── itemdelegate-background.9.png
│ │ │ │ ├── scrollindicator-handle@2x.png
│ │ │ │ ├── applicationwindow-background.png
│ │ │ │ ├── button-background-checked.9.png
│ │ │ │ ├── button-background-hovered.9.png
│ │ │ │ ├── button-background-pressed.9.png
│ │ │ │ ├── itemdelegate-background@2x.9.png
│ │ │ │ ├── radiobutton-indicator-checked.png
│ │ │ │ ├── radiobutton-indicator-hovered.png
│ │ │ │ ├── radiobutton-indicator-pressed.png
│ │ │ │ ├── slider-progress-horizontal.9.png
│ │ │ │ ├── switchdelegate-background.9.png
│ │ │ │ ├── switchdelegate-handle-checked.png
│ │ │ │ ├── switchdelegate-handle-hovered.png
│ │ │ │ ├── switchdelegate-handle-pressed.png
│ │ │ │ ├── switchdelegate-indicator@2x.png
│ │ │ │ ├── applicationwindow-background@2x.png
│ │ │ │ ├── button-background-checked@2x.9.png
│ │ │ │ ├── button-background-hovered@2x.9.png
│ │ │ │ ├── button-background-pressed@2x.9.png
│ │ │ │ ├── slider-background-horizontal.9.png
│ │ │ │ ├── slider-progress-horizontal@2x.9.png
│ │ │ │ ├── switchdelegate-background@2x.9.png
│ │ │ │ ├── itemdelegate-background-checked.9.png
│ │ │ │ ├── itemdelegate-background-hovered.9.png
│ │ │ │ ├── itemdelegate-background-pressed.9.png
│ │ │ │ ├── radiobutton-indicator-checked@2x.png
│ │ │ │ ├── radiobutton-indicator-hovered@2x.png
│ │ │ │ ├── radiobutton-indicator-pressed@2x.png
│ │ │ │ ├── slider-background-horizontal@2x.9.png
│ │ │ │ ├── switchdelegate-handle-checked@2x.png
│ │ │ │ ├── switchdelegate-handle-hovered@2x.png
│ │ │ │ ├── switchdelegate-handle-pressed@2x.png
│ │ │ │ ├── switchdelegate-indicator-pressed.png
│ │ │ │ ├── toolseparator-separator-vertical.9.png
│ │ │ │ ├── button-background-checked-hovered.9.png
│ │ │ │ ├── itemdelegate-background-checked@2x.9.png
│ │ │ │ ├── itemdelegate-background-hovered@2x.9.png
│ │ │ │ ├── itemdelegate-background-pressed@2x.9.png
│ │ │ │ ├── slider-progress-horizontal-pressed.9.png
│ │ │ │ ├── switchdelegate-indicator-pressed@2x.png
│ │ │ │ ├── button-background-checked-hovered@2x.9.png
│ │ │ │ ├── radiobutton-indicator-checked-hovered.png
│ │ │ │ ├── radiobutton-indicator-checked-pressed.png
│ │ │ │ ├── slider-progress-horizontal-pressed@2x.9.png
│ │ │ │ ├── switchdelegate-handle-checked-hovered.png
│ │ │ │ ├── toolseparator-separator-vertical@2x.9.png
│ │ │ │ ├── radiobutton-indicator-checked-hovered@2x.png
│ │ │ │ ├── radiobutton-indicator-checked-pressed@2x.png
│ │ │ │ └── switchdelegate-handle-checked-hovered@2x.png
│ │ │ ├── qtquickcontrols2.conf
│ │ │ ├── qml
│ │ │ │ └── qml.qrc
│ │ │ └── main.py
│ │ └── musicplayer
│ │ │ ├── images
│ │ │ └── album-cover.jpg
│ │ │ ├── icons
│ │ │ └── musicplayer
│ │ │ │ ├── 32x32
│ │ │ │ ├── cart.png
│ │ │ │ ├── next.png
│ │ │ │ ├── save.png
│ │ │ │ ├── stop.png
│ │ │ │ ├── cloud.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── folder.png
│ │ │ │ ├── music.png
│ │ │ │ ├── pause.png
│ │ │ │ ├── power.png
│ │ │ │ ├── repeat.png
│ │ │ │ ├── bluetooth.png
│ │ │ │ ├── favorite.png
│ │ │ │ ├── message.png
│ │ │ │ ├── previous.png
│ │ │ │ ├── settings.png
│ │ │ │ └── shuffle.png
│ │ │ │ ├── 32x32@2
│ │ │ │ ├── cart.png
│ │ │ │ ├── grid.png
│ │ │ │ ├── next.png
│ │ │ │ ├── save.png
│ │ │ │ ├── stop.png
│ │ │ │ ├── cloud.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── folder.png
│ │ │ │ ├── message.png
│ │ │ │ ├── music.png
│ │ │ │ ├── pause.png
│ │ │ │ ├── power.png
│ │ │ │ ├── repeat.png
│ │ │ │ ├── shuffle.png
│ │ │ │ ├── bluetooth.png
│ │ │ │ ├── favorite.png
│ │ │ │ ├── previous.png
│ │ │ │ └── settings.png
│ │ │ │ └── index.theme
│ │ │ ├── imagine-assets
│ │ │ ├── dial-handle.png
│ │ │ ├── slider-handle.png
│ │ │ ├── dial-background.png
│ │ │ ├── dial-handle@2x.png
│ │ │ ├── combobox-indicator.png
│ │ │ ├── combobox-popup.9.png
│ │ │ ├── dial-background@2x.png
│ │ │ ├── frame-background.9.png
│ │ │ ├── slider-handle@2x.png
│ │ │ ├── button-background.9.png
│ │ │ ├── combobox-popup@2x.9.png
│ │ │ ├── dial-handle-pressed.png
│ │ │ ├── toolbar-background.9.png
│ │ │ ├── tooltip-background.9.png
│ │ │ ├── button-background@2x.9.png
│ │ │ ├── combobox-background.9.png
│ │ │ ├── combobox-indicator-open.png
│ │ │ ├── combobox-indicator@2x.png
│ │ │ ├── dial-background-hovered.png
│ │ │ ├── dial-background-pressed.png
│ │ │ ├── dial-handle-pressed@2x.png
│ │ │ ├── frame-background@2x.9.png
│ │ │ ├── roundbutton-background.png
│ │ │ ├── slider-handle-disabled.png
│ │ │ ├── slider-handle-hovered.png
│ │ │ ├── textfield-background.9.png
│ │ │ ├── toolbar-background@2x.9.png
│ │ │ ├── toolbutton-background.9.png
│ │ │ ├── tooltip-background@2x.9.png
│ │ │ ├── combobox-background@2x.9.png
│ │ │ ├── itemdelegate-background.9.png
│ │ │ ├── roundbutton-background@2x.png
│ │ │ ├── slider-handle-disabled@2x.png
│ │ │ ├── slider-handle-hovered@2x.png
│ │ │ ├── textfield-background@2x.9.png
│ │ │ ├── applicationwindow-background.png
│ │ │ ├── button-background-checked.9.png
│ │ │ ├── button-background-disabled.9.png
│ │ │ ├── button-background-hovered.9.png
│ │ │ ├── button-background-pressed.9.png
│ │ │ ├── combobox-background-open.9.png
│ │ │ ├── combobox-indicator-hovered.png
│ │ │ ├── combobox-indicator-open@2x.png
│ │ │ ├── combobox-indicator-pressed.png
│ │ │ ├── dial-background-hovered@2x.png
│ │ │ ├── dial-background-pressed@2x.png
│ │ │ ├── itemdelegate-background@2x.9.png
│ │ │ ├── scrollbar-handle-interactive.png
│ │ │ ├── slider-background-vertical.9.png
│ │ │ ├── slider-progress-horizontal.9.png
│ │ │ ├── slider-progress-vertical.9.png
│ │ │ ├── toolbutton-background@2x.9.png
│ │ │ ├── button-background-checked@2x.9.png
│ │ │ ├── button-background-hovered@2x.9.png
│ │ │ ├── button-background-pressed@2x.9.png
│ │ │ ├── combobox-background-hovered.9.png
│ │ │ ├── combobox-background-open@2x.9.png
│ │ │ ├── combobox-background-pressed.9.png
│ │ │ ├── combobox-indicator-hovered@2x.png
│ │ │ ├── combobox-indicator-pressed@2x.png
│ │ │ ├── roundbutton-background-checked.png
│ │ │ ├── roundbutton-background-hovered.png
│ │ │ ├── roundbutton-background-pressed.png
│ │ │ ├── slider-background-horizontal.9.png
│ │ │ ├── slider-progress-vertical@2x.9.png
│ │ │ ├── button-background-disabled@2x.9.png
│ │ │ ├── combobox-background-hovered@2x.9.png
│ │ │ ├── combobox-background-pressed@2x.9.png
│ │ │ ├── itemdelegate-background-checked.9.png
│ │ │ ├── itemdelegate-background-hovered.9.png
│ │ │ ├── itemdelegate-background-pressed.9.png
│ │ │ ├── roundbutton-background-checked@2x.png
│ │ │ ├── roundbutton-background-disabled.png
│ │ │ ├── roundbutton-background-hovered@2x.png
│ │ │ ├── roundbutton-background-pressed@2x.png
│ │ │ ├── scrollbar-handle-interactive@2x.png
│ │ │ ├── slider-background-horizontal@2x.9.png
│ │ │ ├── slider-background-vertical@2x.9.png
│ │ │ ├── slider-progress-horizontal@2x.9.png
│ │ │ ├── textfield-background-disabled.9.png
│ │ │ ├── toolbutton-background-checked.9.png
│ │ │ ├── toolbutton-background-hovered.9.png
│ │ │ ├── toolbutton-background-pressed.9.png
│ │ │ ├── button-background-checked-hovered.9.png
│ │ │ ├── itemdelegate-background-disabled.9.png
│ │ │ ├── roundbutton-background-disabled@2x.png
│ │ │ ├── slider-progress-vertical-disabled.9.png
│ │ │ ├── textfield-background-disabled@2x.9.png
│ │ │ ├── toolbutton-background-checked@2x.9.png
│ │ │ ├── toolbutton-background-hovered@2x.9.png
│ │ │ ├── toolbutton-background-pressed@2x.9.png
│ │ │ ├── button-background-checked-hovered@2x.9.png
│ │ │ ├── itemdelegate-background-checked@2x.9.png
│ │ │ ├── itemdelegate-background-disabled@2x.9.png
│ │ │ ├── itemdelegate-background-hovered@2x.9.png
│ │ │ ├── itemdelegate-background-pressed@2x.9.png
│ │ │ ├── roundbutton-background-checked-hovered.png
│ │ │ ├── scrollbar-handle-interactive-hovered.png
│ │ │ ├── scrollbar-handle-interactive-pressed.png
│ │ │ ├── slider-background-vertical-disabled.9.png
│ │ │ ├── slider-progress-vertical-disabled@2x.9.png
│ │ │ ├── scrollbar-handle-interactive-hovered@2x.png
│ │ │ ├── scrollbar-handle-interactive-pressed@2x.png
│ │ │ ├── slider-background-horizontal-disabled.9.png
│ │ │ ├── slider-background-vertical-disabled@2x.9.png
│ │ │ ├── toolbutton-background-checked-hovered.9.png
│ │ │ ├── roundbutton-background-checked-hovered@2x.png
│ │ │ ├── slider-background-horizontal-disabled@2x.9.png
│ │ │ └── toolbutton-background-checked-hovered@2x.9.png
│ │ │ ├── qtquickcontrols2.conf
│ │ │ ├── resources.qrc
│ │ │ └── main.py
│ └── swipetoremove
│ │ ├── fonts
│ │ ├── fontello.ttf
│ │ └── LICENSE.txt
│ │ ├── resources.qrc
│ │ └── main.py
├── dbus
│ └── pingpong
│ │ ├── ping_common.py
│ │ ├── ping.py
│ │ └── pong.py
├── corelib
│ └── ipc
│ │ ├── sharedmemory
│ │ ├── qt.png
│ │ ├── image.png
│ │ ├── main.py
│ │ └── dialog.ui
│ │ ├── localfortuneclient
│ │ └── main.py
│ │ └── localfortuneserver
│ │ └── main.py
├── sql
│ ├── drilldown
│ │ ├── images
│ │ │ ├── qt-logo.png
│ │ │ ├── qt-quick.png
│ │ │ ├── qt-creator.png
│ │ │ └── qt-project.png
│ │ ├── drilldown.qrc
│ │ └── main.py
│ └── cachedtable
│ │ └── main.py
├── webengine
│ ├── lifecycle
│ │ ├── qtquickcontrols2.conf
│ │ ├── resources.qrc
│ │ └── main.py
│ ├── minimal
│ │ ├── qml.qrc
│ │ └── main.py
│ ├── recipebrowser
│ │ ├── resources
│ │ │ ├── pages
│ │ │ │ ├── images
│ │ │ │ │ ├── burger.jpg
│ │ │ │ │ ├── pasta.jpg
│ │ │ │ │ ├── pizza.jpg
│ │ │ │ │ ├── soup.jpg
│ │ │ │ │ ├── steak.jpg
│ │ │ │ │ ├── cupcakes.jpg
│ │ │ │ │ └── skewers.jpg
│ │ │ │ ├── assets
│ │ │ │ │ └── 3rdparty
│ │ │ │ │ │ ├── MARKDOWN-LICENSE.txt
│ │ │ │ │ │ └── MARKED-LICENSE.txt
│ │ │ │ └── soup.html
│ │ │ └── resources.qrc
│ │ └── main.py
│ └── customdialogs
│ │ ├── style.css
│ │ ├── customdialogs.qrc
│ │ └── main.py
├── webenginewidgets
│ ├── cookiebrowser
│ │ ├── 3rdparty
│ │ │ ├── COPYING
│ │ │ ├── view-refresh.png
│ │ │ └── qt_attribution.json
│ │ └── cookiebrowser.qrc
│ ├── webui
│ │ └── webui.qrc
│ ├── notifications
│ │ └── data
│ │ │ ├── icon.png
│ │ │ └── data.qrc
│ ├── spellchecker
│ │ ├── dict
│ │ │ ├── de
│ │ │ │ ├── de-DE.aff
│ │ │ │ ├── de-DE.dic
│ │ │ │ └── README.txt
│ │ │ └── en
│ │ │ │ ├── en-US.aff
│ │ │ │ ├── en-US.dic
│ │ │ │ └── README.txt
│ │ ├── qtwebengine_dictionaries
│ │ │ ├── de-DE.bdic
│ │ │ └── en-US.bdic
│ │ ├── data
│ │ │ ├── spellchecker.qrc
│ │ │ └── index.html
│ │ └── README.md
│ ├── contentmanipulation
│ │ └── jquery.qrc
│ ├── printme
│ │ └── data
│ │ │ ├── data.qrc
│ │ │ └── index.html
│ ├── markdowneditor
│ │ └── resources
│ │ │ ├── markdowneditor.qrc
│ │ │ ├── default.md
│ │ │ ├── 3rdparty
│ │ │ ├── MARKDOWN-LICENSE.txt
│ │ │ └── MARKED-LICENSE.txt
│ │ │ └── index.html
│ └── minimal
│ │ └── main.py
├── positioning
│ └── logfilepositionsource
│ │ ├── logfile.qrc
│ │ ├── main.py
│ │ └── clientapplication.py
├── charts
│ ├── candlestickchart
│ │ ├── candlestickdata.qrc
│ │ ├── candlestickdatareader.py
│ │ └── acme_data.txt
│ ├── boxplotchart
│ │ └── boxplotdata.qrc
│ ├── callout
│ │ └── main.py
│ └── barmodelmapper
│ │ └── main.py
├── websockets
│ └── sslechoserver
│ │ ├── securesocketclient.qrc
│ │ ├── main.py
│ │ └── localhost.cert
└── serialport
│ └── enumerator
│ └── main.py
├── requirements_dev.txt
├── others
├── not_classified
│ └── 1
│ │ ├── README.md
│ │ └── screenshot.png
├── qmlvideoviewer
│ ├── video
│ │ └── __init__.py
│ ├── main.py
│ └── qml
│ │ └── main.qml
└── matplotlib
│ ├── Subplot.py
│ ├── widgets
│ ├── cursor.py
│ ├── multicursor.py
│ ├── check_buttons.py
│ ├── span_selector.py
│ └── buttons.py
│ ├── simple_plot.py
│ ├── polar_demo.py
│ ├── pie_features.py
│ ├── subplot.py
│ ├── tex_demo.py
│ ├── legend.py
│ ├── ellipse_demo.py
│ ├── surface3d.py
│ ├── histogram_features.py
│ ├── path_patch.py
│ └── log_demo.py
├── requirements.txt
├── .github
├── FUNDING.yml
└── ISSUE_TEMPLATE
│ └── request-example.md
└── .pre-commit-config.yaml
/.flake8:
--------------------------------------------------------------------------------
1 | [flake8]
2 | max-line-length = 120
3 |
--------------------------------------------------------------------------------
/official/embedded/styleexample/files/nostyle.qss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/requirements_dev.txt:
--------------------------------------------------------------------------------
1 | black==20.8b1
2 | flake8==3.8.4
3 | pre-commit==2.10.1
4 |
--------------------------------------------------------------------------------
/official/demos/coffee/imports/Coffee/qmldir:
--------------------------------------------------------------------------------
1 | singleton Constants 1.0 Constants.qml
2 |
--------------------------------------------------------------------------------
/official/quickcontrols2/flatstyle/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Controls]
2 | Style=Flat
3 |
--------------------------------------------------------------------------------
/others/not_classified/1/README.md:
--------------------------------------------------------------------------------
1 | ### Output
2 |
3 | 
4 |
--------------------------------------------------------------------------------
/official/quickcontrols2/flatstyle/imports/Theme/qmldir:
--------------------------------------------------------------------------------
1 | module Theme
2 | singleton Theme 1.0 Theme.qml
3 |
--------------------------------------------------------------------------------
/official/dbus/pingpong/ping_common.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | SERVICE_NAME = "org.example.QtDBus.PingExample"
3 |
--------------------------------------------------------------------------------
/official/demos/clocks/content/hour.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/hour.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/quit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/quit.png
--------------------------------------------------------------------------------
/others/not_classified/1/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/others/not_classified/1/screenshot.png
--------------------------------------------------------------------------------
/official/corelib/ipc/sharedmemory/qt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/corelib/ipc/sharedmemory/qt.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/arrow.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/center.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/clock.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/minute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/minute.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/second.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/second.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/mob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/mob.png
--------------------------------------------------------------------------------
/official/sql/drilldown/images/qt-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/sql/drilldown/images/qt-logo.png
--------------------------------------------------------------------------------
/official/webengine/lifecycle/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Controls]
2 | Style=Material
3 |
4 | [Material]
5 | Theme=Dark
6 | Variant=Dense
7 |
--------------------------------------------------------------------------------
/official/webenginewidgets/cookiebrowser/3rdparty/COPYING:
--------------------------------------------------------------------------------
1 | The icons in this repository are herefore released into the Public Domain.
2 |
--------------------------------------------------------------------------------
/official/corelib/ipc/sharedmemory/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/corelib/ipc/sharedmemory/image.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/bomb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/bomb.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/catch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/catch.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/cloud.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/grid.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/help.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/lifes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/lifes.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/logo.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/melee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/melee.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/wave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/wave.png
--------------------------------------------------------------------------------
/official/sql/drilldown/images/qt-quick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/sql/drilldown/images/qt-quick.png
--------------------------------------------------------------------------------
/official/webengine/minimal/qml.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | main.qml
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/demos/clocks/content/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/background.png
--------------------------------------------------------------------------------
/official/demos/clocks/content/clock-night.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/clocks/content/clock-night.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/catch.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/catch.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/currency.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/currency.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/factory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/factory.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/mob-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/mob-idle.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/points.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/points.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/scores.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/scores.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/shooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/shooter.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/sunlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/sunlight.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-1.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-2.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-3.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-go.png
--------------------------------------------------------------------------------
/official/demos/photosurface/resources/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/photosurface/resources/icon.png
--------------------------------------------------------------------------------
/official/embedded/styleexample/files/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/embedded/styleexample/files/add.png
--------------------------------------------------------------------------------
/official/sql/drilldown/images/qt-creator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/sql/drilldown/images/qt-creator.png
--------------------------------------------------------------------------------
/official/sql/drilldown/images/qt-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/sql/drilldown/images/qt-project.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/currency.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/currency.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/background.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/bomb-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/bomb-idle.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/logo-fish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/logo-fish.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/melee-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/melee-idle.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/projectile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/projectile.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-blank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-blank.png
--------------------------------------------------------------------------------
/official/demos/photosurface/resources/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/photosurface/resources/folder.png
--------------------------------------------------------------------------------
/official/embedded/styleexample/files/remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/embedded/styleexample/files/remove.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrow.png
--------------------------------------------------------------------------------
/official/webenginewidgets/webui/webui.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | about.html
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/demos/coffee/images/ui controls/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/ui controls/line.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/bomb-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/bomb-action.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/bomb-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/bomb-action.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/button-help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/button-help.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/button-play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/button-play.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/catch-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/catch-action.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog-bomb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog-bomb.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog-melee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog-melee.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/factory-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/factory-idle.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/logo-bubble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/logo-bubble.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/melee-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/melee-action.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/shooter-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/shooter-idle.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/text-gameover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/text-gameover.png
--------------------------------------------------------------------------------
/official/embedded/styleexample/files/nature_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/embedded/styleexample/files/nature_1.jpg
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrow@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrow@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrow@3x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrow@4x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrow@4x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrows.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/qt-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/qt-logo.png
--------------------------------------------------------------------------------
/official/demos/calqlatr/content/images/paper-grip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/calqlatr/content/images/paper-grip.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/coffees/Latte.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/coffees/Latte.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/contents/milk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/contents/milk.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/contents/sugar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/contents/sugar.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/catch-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/catch-action.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/melee-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/melee-action.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog-factory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog-factory.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog-pointer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog-pointer.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/dialog-shooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/dialog-shooter.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/factory-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/factory-action.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/shooter-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/shooter-action.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrows@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrows@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrows@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrows@3x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/arrows@4x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/arrows@4x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/qt-logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/qt-logo@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/qt-logo@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/qt-logo@3x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/images/qt-logo@4x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/images/qt-logo@4x.png
--------------------------------------------------------------------------------
/official/webenginewidgets/notifications/data/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webenginewidgets/notifications/data/icon.png
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/de/de-DE.aff:
--------------------------------------------------------------------------------
1 | SET UTF-8
2 | TRY esianrtolcdugmphbyfvkwzqESIANRTOLCDUGMPHBYFVKWZQ
3 |
4 | PFX Q Y 1
5 | PFX Q 0 q .
6 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/en/en-US.aff:
--------------------------------------------------------------------------------
1 | SET UTF-8
2 | TRY esianrtolcdugmphbyfvkwzqESIANRTOLCDUGMPHBYFVKWZQ
3 |
4 | PFX Q Y 1
5 | PFX Q 0 q .
6 |
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/coffees/Americano.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/coffees/Americano.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/coffees/Espresso.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/coffees/Espresso.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/coffees/Macchiato.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/coffees/Macchiato.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/coffees/cappucino.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/coffees/cappucino.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/icons/contents/coffee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/icons/contents/coffee.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/factory-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/factory-action.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/shooter-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/shooter-action.wav
--------------------------------------------------------------------------------
/official/demos/maroon/content/gfx/projectile-action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/gfx/projectile-action.png
--------------------------------------------------------------------------------
/official/demos/photosurface/resources/photosurface.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/photosurface/resources/photosurface.icns
--------------------------------------------------------------------------------
/official/demos/photosurface/resources/photosurface.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/photosurface/resources/photosurface.ico
--------------------------------------------------------------------------------
/official/positioning/logfilepositionsource/logfile.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | simplelog.txt
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/car.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/car.png
--------------------------------------------------------------------------------
/official/quickcontrols2/swipetoremove/fonts/fontello.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/swipetoremove/fonts/fontello.ttf
--------------------------------------------------------------------------------
/official/demos/calqlatr/content/images/paper-edge-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/calqlatr/content/images/paper-edge-left.png
--------------------------------------------------------------------------------
/official/demos/maroon/content/audio/projectile-action.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/maroon/content/audio/projectile-action.wav
--------------------------------------------------------------------------------
/official/webenginewidgets/contentmanipulation/jquery.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | jquery.min.js
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/en/en-US.dic:
--------------------------------------------------------------------------------
1 | 10
2 | he/Q
3 | I/Q
4 | it/Q
5 | love/Q
6 | loves/Q
7 | qt/Q
8 | she/Q
9 | they/Q
10 | we/Q
11 | you/Q
12 |
--------------------------------------------------------------------------------
/official/charts/candlestickchart/candlestickdata.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | acme_data.txt
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/demos/calqlatr/content/images/paper-edge-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/calqlatr/content/images/paper-edge-right.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/ui controls/buttons/go/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/ui controls/buttons/go/white.png
--------------------------------------------------------------------------------
/official/demos/coffee/imports/Coffee/TitilliumWeb-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/imports/Coffee/TitilliumWeb-Regular.ttf
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20/back.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20/menu.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/car@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/car@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/warning.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/weather.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/coffee_cup_large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/coffee_cup_large.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/ui controls/buttons/back/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/ui controls/buttons/back/white.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20/drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20/drawer.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@2/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@2/back.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@3/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@3/back.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@4/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@4/back.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Material]
2 | Primary=#41cd52
3 | Accent=#41cd52
4 | Theme=System
5 |
6 | [Universal]
7 | Accent=#41cd52
8 | Theme=System
9 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/warning@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/warning@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/weather@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/weather@2x.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/coffee_cup_outline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/coffee_cup_outline.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/liquids/liquid_foam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/liquids/liquid_foam.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/liquids/liquid_milk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/liquids/liquid_milk.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@2/drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@2/drawer.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@3/drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@3/drawer.png
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/20x20@4/drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/gallery/icons/gallery/20x20@4/drawer.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | qtquickcontrols2.conf
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/images/album-cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/images/album-cover.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/burger.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/burger.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/pasta.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/pasta.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/pizza.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/pizza.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/soup.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/soup.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/steak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/steak.jpg
--------------------------------------------------------------------------------
/official/webenginewidgets/cookiebrowser/3rdparty/view-refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webenginewidgets/cookiebrowser/3rdparty/view-refresh.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/liquids/liquid_coffee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/liquids/liquid_coffee.png
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/cupcakes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/cupcakes.jpg
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/images/skewers.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webengine/recipebrowser/resources/pages/images/skewers.jpg
--------------------------------------------------------------------------------
/official/demos/coffee/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Controls]
2 | Style=Material
3 |
4 | [Universal]
5 | Theme=Light
6 |
7 | [Material]
8 | Theme=Dark
9 | Primary=Grey
10 | Accent=White
11 |
--------------------------------------------------------------------------------
/official/webenginewidgets/notifications/data/data.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | index.html
4 | icon.png
5 |
6 |
7 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/cup elements/coffee_cup_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/cup elements/coffee_cup_back.png
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/cup elements/coffee_cup_front.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/cup elements/coffee_cup_front.png
--------------------------------------------------------------------------------
/official/demos/photosurface/photosurface.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | photosurface.qml
4 | resources/folder.png
5 |
6 |
7 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/music.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/seats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/seats.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cart.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/next.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/save.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/stop.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle.png
--------------------------------------------------------------------------------
/official/webenginewidgets/cookiebrowser/cookiebrowser.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | 3rdparty/view-refresh.png
4 |
5 |
6 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/qtwebengine_dictionaries/de-DE.bdic:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webenginewidgets/spellchecker/qtwebengine_dictionaries/de-DE.bdic
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/qtwebengine_dictionaries/en-US.bdic:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/webenginewidgets/spellchecker/qtwebengine_dictionaries/en-US.bdic
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/air-con.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/air-con.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/command.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/message.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/settings.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/windows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/windows.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/music.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/seats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/seats.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cloud.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/filter.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/folder.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/music.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/pause.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/power.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/power.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/repeat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/repeat.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cart.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/grid.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/next.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/save.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/stop.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle@2x.png
--------------------------------------------------------------------------------
/official/websockets/sslechoserver/securesocketclient.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | localhost.cert
4 | localhost.key
5 |
6 |
7 |
--------------------------------------------------------------------------------
/official/demos/coffee/images/cup structure/cup elements/coffee_cup_coverplate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/demos/coffee/images/cup structure/cup elements/coffee_cup_coverplate.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/statistics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44/statistics.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/air-con.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/air-con.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/command.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/message.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/settings.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/windows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/windows.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/frame-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/frame-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/bluetooth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/bluetooth.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/favorite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/favorite.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/message.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/previous.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/settings.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/shuffle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/shuffle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cloud.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/filter.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/folder.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/message.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/music.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/pause.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/power.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/power.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/repeat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/repeat.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/shuffle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/shuffle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/swipetoremove/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | swipetoremove.qml
4 | fonts/fontello.ttf
5 |
6 |
7 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/de/de-DE.dic:
--------------------------------------------------------------------------------
1 | 15
2 | du/Q
3 | er/Q
4 | es/Q
5 | ich/Q
6 | ihr/Q
7 | liebe/Q
8 | lieben/Q
9 | liebst/Q
10 | liebt/Q
11 | qt/Q
12 | sie/Q
13 | Sie/Q
14 | wir/Q
15 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/navigation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/navigation.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/statistics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/statistics.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/frame-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/frame-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/bluetooth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/bluetooth.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/favorite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/favorite.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/previous.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/settings.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background.9.png
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | animatplot==0.4.1
2 | Cartopy==0.17.0
3 | geopandas==0.7.0
4 | geoplot==0.4.0
5 | matplotlib==3.2.1
6 | numpy==1.18.5
7 | pandas==1.0.4
8 | PyQt5==5.15.0
9 | PySide2==5.15.0
10 | sip==5.3.0
11 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background@2x.9.png
--------------------------------------------------------------------------------
/official/webenginewidgets/printme/data/data.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | index.html
4 | style.css
5 | icon.svg
6 |
7 |
8 |
--------------------------------------------------------------------------------
/official/charts/boxplotchart/boxplotdata.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | acme_data.txt
4 | boxwhisk_data.txt
5 |
6 |
7 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/applicationwindow-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/applicationwindow-background.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background@2x.9.png
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/data/spellchecker.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | index.html
4 | style.css
5 | icon.svg
6 |
7 |
8 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Controls]
2 | Style=Imagine
3 |
4 | [Imagine]
5 | Path=:/imagine-assets
6 |
7 | [Imagine\Palette]
8 | Text=#6affcd
9 | ButtonText=#6affcd
10 | WindowText=#6affcd
11 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/qtquickcontrols2.conf:
--------------------------------------------------------------------------------
1 | [Controls]
2 | Style=Imagine
3 |
4 | [Imagine]
5 | Path=:/imagine-assets
6 |
7 | [Imagine\Palette]
8 | Text=#6b7b89
9 | ButtonText=#6b7b89
10 | WindowText=#6b7b89
11 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | images/album-cover.jpg
4 | qtquickcontrols2.conf
5 | musicplayer.qml
6 |
7 |
8 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered@2x.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled@2x.9.png
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered@2x.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyllanesc/QtExamples/HEAD/official/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered@2x.9.png
--------------------------------------------------------------------------------
/official/sql/drilldown/drilldown.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | images/qt-logo.png
4 | images/qt-quick.png
5 | images/qt-creator.png
6 | images/qt-project.png
7 |
8 |
9 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/qml/qml.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | FeatureButton.qml
4 | GlowingLabel.qml
5 | CustomGlow.qml
6 | automotive.qml
7 |
8 |
9 |
--------------------------------------------------------------------------------
/official/webenginewidgets/markdowneditor/resources/markdowneditor.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | default.md
4 | index.html
5 | 3rdparty/markdown.css
6 | 3rdparty/marked.js
7 |
8 |
9 |
--------------------------------------------------------------------------------
/official/quickcontrols2/swipetoremove/fonts/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Font license info
2 |
3 |
4 | ## Elusive
5 |
6 | Copyright (C) 2013 by Aristeides Stathopoulos
7 |
8 | Author: Aristeides Stathopoulos
9 | License: SIL (http://scripts.sil.org/OFL)
10 | Homepage: http://aristeides.com/
11 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/en/README.txt:
--------------------------------------------------------------------------------
1 | This is dummy english dictionary which knows only following words:
2 |
3 | * I
4 | * you
5 | * he
6 | * she
7 | * it
8 | * we
9 | * they
10 | * love
11 | * loves
12 | * qt
13 |
14 | Also each of words above can start with 'q' for example:
15 |
16 | * qI
17 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/automotive/icons/automotive/index.theme:
--------------------------------------------------------------------------------
1 | [Icon Theme]
2 | Name=Automotive
3 | Comment=Icon theme for the Qt Quick Controls 2 Automotive Imagine Style Example
4 |
5 | Directories=44x44,44x44@2
6 |
7 | [44x44]
8 | Size=44
9 | Type=Fixed
10 |
11 | [44x44@2]
12 | Size=44
13 | Scale=2
14 | Type=Fixed
15 |
--------------------------------------------------------------------------------
/official/quickcontrols2/imagine/musicplayer/icons/musicplayer/index.theme:
--------------------------------------------------------------------------------
1 | [Icon Theme]
2 | Name=Music Player
3 | Comment=Icon theme for the Qt Quick Controls 2 Music Player Imagine Style Example
4 |
5 | Directories=32x32,32x32@2
6 |
7 | [32x32]
8 | Size=32
9 | Type=Fixed
10 |
11 | [32x32@2]
12 | Size=32
13 | Scale=2
14 | Type=Fixed
15 |
--------------------------------------------------------------------------------
/official/charts/callout/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from view import View
5 |
6 |
7 | def main():
8 | import sys
9 |
10 | app = QApplication(sys.argv)
11 |
12 | w = View()
13 | w.show()
14 |
15 | sys.exit(app.exec_())
16 |
17 |
18 | if __name__ == "__main__":
19 | main()
20 |
--------------------------------------------------------------------------------
/official/corelib/ipc/sharedmemory/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from dialog import Dialog
5 |
6 |
7 | def main():
8 | import sys
9 |
10 | app = QApplication(sys.argv)
11 | dialog = Dialog()
12 | dialog.show()
13 | sys.exit(app.exec_())
14 |
15 |
16 | if __name__ == "__main__":
17 | main()
18 |
--------------------------------------------------------------------------------
/official/webenginewidgets/spellchecker/dict/de/README.txt:
--------------------------------------------------------------------------------
1 | This is dummy german dictionary which knows only following words:
2 |
3 | * ich
4 | * du
5 | * er
6 | * sie
7 | * es
8 | * wir
9 | * ihr
10 | * sie
11 | * Sie
12 | * liebe
13 | * liebst
14 | * liebt
15 | * lieben
16 | * liebt
17 | * qt
18 |
19 | Also each of words above can start with 'q' for example
20 | * qich
21 |
--------------------------------------------------------------------------------
/official/charts/barmodelmapper/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from PyQt5.QtWidgets import QApplication
3 |
4 | from tablewidget import TableWidget
5 |
6 |
7 | def main():
8 | import sys
9 |
10 | app = QApplication(sys.argv)
11 |
12 | w = TableWidget()
13 | w.show()
14 |
15 | sys.exit(app.exec_())
16 |
17 |
18 | if __name__ == "__main__":
19 | main()
20 |
--------------------------------------------------------------------------------
/official/webengine/lifecycle/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | WebBrowser.qml
4 | WebTab.qml
5 | WebTabBar.qml
6 | WebTabButton.qml
7 | WebTabStack.qml
8 | WebToolButton.qml
9 | qtquickcontrols2.conf
10 |
11 |
12 |
--------------------------------------------------------------------------------
/official/quickcontrols2/flatstyle/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | qtquickcontrols2.conf
4 | flatstyle.qml
5 | MainForm.ui.qml
6 | Flat/Button.qml
7 | Flat/CheckBox.qml
8 | Flat/Switch.qml
9 | imports/Theme/Theme.qml
10 | imports/Theme/qmldir
11 |
12 |
13 |
--------------------------------------------------------------------------------
/official/quickcontrols2/gallery/icons/gallery/index.theme:
--------------------------------------------------------------------------------
1 | [Icon Theme]
2 | Name=Gallery
3 | Comment=Qt Quick Controls 2 Gallery Example Icon Theme
4 |
5 | Directories=20x20,20x20@2,20x20@3,20x20@4
6 |
7 | [20x20]
8 | Size=20
9 | Type=Fixed
10 |
11 | [20x20@2]
12 | Size=20
13 | Scale=2
14 | Type=Fixed
15 |
16 | [20x20@3]
17 | Size=20
18 | Scale=3
19 | Type=Fixed
20 |
21 | [20x20@4]
22 | Size=20
23 | Scale=4
24 | Type=Fixed
25 |
--------------------------------------------------------------------------------
/official/embedded/lightmaps/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from mapzoom import MapZoom
5 |
6 |
7 | def main():
8 | import sys
9 |
10 | app = QApplication(sys.argv)
11 | app.setApplicationName("LightMaps")
12 |
13 | w = MapZoom()
14 | w.resize(600, 450)
15 | w.show()
16 |
17 | sys.exit(app.exec_())
18 |
19 |
20 | if __name__ == "__main__":
21 | main()
22 |
--------------------------------------------------------------------------------
/official/embedded/styleexample/styleexample.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | files/add.png
4 | files/blue.qss
5 | files/khaki.qss
6 | files/nostyle.qss
7 | files/transparent.qss
8 | files/application.qss
9 | files/nature_1.jpg
10 | files/remove.png
11 |
12 |
13 |
--------------------------------------------------------------------------------
/official/websockets/sslechoserver/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | import sys
3 |
4 | from Qt.QtCore import QCoreApplication
5 |
6 | import securesocketclient_rc # noqa: F401
7 | from sslechoserver import SslEchoServer
8 |
9 |
10 | def main():
11 |
12 | app = QCoreApplication(sys.argv)
13 |
14 | server = SslEchoServer(1234) # noqa: F841
15 |
16 | sys.exit(app.exec_())
17 |
18 |
19 | if __name__ == "__main__":
20 | main()
21 |
--------------------------------------------------------------------------------
/official/positioning/logfilepositionsource/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from PyQt5.QtWidgets import QApplication
3 |
4 | from clientapplication import ClientApplication
5 |
6 | import logfile_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | app = QApplication(sys.argv)
13 |
14 | client = ClientApplication()
15 | client.show()
16 |
17 | sys.exit(app.exec_())
18 |
19 |
20 | if __name__ == "__main__":
21 | main()
22 |
--------------------------------------------------------------------------------
/official/sql/cachedtable/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from connection import createConnection
5 | from tableeditor import TableEditor
6 |
7 |
8 | def main():
9 | import sys
10 |
11 | app = QApplication(sys.argv)
12 | if not createConnection():
13 | sys.exit(-1)
14 |
15 | editor = TableEditor("person")
16 | editor.show()
17 | sys.exit(app.exec_())
18 |
19 |
20 | if __name__ == "__main__":
21 | main()
22 |
--------------------------------------------------------------------------------
/official/corelib/ipc/localfortuneclient/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtGui import QGuiApplication
3 | from Qt.QtWidgets import QApplication
4 |
5 | from client import Client
6 |
7 |
8 | def main():
9 | import sys
10 |
11 | app = QApplication(sys.argv)
12 | client = Client()
13 | QGuiApplication.setApplicationDisplayName(client.tr("Local Fortune Client"))
14 | client.show()
15 | sys.exit(app.exec_())
16 |
17 |
18 | if __name__ == "__main__":
19 | main()
20 |
--------------------------------------------------------------------------------
/official/corelib/ipc/localfortuneserver/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtGui import QGuiApplication
3 | from Qt.QtWidgets import QApplication
4 |
5 | from server import Server
6 |
7 |
8 | def main():
9 | import sys
10 |
11 | app = QApplication(sys.argv)
12 | server = Server()
13 | QGuiApplication.setApplicationDisplayName(server.tr("Local Fortune Server"))
14 | server.show()
15 | sys.exit(app.exec_())
16 |
17 |
18 | if __name__ == "__main__":
19 | main()
20 |
--------------------------------------------------------------------------------
/official/demos/calqlatr/calqlatr.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | calqlatr.qml
4 | content/Button.qml
5 | content/calculator.js
6 | content/Display.qml
7 | content/NumberPad.qml
8 | content/images/paper-edge-left.png
9 | content/images/paper-edge-right.png
10 | content/images/paper-grip.png
11 |
12 |
13 |
--------------------------------------------------------------------------------
/official/sql/drilldown/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from connection import createConnection
5 | from view import View
6 | import drilldown_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | app = QApplication(sys.argv)
13 |
14 | if not createConnection():
15 | sys.exit(-1)
16 |
17 | view = View("items", "images")
18 | view.show()
19 |
20 | sys.exit(app.exec_())
21 |
22 |
23 | if __name__ == "__main__":
24 | main()
25 |
--------------------------------------------------------------------------------
/official/embedded/styleexample/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtWidgets import QApplication
3 |
4 | from stylewidget import StyleWidget
5 |
6 |
7 | def main():
8 | import sys
9 |
10 | app = QApplication(sys.argv)
11 |
12 | app.setApplicationName("style")
13 | app.setOrganizationName("QtProject")
14 | app.setOrganizationDomain("www.qt-project.org")
15 |
16 | widget = StyleWidget()
17 | widget.showFullScreen()
18 |
19 | sys.exit(app.exec_())
20 |
21 |
22 | if __name__ == "__main__":
23 | main()
24 |
--------------------------------------------------------------------------------
/official/demos/coffee/qt_attribution.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "Id": "coffeeexample-titillium",
4 | "Name": "Titillium Web Font",
5 | "QDocModule": "qtdoc",
6 | "QtUsage": "Used in the Coffee Maker example.",
7 | "QtParts": ["examples"],
8 | "Files": "TitilliumWeb-Regular.ttf",
9 |
10 | "License": "SIL Open Font License 1.1",
11 | "LicenseId": "OFL-1.1",
12 | "LicenseFile": "LICENSE.txt",
13 | "Copyright": "Copyright (c) 2009-2011 by Accademia di Belle Arti di Urbino and students of MA course of Visual design. Some rights reserved."
14 | }
15 | ]
16 |
--------------------------------------------------------------------------------
/official/webenginewidgets/markdowneditor/resources/default.md:
--------------------------------------------------------------------------------
1 | ## WebEngine Markdown Editor Example
2 |
3 | This example uses [QWebEngineView](http://doc.qt.io/qt-5/qwebengineview.html)
4 | to preview text written using the [Markdown](https://en.wikipedia.org/wiki/Markdown)
5 | syntax.
6 |
7 | ### Acknowledgments
8 |
9 | The conversion from Markdown to HTML is done with the help of the
10 | [marked JavaScript library](https://github.com/chjj/marked) by _Christopher Jeffrey_.
11 | The [style sheet](https://kevinburke.bitbucket.io/markdowncss/)
12 | was created by _Kevin Burke_.
13 |
--------------------------------------------------------------------------------
/official/demos/clocks/clocks.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | clocks.qml
4 | content/arrow.png
5 | content/background.png
6 | content/center.png
7 | content/clock-night.png
8 | content/clock.png
9 | content/Clock.qml
10 | content/hour.png
11 | content/minute.png
12 | content/quit.png
13 | content/second.png
14 |
15 |
16 |
--------------------------------------------------------------------------------
/official/quickcontrols2/flatstyle/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtQml import QQmlApplicationEngine
4 | from Qt.QtWidgets import QApplication
5 |
6 | import resources_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | app = QApplication(sys.argv)
14 |
15 | engine = QQmlApplicationEngine()
16 | engine.addImportPath(":/imports")
17 | engine.load(QUrl("qrc:/flatstyle.qml"))
18 |
19 | sys.exit(app.exec_())
20 |
21 |
22 | if __name__ == "__main__":
23 | main()
24 |
--------------------------------------------------------------------------------
/official/webengine/lifecycle/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQml import QQmlApplicationEngine
5 |
6 | import resources_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setOrganizationName("QtExamples")
13 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
14 | # QtWebEngine::initialize()
15 |
16 | app = QGuiApplication(sys.argv)
17 | engine = QQmlApplicationEngine()
18 | engine.load(QUrl("qrc:/WebBrowser.qml"))
19 |
20 | sys.exit(app.exec_())
21 |
22 |
23 | if __name__ == "__main__":
24 | main()
25 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: eyllanesc
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: https://www.paypal.me/eyllanesc
13 |
--------------------------------------------------------------------------------
/official/quickcontrols2/swipetoremove/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import Qt, QUrl
3 | from Qt.QtGui import QFontDatabase, QGuiApplication
4 | from Qt.QtQml import QQmlApplicationEngine
5 |
6 | import resources_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QGuiApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | app = QGuiApplication(sys.argv)
14 |
15 | QFontDatabase.addApplicationFont(":/fonts/fontello.ttf")
16 |
17 | engine = QQmlApplicationEngine()
18 | engine.load(QUrl("qrc:/swipetoremove.qml"))
19 | if not engine.rootObjects():
20 | sys.exit(-1)
21 |
22 | sys.exit(app.exec_())
23 |
24 |
25 | if __name__ == "__main__":
26 | main()
27 |
--------------------------------------------------------------------------------
/official/webengine/minimal/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQml import QQmlApplicationEngine
5 |
6 | import qml_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setOrganizationName("QtExamples")
13 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
14 | QCoreApplication.setAttribute(Qt.AA_ShareOpenGLContexts)
15 | # QtWebEngine::initialize()
16 | app = QGuiApplication(sys.argv)
17 |
18 | engine = QQmlApplicationEngine()
19 | engine.load(QUrl("qrc:/main.qml"))
20 |
21 | sys.exit(app.exec_())
22 |
23 |
24 | if __name__ == "__main__":
25 | main()
26 |
--------------------------------------------------------------------------------
/others/qmlvideoviewer/video/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | import os.path
3 |
4 | from PySide2.QtQml import qmlRegisterType
5 |
6 | from .filters import _filters
7 | from .sources import _sources
8 |
9 |
10 | def register_types(uri="qutevideo", version_mayor=1, version_minor=0):
11 | for cls, name in _filters | _sources:
12 | qmlRegisterType(cls, uri, version_mayor, version_minor, name)
13 |
14 |
15 | def _fix_qt_plugin_path():
16 | import PySide2
17 |
18 | dirname = os.path.dirname(PySide2.__file__)
19 | plugin_path = os.path.join(dirname, "plugins", "platforms")
20 | os.environ["QT_QPA_PLATFORM_PLUGIN_PATH"] = plugin_path
21 |
22 |
23 | _fix_qt_plugin_path()
24 |
25 | del _fix_qt_plugin_path
26 |
--------------------------------------------------------------------------------
/official/demos/coffee/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQml import QQmlApplicationEngine
5 |
6 | import qml_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | QCoreApplication.setOrganizationName("QtExamples")
14 |
15 | app = QGuiApplication(sys.argv)
16 |
17 | engine = QQmlApplicationEngine()
18 | engine.addImportPath(":/imports")
19 | engine.load(QUrl("qrc:/main.qml"))
20 |
21 | if not engine.rootObjects():
22 | sys.exit(-1)
23 |
24 | sys.exit(app.exec_())
25 |
26 |
27 | if __name__ == "__main__":
28 | main()
29 |
--------------------------------------------------------------------------------
/others/matplotlib/Subplot.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # https://matplotlib.org/3.2.1/tutorials/introductory/sample_plots.html#subplot-example
3 |
4 | import sys
5 |
6 | import numpy as np
7 | from matplotlib.backends.backend_qt5agg import FigureCanvas
8 | from matplotlib.figure import Figure
9 | from PyQt5.QtWidgets import QApplication
10 |
11 | app = QApplication(sys.argv)
12 |
13 | fig = Figure(figsize=(5, 5))
14 | canvas = FigureCanvas(fig)
15 | canvas.resize(640, 480)
16 | canvas.show()
17 |
18 | np.random.seed(19680801)
19 | data = np.random.randn(2, 100)
20 |
21 | axs = fig.subplots(2, 2)
22 | axs[0, 0].hist(data[0])
23 | axs[1, 0].scatter(data[0], data[1])
24 | axs[0, 1].plot(data[0], data[1])
25 | axs[1, 1].hist2d(data[0], data[1])
26 |
27 | sys.exit(app.exec_())
28 |
--------------------------------------------------------------------------------
/others/matplotlib/widgets/cursor.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # https://matplotlib.org/examples/widgets/cursor.html
3 |
4 | import sys
5 |
6 | from PyQt5.QtWidgets import QApplication
7 |
8 | import numpy as np
9 | from matplotlib.backends.backend_qt5agg import FigureCanvas
10 | from matplotlib.figure import Figure
11 | from matplotlib.widgets import Cursor
12 |
13 | app = QApplication(sys.argv)
14 |
15 | figure = Figure(figsize=(8, 6))
16 | canvas = FigureCanvas(figure)
17 | canvas.resize(640, 480)
18 | canvas.show()
19 |
20 | ax = figure.add_subplot(111, facecolor="#FFFFCC")
21 |
22 | x, y = 4 * (np.random.rand(2, 100) - 0.5)
23 | ax.plot(x, y, "o")
24 | ax.set_xlim(-2, 2)
25 | ax.set_ylim(-2, 2)
26 |
27 | cursor = Cursor(ax, useblit=True, color="red", linewidth=2)
28 |
29 | sys.exit(app.exec_())
30 |
--------------------------------------------------------------------------------
/official/demos/clocks/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQuick import QQuickView
5 |
6 | import clocks_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | QCoreApplication.setOrganizationName("QtExamples")
14 |
15 | app = QGuiApplication(sys.argv)
16 |
17 | view = QQuickView()
18 | view.engine().quit.connect(app.quit)
19 | view.setSource(QUrl("qrc:/demos/clocks/clocks.qml"))
20 | if view.status() == QQuickView.Error:
21 | sys.exit(-1)
22 | view.setResizeMode(QQuickView.SizeRootObjectToView)
23 | view.show()
24 |
25 | sys.exit(app.exec_())
26 |
27 |
28 | if __name__ == "__main__":
29 | main()
30 |
--------------------------------------------------------------------------------
/official/demos/maroon/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQuick import QQuickView
5 |
6 | import maroon_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | QCoreApplication.setOrganizationName("QtExamples")
14 |
15 | app = QGuiApplication(sys.argv)
16 |
17 | view = QQuickView()
18 | view.engine().quit.connect(app.quit)
19 | view.setSource(QUrl("qrc:/demos/maroon/maroon.qml"))
20 | if view.status() == QQuickView.Error:
21 | sys.exit(-1)
22 | view.setResizeMode(QQuickView.SizeRootObjectToView)
23 | view.show()
24 |
25 | sys.exit(app.exec_())
26 |
27 |
28 | if __name__ == "__main__":
29 | main()
30 |
--------------------------------------------------------------------------------
/official/demos/calqlatr/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQuick import QQuickView
5 |
6 | import calqlatr_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import sys
11 |
12 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
13 | QCoreApplication.setOrganizationName("QtExamples")
14 |
15 | app = QGuiApplication(sys.argv)
16 |
17 | view = QQuickView()
18 | view.engine().quit.connect(app.quit)
19 | view.setSource(QUrl("qrc:/demos/calqlatr/calqlatr.qml"))
20 | if view.status() == QQuickView.Error:
21 | sys.exit(-1)
22 | view.setResizeMode(QQuickView.SizeRootObjectToView)
23 | view.show()
24 |
25 | sys.exit(app.exec_())
26 |
27 |
28 | if __name__ == "__main__":
29 | main()
30 |
--------------------------------------------------------------------------------
/official/webenginewidgets/markdowneditor/resources/3rdparty/MARKDOWN-LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright 2011 Kevin Burke unless otherwise noted.
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
15 | Some content is copyrighted by Twitter, Inc., and also released under an
16 | Apache License; these sections are noted in the source.
17 |
--------------------------------------------------------------------------------
/official/positioning/logfilepositionsource/clientapplication.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from PyQt5.QtWidgets import QMainWindow, QTextEdit
3 |
4 | from logfilepositionsource import LogFilePositionSource
5 |
6 |
7 | class ClientApplication(QMainWindow):
8 | def __init__(self, parent=None):
9 | super().__init__(parent)
10 | self.textEdit = QTextEdit()
11 | self.setCentralWidget(self.textEdit)
12 |
13 | source = LogFilePositionSource(self)
14 | source.positionUpdated.connect(self.positionUpdated)
15 | source.startUpdates()
16 |
17 | def positionUpdated(self, info):
18 | self.textEdit.append(
19 | "Position updated: Date/time = {}, Coordinate = {}".format(
20 | info.timestamp().toString(), info.coordinate().toString()
21 | )
22 | )
23 |
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/resources/pages/assets/3rdparty/MARKDOWN-LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright 2011 Kevin Burke unless otherwise noted.
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
15 | Some content is copyrighted by Twitter, Inc., and also released under an
16 | Apache License; these sections are noted in the source.
17 |
--------------------------------------------------------------------------------
/others/matplotlib/simple_plot.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # https://matplotlib.org/3.2.1/gallery/lines_bars_and_markers/simple_plot.html
3 |
4 | import sys
5 |
6 | import numpy as np
7 | from matplotlib.backends.backend_qt5agg import FigureCanvas
8 | from matplotlib.figure import Figure
9 | from PyQt5.QtWidgets import QApplication
10 |
11 | app = QApplication(sys.argv)
12 |
13 | fig = Figure(figsize=(8, 6))
14 | canvas = FigureCanvas(fig)
15 | canvas.resize(640, 480)
16 | canvas.show()
17 |
18 |
19 | # Data for plotting
20 | t = np.arange(0.0, 2.0, 0.01)
21 | s = 1 + np.sin(2 * np.pi * t)
22 |
23 | ax = fig.subplots()
24 | ax.plot(t, s)
25 |
26 | ax.set(
27 | xlabel="time (s)", ylabel="voltage (mV)", title="About as simple as it gets, folks"
28 | )
29 | ax.grid()
30 |
31 | fig.savefig("test.png")
32 |
33 | sys.exit(app.exec_())
34 |
--------------------------------------------------------------------------------
/official/webengine/recipebrowser/main.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from Qt.QtCore import QCoreApplication, Qt, QUrl
3 | from Qt.QtGui import QGuiApplication
4 | from Qt.QtQml import QQmlApplicationEngine
5 |
6 | import resources_rc # noqa: F401
7 |
8 |
9 | def main():
10 | import os
11 | import sys
12 |
13 | QCoreApplication.setOrganizationName("QtExamples")
14 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
15 | app = QGuiApplication(sys.argv)
16 |
17 | os.environ["QT_QUICK_CONTROLS_STYLE"] = "Material"
18 |
19 | engine = QQmlApplicationEngine()
20 |
21 | isEmbedded = False
22 |
23 | engine.rootContext().setContextProperty("isEmbedded", isEmbedded)
24 |
25 | engine.load(QUrl("qrc:/qml/main.qml"))
26 |
27 | sys.exit(app.exec_())
28 |
29 |
30 | if __name__ == "__main__":
31 | main()
32 |
--------------------------------------------------------------------------------
/others/matplotlib/widgets/multicursor.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # https://matplotlib.org/examples/widgets/multicursor.html
3 |
4 | import sys
5 |
6 | import numpy as np
7 | from matplotlib.backends.backend_qt5agg import FigureCanvas
8 | from matplotlib.figure import Figure
9 | from matplotlib.widgets import MultiCursor
10 | from PyQt5.QtWidgets import QApplication
11 |
12 | app = QApplication(sys.argv)
13 |
14 | fig = Figure(figsize=(8, 6))
15 | canvas = FigureCanvas(fig)
16 | canvas.resize(640, 480)
17 | canvas.show()
18 |
19 | t = np.arange(0.0, 2.0, 0.01)
20 | s1 = np.sin(2 * np.pi * t)
21 | s2 = np.sin(4 * np.pi * t)
22 |
23 | ax1 = fig.add_subplot(211)
24 | ax1.plot(t, s1)
25 |
26 |
27 | ax2 = fig.add_subplot(212, sharex=ax1)
28 | ax2.plot(t, s2)
29 |
30 | multi = MultiCursor(fig.canvas, (ax1, ax2), color="r", lw=1)
31 |
32 | sys.exit(app.exec_())
33 |
--------------------------------------------------------------------------------
/official/webenginewidgets/markdowneditor/resources/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/official/webenginewidgets/printme/data/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PrintMe
6 |
7 |
12 |
13 |
14 |