├── .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 | ![ScreenShot](screenshot.png) 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 |
15 | 16 |
17 |

Hello Paper World!

18 |

Press Ctrl+p to print with print preview

19 |

Press Ctrl+Shift+p to print without print preview

20 |

Click the button to print using JavaScript

21 |

Print Now

22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /official/embedded/styleexample/files/blue.qss: -------------------------------------------------------------------------------- 1 | * 2 | { 3 | color: beige; 4 | } 5 | 6 | QLabel, QAbstractButton 7 | { 8 | font: bold; 9 | color: yellow; 10 | } 11 | 12 | QFrame 13 | { 14 | background-color: rgba(96,96,255,60%); 15 | border-color: rgb(32,32,196); 16 | border-width: 3px; 17 | border-style: solid; 18 | border-radius: 5; 19 | padding: 3px; 20 | } 21 | 22 | QAbstractButton 23 | { 24 | background: qlineargradient(x1:0, y1:0, x2:0, y2:1, 25 | stop:0 lightblue, stop:0.5 darkblue); 26 | border-width: 3px; 27 | border-color: darkblue; 28 | border-style: solid; 29 | border-radius: 5; 30 | padding: 3px; 31 | } 32 | 33 | QAbstractButton:pressed 34 | { 35 | background: qlineargradient(x1:0, y1:0, x2:0, y2:1, 36 | stop:0.5 darkblue, stop:1 lightblue); 37 | border-color: beige; 38 | } 39 | -------------------------------------------------------------------------------- /others/matplotlib/polar_demo.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/pie_and_polar_charts/polar_demo.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 | r = np.arange(0, 2, 0.01) 19 | theta = 2 * np.pi * r 20 | 21 | ax = fig.add_subplot(111, projection="polar") 22 | ax.plot(theta, r) 23 | ax.set_rmax(2) 24 | ax.set_rticks([0.5, 1, 1.5, 2]) # Less radial ticks 25 | ax.set_rlabel_position(-22.5) # Move radial labels away from plotted line 26 | ax.grid(True) 27 | 28 | ax.set_title("A line plot on a polar axis", va="bottom") 29 | 30 | sys.exit(app.exec_()) 31 | -------------------------------------------------------------------------------- /official/webengine/customdialogs/style.css: -------------------------------------------------------------------------------- 1 | .div { 2 | padding:8px 4px; 3 | border: 5px solid #188BD0; 4 | width: 280px; 5 | font-family: sans-serif; 6 | font-size:10pt; 7 | } 8 | .link { 9 | text-decoration: none; 10 | color: #888888; 11 | } 12 | .button { 13 | background: -webkit-linear-gradient(top,#25A6E2 0%,#188BD0 100%); 14 | padding:8px 13px; 15 | color:#fff; 16 | font-family: sans-serif; 17 | font-size:17px; 18 | -webkit-border-radius:5px; 19 | border:1px solid #1A87FF; 20 | width: 300px; 21 | } 22 | .button:focus { 23 | outline: none; 24 | } 25 | .button:active { 26 | background: -webkit-linear-gradient(top,#25A6E2 0%,#188BD0 70%); 27 | } 28 | .input { 29 | padding:8px 4px; 30 | border: 5px solid #188BD0; 31 | width: 280px; 32 | font-family: sans-serif; 33 | font-size:10pt; 34 | } 35 | .input:focus { 36 | outline: none; 37 | } 38 | -------------------------------------------------------------------------------- /official/webenginewidgets/minimal/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtCore import QCoreApplication, Qt, QUrl 3 | from Qt.QtWebEngineWidgets import QWebEngineView 4 | from Qt.QtWidgets import QApplication 5 | 6 | 7 | def commandLineUrlArgument() -> QUrl: 8 | args = QCoreApplication.arguments() 9 | for arg in args[1:]: 10 | if not arg.startswith("_"): 11 | return QUrl.fromUserInput(arg) 12 | 13 | return QUrl("https://www.qt.io") 14 | 15 | 16 | def main() -> None: 17 | import sys 18 | 19 | QCoreApplication.setOrganizationName("QtExamples") 20 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling) 21 | app = QApplication(sys.argv) 22 | 23 | view = QWebEngineView() 24 | view.setUrl(commandLineUrlArgument()) 25 | view.resize(1024, 750) 26 | view.show() 27 | 28 | sys.exit(app.exec_()) 29 | 30 | 31 | if __name__ == "__main__": 32 | main() 33 | -------------------------------------------------------------------------------- /others/matplotlib/pie_features.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/pie_and_polar_charts/pie_features.html 3 | 4 | import sys 5 | 6 | from matplotlib.backends.backend_qt5agg import FigureCanvas 7 | from matplotlib.figure import Figure 8 | from PyQt5.QtWidgets import QApplication 9 | 10 | app = QApplication(sys.argv) 11 | 12 | fig = Figure(figsize=(8, 6)) 13 | canvas = FigureCanvas(fig) 14 | canvas.resize(640, 480) 15 | canvas.show() 16 | 17 | # Pie chart, where the slices will be ordered and plotted counter-clockwise: 18 | labels = "Frogs", "Hogs", "Dogs", "Logs" 19 | sizes = [15, 30, 45, 10] 20 | explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs') 21 | 22 | ax1 = fig.subplots() 23 | ax1.pie( 24 | sizes, explode=explode, labels=labels, autopct="%1.1f%%", shadow=True, startangle=90 25 | ) 26 | ax1.axis("equal") # Equal aspect ratio ensures that pie is drawn as a circle. 27 | 28 | sys.exit(app.exec_()) 29 | -------------------------------------------------------------------------------- /others/matplotlib/subplot.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/subplots_axes_and_figures/subplot.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 | x1 = np.linspace(0.0, 5.0) 20 | x2 = np.linspace(0.0, 2.0) 21 | 22 | y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) 23 | y2 = np.cos(2 * np.pi * x2) 24 | 25 | ax1 = fig.add_subplot(2, 1, 1) 26 | ax1.plot(x1, y1, "o-") 27 | ax1.set_title("A tale of 2 subplots") 28 | ax1.set_ylabel("Damped oscillation") 29 | 30 | ax2 = fig.add_subplot(2, 1, 2) 31 | ax2.plot(x2, y2, ".-") 32 | ax2.set_xlabel("time (s)") 33 | ax2.set_ylabel("Undamped") 34 | 35 | sys.exit(app.exec_()) 36 | -------------------------------------------------------------------------------- /official/quickcontrols2/imagine/musicplayer/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtCore import Qt, QUrl 3 | from Qt.QtGui import QGuiApplication, QIcon 4 | from Qt.QtQml import QQmlApplicationEngine 5 | 6 | import icons_rc # noqa: F401 7 | import imagine_assets_rc # noqa: F401 8 | import resources_rc # noqa: F401 9 | 10 | 11 | def main(): 12 | import sys 13 | 14 | QGuiApplication.setApplicationName("Music Player") 15 | QGuiApplication.setOrganizationName("QtProject") 16 | QGuiApplication.setAttribute(Qt.AA_EnableHighDpiScaling) 17 | QGuiApplication.setAttribute(Qt.AA_UseHighDpiPixmaps) 18 | 19 | app = QGuiApplication(sys.argv) 20 | 21 | QIcon.setThemeName("musicplayer") 22 | 23 | engine = QQmlApplicationEngine() 24 | engine.load(QUrl("qrc:/musicplayer.qml")) 25 | if not engine.rootObjects(): 26 | sys.exit(-1) 27 | 28 | sys.exit(app.exec_()) 29 | 30 | 31 | if __name__ == "__main__": 32 | main() 33 | -------------------------------------------------------------------------------- /official/charts/candlestickchart/candlestickdatareader.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtChart import QCandlestickSet 3 | from Qt.QtCore import QTextStream 4 | 5 | 6 | class CandlestickDataReader(QTextStream): 7 | def __init__(self, device): 8 | super().__init__(device) 9 | 10 | def readFile(self, device): 11 | self.setDevice(device) 12 | 13 | def readCandlestickSet(self): 14 | line = self.readLine() 15 | if line.startswith("#") or not line: 16 | return 17 | 18 | strList = line.split(" ") 19 | if len(strList) != 5: 20 | return 21 | 22 | timestamp, _open, high, low, close = [float(v) for v in strList] 23 | 24 | candlestickSet = QCandlestickSet(timestamp) 25 | candlestickSet.setOpen(_open) 26 | candlestickSet.setHigh(high) 27 | candlestickSet.setLow(low) 28 | candlestickSet.setClose(close) 29 | 30 | return candlestickSet 31 | -------------------------------------------------------------------------------- /others/qmlvideoviewer/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | import os.path 3 | import sys 4 | 5 | 6 | from PySide2.QtCore import QCoreApplication, Qt, QUrl 7 | from PySide2.QtGui import QGuiApplication 8 | from PySide2.QtQml import QQmlApplicationEngine 9 | 10 | from video import register_types 11 | 12 | 13 | register_types() 14 | CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) 15 | 16 | 17 | def main(): 18 | app = QGuiApplication(sys.argv) 19 | 20 | engine = QQmlApplicationEngine() 21 | 22 | filename = os.path.join(CURRENT_DIR, "qml", "main.qml") 23 | url = QUrl.fromLocalFile(filename) 24 | 25 | def handle_object_created(obj, objUrl): 26 | if not obj and url == objUrl: 27 | QCoreApplication.exit(-1) 28 | 29 | engine.objectCreated.connect(handle_object_created, Qt.QueuedConnection) 30 | 31 | engine.load(url) 32 | 33 | ret = app.exec_() 34 | sys.exit(ret) 35 | 36 | 37 | if __name__ == "__main__": 38 | main() 39 | -------------------------------------------------------------------------------- /official/quickcontrols2/imagine/automotive/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtCore import Qt, QUrl 3 | from Qt.QtGui import QGuiApplication, QIcon 4 | from Qt.QtQml import QQmlApplicationEngine 5 | 6 | import icons_rc # noqa: F401 7 | import imagine_assets_rc # noqa: F401 8 | import qml_rc # noqa: F401 9 | import resources_rc # noqa: F401 10 | 11 | 12 | def main(): 13 | import sys 14 | 15 | QGuiApplication.setApplicationName("Automotive") 16 | QGuiApplication.setOrganizationName("QtProject") 17 | QGuiApplication.setAttribute(Qt.AA_EnableHighDpiScaling) 18 | QGuiApplication.setAttribute(Qt.AA_UseHighDpiPixmaps) 19 | 20 | app = QGuiApplication(sys.argv) 21 | 22 | QIcon.setThemeName("automotive") 23 | 24 | engine = QQmlApplicationEngine() 25 | engine.load(QUrl("qrc:/qml/automotive.qml")) 26 | if not engine.rootObjects(): 27 | sys.exit(-1) 28 | 29 | sys.exit(app.exec_()) 30 | 31 | 32 | if __name__ == "__main__": 33 | main() 34 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-example.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Request Example 3 | about: Ask for a custom example 4 | title: "[Example]" 5 | labels: request for example 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the custom example** 11 | 12 | Clearly indicate the custom example by stating the behavior in detail. 13 | 14 | **Images** 15 | 16 | If applicable, add images that describe what you want to get. 17 | 18 | **Environment:** 19 | - OS 20 | - Python version: `python --version` 21 | - PyQt5/PySide2 version: 22 | 23 | ##### PyQt5 24 | ```console 25 | python -c "from PyQt5.QtCore import PYQT_VERSION_STR; print('PyQt5 version', PYQT_VERSION_STR)" 26 | python -c "from PyQt5.QtCore import QT_VERSION_STR; print('Qt version', QT_VERSION_STR)" 27 | ``` 28 | ##### PySide2 29 | ```console 30 | python -c "from PySide2 import __version__; print('PySide2 version', __version__)" 31 | python -c "from PySide2.QtCore import qVersion; print('Qt version', qVersion())" 32 | ``` 33 | -------------------------------------------------------------------------------- /official/webengine/customdialogs/customdialogs.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | forms/AuthenticationForm.ui.qml 4 | forms/Authentication.qml 5 | forms/Button.qml 6 | forms/ColorCell.qml 7 | forms/ColorPickerForm.ui.qml 8 | forms/ColorPicker.qml 9 | forms/FilePickerForm.ui.qml 10 | forms/FilePicker.qml 11 | forms/FileRow.qml 12 | forms/JavaScriptForm.ui.qml 13 | forms/JavaScript.qml 14 | forms/MenuForm.ui.qml 15 | forms/Menu.qml 16 | icon.svg 17 | index.html 18 | main.qml 19 | MessageRectangle.qml 20 | style.css 21 | SwitchButton.qml 22 | WebView.qml 23 | 24 | 25 | -------------------------------------------------------------------------------- /others/matplotlib/tex_demo.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/text_labels_and_annotations/tex_demo.html 3 | 4 | import sys 5 | 6 | import matplotlib 7 | import numpy as np 8 | from matplotlib.backends.backend_qt5agg import FigureCanvas 9 | from matplotlib.figure import Figure 10 | from PyQt5.QtWidgets import QApplication 11 | 12 | matplotlib.rcParams["text.usetex"] = True 13 | 14 | app = QApplication(sys.argv) 15 | 16 | fig = Figure(figsize=(6, 4), tight_layout=True) 17 | canvas = FigureCanvas(fig) 18 | canvas.resize(640, 480) 19 | canvas.show() 20 | 21 | t = np.linspace(0.0, 1.0, 100) 22 | s = np.cos(4 * np.pi * t) + 2 23 | 24 | ax = fig.subplots() 25 | ax.plot(t, s) 26 | 27 | ax.set_xlabel(r"\textbf{time (s)}") 28 | ax.set_ylabel("\\textit{Velocity (\N{DEGREE SIGN}/sec)}", fontsize=16) 29 | ax.set_title( 30 | r"\TeX\ is Number $\displaystyle\sum_{n=1}^\infty" r"\frac{-e^{i\pi}}{2^n}$!", 31 | fontsize=16, 32 | color="r", 33 | ) 34 | 35 | sys.exit(app.exec_()) 36 | -------------------------------------------------------------------------------- /others/matplotlib/legend.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/text_labels_and_annotations/legend.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 | # Make some fake data. 19 | a = b = np.arange(0, 3, 0.02) 20 | c = np.exp(a) 21 | d = c[::-1] 22 | 23 | # Create plots with pre-defined labels. 24 | ax = fig.subplots() 25 | ax.plot(a, c, "k--", label="Model length") 26 | ax.plot(a, d, "k:", label="Data length") 27 | ax.plot(a, c + d, "k", label="Total message length") 28 | 29 | legend = ax.legend(loc="upper center", shadow=True, fontsize="x-large") 30 | 31 | # Put a nicer background color on the legend. 32 | legend.get_frame().set_facecolor("C0") 33 | 34 | sys.exit(app.exec_()) 35 | -------------------------------------------------------------------------------- /official/demos/photosurface/resources/photosurface.rc: -------------------------------------------------------------------------------- 1 | #include "winver.h" 2 | 3 | IDI_ICON1 ICON "photosurface.ico" 4 | 5 | VS_VERSION_INFO VERSIONINFO 6 | FILEVERSION 1,0,0,0 7 | PRODUCTVERSION 1,0,0,0 8 | FILEFLAGS 0x0L 9 | FILEFLAGSMASK 0x3fL 10 | FILEOS 0x00040004L 11 | FILETYPE 0x1L 12 | FILESUBTYPE 0x0L 13 | BEGIN 14 | BLOCK "StringFileInfo" 15 | BEGIN 16 | BLOCK "000004b0" 17 | BEGIN 18 | VALUE "CompanyName", "The Qt Company Ltd" 19 | VALUE "FileDescription", "Photo Surface Demo" 20 | VALUE "FileVersion", "1.0.0.0" 21 | VALUE "LegalCopyright", "Copyright (C) 2015 The Qt Company Ltd." 22 | VALUE "InternalName", "photosurface" 23 | VALUE "OriginalFilename", "photosurface.exe" 24 | VALUE "ProductName", "Photo Surface Demo" 25 | VALUE "ProductVersion", "1.0.0.0" 26 | END 27 | END 28 | BLOCK "VarFileInfo" 29 | BEGIN 30 | VALUE "Translation", 0x0, 1200 31 | END 32 | END 33 | -------------------------------------------------------------------------------- /official/webenginewidgets/cookiebrowser/3rdparty/qt_attribution.json: -------------------------------------------------------------------------------- 1 | { 2 | "Id": "cookiebrowser-tango", 3 | "Name": "Tango Icon Library", 4 | "QDocModule": "qtwebengine", 5 | "QtUsage": "Used in WebEngine Cookie Browser example.", 6 | 7 | "QtParts": [ "examples" ], 8 | "Description": "Selected icons from the Tango Icon Library", 9 | "Homepage": "http://tango.freedesktop.org/Tango_Icon_Library", 10 | "Version": "0.8.90", 11 | "DownloadLocation": "http://tango.freedesktop.org/releases/tango-icon-theme-0.8.90.tar.gz", 12 | "LicenseId": "DocumentRef-PublicDomain", 13 | "License": "Public Domain", 14 | "LicenseFile": "COPYING", 15 | "Copyright": "Ulisse Perusin 16 | Steven Garrity 17 | Lapo Calamandrei 18 | Ryan Collier 19 | Rodney Dawes 20 | Andreas Nilsson 21 | Tuomas Kuosmanen 22 | Garrett LeSage 23 | Jakub Steiner " 24 | } 25 | -------------------------------------------------------------------------------- /official/webenginewidgets/spellchecker/README.md: -------------------------------------------------------------------------------- 1 | ## GENERATE DICTIONARY 2 | 3 | [`qwebengine_convert_dict`](https://code.qt.io/cgit/qt/qtwebengine.git/tree/src/tools/qwebengine_convert_dict) is a tool to convert dic file to bdict that comes with QtWebEngine. 4 | 5 | Execute on console: 6 | 7 | ``` 8 | qwebengine_convert_dict /path/of/filename.dic /path/of/filename.bdic 9 | ``` 10 | In this case: 11 | ```console 12 | $ mkdir qtwebengine_dictionaries 13 | $ qwebengine_convert_dict dict/en/en-US.dic qtwebengine_dictionaries/en-US.bdic 14 | Reading dict/en/en-US.aff 15 | Reading dict/en/en-US.dic 16 | dict/en/en-US.dic_delta not found. 17 | Serializing... 18 | Verifying... 19 | Writing qtwebengine_dictionaries/en-US.bdic 20 | Success. Dictionary converted. 21 | $ qwebengine_convert_dict dict/de/de-DE.dic qtwebengine_dictionaries/de-DE.bdic 22 | Reading dict/de/de-DE.aff 23 | Reading dict/de/de-DE.dic 24 | dict/de/de-DE.dic_delta not found. 25 | Serializing... 26 | Verifying... 27 | Writing qtwebengine_dictionaries/de-DE.bdic 28 | Success. Dictionary converted. 29 | ``` 30 | -------------------------------------------------------------------------------- /official/webengine/recipebrowser/resources/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | qml/main.qml 4 | qml/RecipeList.qml 5 | 6 | pages/pizza.html 7 | pages/burger.html 8 | pages/steak.html 9 | pages/soup.html 10 | pages/pasta.html 11 | pages/skewers.html 12 | pages/cupcakes.html 13 | 14 | pages/assets/3rdparty/marked.js 15 | pages/assets/3rdparty/markdown.css 16 | pages/assets/custom.css 17 | pages/assets/custom.js 18 | 19 | pages/images/burger.jpg 20 | pages/images/pizza.jpg 21 | pages/images/steak.jpg 22 | pages/images/soup.jpg 23 | pages/images/pasta.jpg 24 | pages/images/skewers.jpg 25 | pages/images/cupcakes.jpg 26 | 27 | 28 | -------------------------------------------------------------------------------- /others/matplotlib/ellipse_demo.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/shapes_and_collections/ellipse_demo.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.patches import Ellipse 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 | NUM = 250 20 | 21 | ells = [ 22 | Ellipse( 23 | xy=np.random.rand(2) * 10, 24 | width=np.random.rand(), 25 | height=np.random.rand(), 26 | angle=np.random.rand() * 360, 27 | ) 28 | for i in range(NUM) 29 | ] 30 | 31 | ax = fig.subplots(subplot_kw={"aspect": "equal"}) 32 | for e in ells: 33 | ax.add_artist(e) 34 | e.set_clip_box(ax.bbox) 35 | e.set_alpha(np.random.rand()) 36 | e.set_facecolor(np.random.rand(3)) 37 | 38 | ax.set_xlim(0, 10) 39 | ax.set_ylim(0, 10) 40 | 41 | sys.exit(app.exec_()) 42 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | exclude: '\_(ui|rc).py$' 2 | repos: 3 | - repo: https://github.com/psf/black 4 | rev: 20.8b1 5 | hooks: 6 | - id: black 7 | args: [--safe, --quiet] 8 | language_version: python3 9 | - repo: https://github.com/asottile/blacken-docs 10 | rev: v1.10.0 11 | hooks: 12 | - id: blacken-docs 13 | additional_dependencies: [black==20.8b1] 14 | language_version: python3 15 | - repo: https://github.com/pre-commit/pre-commit-hooks 16 | rev: v3.4.0 17 | hooks: 18 | - id: trailing-whitespace 19 | - id: end-of-file-fixer 20 | - id: check-yaml 21 | - id: debug-statements 22 | - id: requirements-txt-fixer 23 | - id: fix-encoding-pragma 24 | - repo: https://github.com/asottile/pyupgrade 25 | rev: v2.10.0 26 | hooks: 27 | - id: pyupgrade 28 | - repo: https://gitlab.com/pycqa/flake8 29 | rev: 3.8.4 30 | hooks: 31 | - id: flake8 32 | - repo: https://github.com/asottile/yesqa 33 | rev: v1.2.2 34 | hooks: 35 | - id: yesqa 36 | additional_dependencies: [flake8==3.8.4] 37 | -------------------------------------------------------------------------------- /official/charts/candlestickchart/acme_data.txt: -------------------------------------------------------------------------------- 1 | # Acme Ltd Historical Data (July 2015) 2 | # timestamp, open, high, low, close 3 | 1435708800000 126.90 126.94 125.99 126.60 4 | 1435795200000 126.69 126.69 126.69 126.69 5 | 1436140800000 124.85 126.23 124.85 126.00 6 | 1436227200000 125.89 126.15 123.77 125.69 7 | 1436313600000 124.64 124.64 122.54 122.54 8 | 1436400000000 123.85 124.06 119.22 120.07 9 | 1436486400000 121.94 123.85 121.21 123.28 10 | 1436745600000 125.03 125.76 124.32 125.66 11 | 1436832000000 126.04 126.37 125.04 125.61 12 | 1436918400000 125.72 127.15 125.58 126.82 13 | 1437004800000 127.74 128.57 127.35 128.51 14 | 1437091200000 129.08 129.62 128.31 129.62 15 | 1437350400000 130.97 132.97 130.70 132.07 16 | 1437436800000 132.85 132.92 130.32 130.75 17 | 1437523200000 121.99 125.50 121.99 125.22 18 | 1437609600000 126.20 127.09 125.06 125.16 19 | 1437696000000 125.32 125.74 123.90 124.50 20 | 1437955200000 123.09 123.61 122.12 122.77 21 | 1438041600000 123.38 123.91 122.55 123.38 22 | 1438128000000 123.15 123.50 122.27 122.99 23 | 1438214400000 122.32 122.57 121.71 122.37 24 | 1438300800000 122.60 122.64 120.91 121.30 25 | -------------------------------------------------------------------------------- /official/websockets/sslechoserver/localhost.cert: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIC+zCCAeOgAwIBAgIJAP26rumH9qOkMA0GCSqGSIb3DQEBBQUAMBQxEjAQBgNV 3 | BAMMCWxvY2FsaG9zdDAeFw0xMzExMDYxNjU4NTRaFw0yMzExMDQxNjU4NTRaMBQx 4 | EjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC 5 | ggEBALgagHqEqWr4WH+MFBQE+BWZri5UUn/QPORN2pUB1lWMzeDCM5YMc/D1dhUG 6 | 7zg5I9QO5Ut1YcoVO25OAseddgVaIFXPNyEG2nUTz53xx3pyqp3WtQkYCRAQzI8K 7 | IFIzBSD+nJNl+8gBld7Fe+4d8bFCwfXspQBJ2RY8SQ6tjRFVKHN7haLsD+WV3AFg 8 | siWkCxeXxVLNI69cuLwV7bEsv6U1N1yNROvRpu4yJcaNnu36kJFbORPhNfy6qJGX 9 | i0A30dYdMoLhtCN3Qf/XwGyS84Rs2XXduNlBdUgbpluY2r2x3Gz32hIwsHHcPzX6 10 | O9nwVPQ8k29lfC8yPmAWA9vPiBUCAwEAAaNQME4wHQYDVR0OBBYEFJZESCN01tY3 11 | MgXxmqiUBNPxsgiKMB8GA1UdIwQYMBaAFJZESCN01tY3MgXxmqiUBNPxsgiKMAwG 12 | A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAHylCJYED9PqLB9FE4A0CRfy 13 | BdxIqOK+UExxxkU1DeN7kM4U2+E0G85nqBLOL34BDj8LDKJH9WC7L9jMV8T3Upbg 14 | +RrTGiIcyjsL18L2KWeOia1R6VVAQcZrqoWv+QXyVvIi8IpTOE074C6+Vzx6XYMe 15 | CpW4jcdfmn39oVeMXxz9+8wD7CWeCT+SMj8tt+OB1XjQwdEG03vb6ArtnuJT77VI 16 | 3I090OtKksBE5hy1H9N2E3wxhFTxC+DI5sc7Bj87v3blL4Z3DvRUEHwQHcDccQ0D 17 | ERUEcSyn1YGSlDVbVf3CzH4WXxddUBmaSHf4JTuAMy0C0A6IWuMP+rVVvVMIXNM= 18 | -----END CERTIFICATE----- 19 | -------------------------------------------------------------------------------- /others/matplotlib/surface3d.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/mplot3d/surface3d.html 3 | 4 | import sys 5 | 6 | import numpy as np 7 | from matplotlib import cm 8 | from matplotlib.backends.backend_qt5agg import FigureCanvas 9 | from matplotlib.figure import Figure 10 | from matplotlib.ticker import FormatStrFormatter, LinearLocator 11 | from PyQt5.QtWidgets import QApplication 12 | 13 | app = QApplication(sys.argv) 14 | 15 | fig = Figure(figsize=(8, 6)) 16 | canvas = FigureCanvas(fig) 17 | canvas.resize(640, 480) 18 | canvas.show() 19 | 20 | ax = fig.gca(projection="3d") 21 | 22 | # Make data. 23 | X = np.arange(-5, 5, 0.25) 24 | Y = np.arange(-5, 5, 0.25) 25 | X, Y = np.meshgrid(X, Y) 26 | R = np.sqrt(X ** 2 + Y ** 2) 27 | Z = np.sin(R) 28 | 29 | # Plot the surface. 30 | surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm, linewidth=0, antialiased=False) 31 | 32 | # Customize the z axis. 33 | ax.set_zlim(-1.01, 1.01) 34 | ax.zaxis.set_major_locator(LinearLocator(10)) 35 | ax.zaxis.set_major_formatter(FormatStrFormatter("%.02f")) 36 | 37 | # Add a color bar which maps values to colors. 38 | fig.colorbar(surf, shrink=0.5, aspect=5) 39 | 40 | sys.exit(app.exec_()) 41 | -------------------------------------------------------------------------------- /official/quickcontrols2/gallery/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtCore import QSettings, Qt, QUrl 3 | from Qt.QtGui import QGuiApplication, QIcon 4 | from Qt.QtQml import QQmlApplicationEngine 5 | 6 | from qmissings.QtQuickControls2 import QQuickStyle 7 | 8 | import resources_rc # noqa: F401 9 | 10 | 11 | def main(): 12 | import sys 13 | 14 | QGuiApplication.setApplicationName("Gallery") 15 | QGuiApplication.setOrganizationName("QtProject") 16 | QGuiApplication.setAttribute(Qt.AA_EnableHighDpiScaling) 17 | 18 | app = QGuiApplication(sys.argv) 19 | 20 | QIcon.setThemeName("gallery") 21 | 22 | settings = QSettings() 23 | 24 | style = QQuickStyle.name() 25 | if style: 26 | settings.setValue("style", style) 27 | else: 28 | QQuickStyle.setStyle(settings.value("style")) 29 | 30 | engine = QQmlApplicationEngine() 31 | engine.rootContext().setContextProperty( 32 | "availableStyles", QQuickStyle.availableStyles() 33 | ) 34 | engine.load(QUrl("qrc:/gallery.qml")) 35 | if not engine.rootObjects(): 36 | sys.exit(-1) 37 | 38 | sys.exit(app.exec_()) 39 | 40 | 41 | if __name__ == "__main__": 42 | main() 43 | -------------------------------------------------------------------------------- /official/webengine/customdialogs/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtCore import QCoreApplication, Qt, QTimer, QUrl 3 | from Qt.QtGui import QGuiApplication 4 | from Qt.QtNetwork import QNetworkProxy 5 | from Qt.QtQml import QQmlApplicationEngine 6 | from Qt.QtWidgets import QApplication 7 | 8 | import customdialogs_rc # noqa: F401 9 | from server import Server 10 | 11 | QT_NO_WIDGETS = True 12 | 13 | 14 | def main(): 15 | import sys 16 | 17 | QCoreApplication.setOrganizationName("QtExamples") 18 | QCoreApplication.setAttribute(Qt.AA_EnableHighDpiScaling) 19 | # QtWebEngine::initialize() 20 | 21 | if QT_NO_WIDGETS: 22 | app = QApplication(sys.argv) 23 | else: 24 | app = QGuiApplication(sys.argv) 25 | 26 | engine = QQmlApplicationEngine() 27 | server = Server(engine) 28 | 29 | engine.load(QUrl("qrc:/main.qml")) 30 | QTimer.singleShot(0, server.run) 31 | 32 | proxy = QNetworkProxy() 33 | proxy.setType(QNetworkProxy.HttpProxy) 34 | proxy.setHostName("localhost") 35 | proxy.setPort(5555) 36 | QNetworkProxy.setApplicationProxy(proxy) 37 | 38 | sys.exit(app.exec_()) 39 | 40 | 41 | if __name__ == "__main__": 42 | main() 43 | -------------------------------------------------------------------------------- /others/matplotlib/histogram_features.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/statistics/histogram_features.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 | np.random.seed(19680801) 19 | 20 | # example data 21 | mu = 100 # mean of distribution 22 | sigma = 15 # standard deviation of distribution 23 | x = mu + sigma * np.random.randn(437) 24 | 25 | num_bins = 50 26 | 27 | ax = fig.subplots() 28 | 29 | # the histogram of the data 30 | n, bins, patches = ax.hist(x, num_bins, density=1) 31 | 32 | # add a 'best fit' line 33 | y = (1 / (np.sqrt(2 * np.pi) * sigma)) * np.exp(-0.5 * (1 / sigma * (bins - mu)) ** 2) 34 | ax.plot(bins, y, "--") 35 | ax.set_xlabel("Smarts") 36 | ax.set_ylabel("Probability density") 37 | ax.set_title(r"Histogram of IQ: $\mu=100$, $\sigma=15$") 38 | 39 | # Tweak spacing to prevent clipping of ylabel 40 | fig.tight_layout() 41 | 42 | sys.exit(app.exec_()) 43 | -------------------------------------------------------------------------------- /official/webenginewidgets/markdowneditor/resources/3rdparty/MARKED-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /official/webengine/recipebrowser/resources/pages/assets/3rdparty/MARKED-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /official/webenginewidgets/spellchecker/data/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Contact us 6 | 7 | 8 | 9 |
10 | 11 |
12 |

Contact us

13 |

We are here to help

14 |
15 | 18 | 21 | 24 | 27 | 30 | 31 |
32 | 33 | 34 | -------------------------------------------------------------------------------- /official/dbus/pingpong/ping.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from PyQt5.QtCore import QCoreApplication 3 | from PyQt5.QtDBus import QDBusConnection, QDBusInterface, QDBusReply 4 | 5 | from ping_common import SERVICE_NAME 6 | 7 | 8 | def main(): 9 | import sys 10 | 11 | app = QCoreApplication(sys.argv) # noqa: F841 12 | 13 | if not QDBusConnection.sessionBus().isConnected(): 14 | sys.stderr.write( 15 | "Cannot connect to the D-Bus session bus.\n" 16 | "To start it, run:\n" 17 | "\teval `dbus-launch --auto-syntax`\n" 18 | ) 19 | sys.exit(1) 20 | 21 | iface = QDBusInterface(SERVICE_NAME, "/", "", QDBusConnection.sessionBus()) 22 | 23 | if iface.isValid(): 24 | msg = iface.call("ping", sys.argv[1] if len(sys.argv) > 1 else "") 25 | reply = QDBusReply(msg) 26 | 27 | if reply.isValid(): 28 | sys.stdout.write("Reply was: %s\n" % reply.value()) 29 | sys.exit() 30 | 31 | sys.stderr.write("Call failed: %s\n" % reply.error().message()) 32 | sys.exit(1) 33 | 34 | sys.stderr.write("%s\n" % QDBusConnection.sessionBus().lastError().message()) 35 | sys.exit(1) 36 | 37 | 38 | if __name__ == "__main__": 39 | main() 40 | -------------------------------------------------------------------------------- /official/dbus/pingpong/pong.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from PyQt5.QtCore import QCoreApplication, QMetaObject, QObject, pyqtSlot 3 | from PyQt5.QtDBus import QDBusConnection 4 | 5 | from ping_common import SERVICE_NAME 6 | 7 | 8 | class Pong(QObject): 9 | @pyqtSlot(str, result=str) 10 | def ping(self, arg): 11 | QMetaObject.invokeMethod(QCoreApplication.instance(), "quit") 12 | 13 | return 'ping("%s") got called' % arg 14 | 15 | 16 | def main(): 17 | import sys 18 | 19 | app = QCoreApplication(sys.argv) 20 | 21 | if not QDBusConnection.sessionBus().isConnected(): 22 | sys.stderr.write( 23 | "Cannot connect to the D-Bus session bus.\n" 24 | "To start it, run:\n" 25 | "\teval `dbus-launch --auto-syntax`\n" 26 | ) 27 | sys.exit(1) 28 | 29 | if not QDBusConnection.sessionBus().registerService(SERVICE_NAME): 30 | sys.stderr.write("%s\n" % QDBusConnection.sessionBus().lastError().message()) 31 | sys.exit(1) 32 | 33 | pong = Pong() 34 | QDBusConnection.sessionBus().registerObject( 35 | "/", pong, QDBusConnection.ExportAllSlots 36 | ) 37 | 38 | sys.exit(app.exec_()) 39 | 40 | 41 | if __name__ == "__main__": 42 | main() 43 | -------------------------------------------------------------------------------- /others/matplotlib/path_patch.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/shapes_and_collections/path_patch.html 3 | 4 | import sys 5 | 6 | import matplotlib.patches as mpatches 7 | import matplotlib.path as mpath 8 | from matplotlib.backends.backend_qt5agg import FigureCanvas 9 | from matplotlib.figure import Figure 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 | ax = fig.subplots() 20 | 21 | Path = mpath.Path 22 | path_data = [ 23 | (Path.MOVETO, (1.58, -2.57)), 24 | (Path.CURVE4, (0.35, -1.1)), 25 | (Path.CURVE4, (-1.75, 2.0)), 26 | (Path.CURVE4, (0.375, 2.0)), 27 | (Path.LINETO, (0.85, 1.15)), 28 | (Path.CURVE4, (2.2, 3.2)), 29 | (Path.CURVE4, (3, 0.05)), 30 | (Path.CURVE4, (2.0, -0.5)), 31 | (Path.CLOSEPOLY, (1.58, -2.57)), 32 | ] 33 | codes, verts = zip(*path_data) 34 | path = mpath.Path(verts, codes) 35 | patch = mpatches.PathPatch(path, facecolor="r", alpha=0.5) 36 | ax.add_patch(patch) 37 | 38 | # plot control points and connecting lines 39 | x, y = zip(*path.vertices) 40 | (line,) = ax.plot(x, y, "go-") 41 | 42 | ax.grid() 43 | ax.axis("equal") 44 | 45 | sys.exit(app.exec_()) 46 | -------------------------------------------------------------------------------- /official/webengine/recipebrowser/resources/pages/soup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Soup 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 | Soup 14 | 15 | Soup 16 | ============= 17 | 18 | ### Ingredients 19 | 20 | * 2 potatoes 21 | * 2 onions 22 | * 2 cloves of garlic 23 | * olive oil 24 | * 400 ml organic stock 25 | * 3 bunches of watercress 26 | 27 | ### Instructions 28 | * Peel and roughly chop the potatoes, onions and garlic. 29 | * In a large saucepan, heat a little olive oil, then sauté the potato, onion and garlic until the onions are translucent. 30 | * Add the stock and simmer until the potato is soft. Chop and add the watercress and simmer for a further 3 to 4 minutes. 31 | * Using a hand blender, liquidise the soup until smooth. 32 | * Serve with a swirl of crème fraîche and some Fortt’s Bath Oliver biscuits, if you like. 33 | 34 | **Enjoy!** 35 | 36 |
37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /others/matplotlib/widgets/check_buttons.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/examples/widgets/check_buttons.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 CheckButtons 12 | 13 | t = np.arange(0.0, 2.0, 0.01) 14 | s0 = np.sin(2 * np.pi * t) 15 | s1 = np.sin(4 * np.pi * t) 16 | s2 = np.sin(6 * np.pi * t) 17 | 18 | app = QApplication(sys.argv) 19 | 20 | figure = Figure() 21 | canvas = FigureCanvas(figure) 22 | canvas.resize(640, 480) 23 | canvas.show() 24 | 25 | ax = figure.subplots() 26 | (l0,) = ax.plot(t, s0, visible=False, lw=2) 27 | (l1,) = ax.plot(t, s1, lw=2) 28 | (l2,) = ax.plot(t, s2, lw=2) 29 | figure.subplots_adjust(left=0.2) 30 | 31 | rax = figure.add_axes([0.05, 0.4, 0.1, 0.15]) 32 | check = CheckButtons(rax, ("2 Hz", "4 Hz", "6 Hz"), (False, True, True)) 33 | 34 | 35 | def func(label): 36 | if label == "2 Hz": 37 | l0.set_visible(not l0.get_visible()) 38 | elif label == "4 Hz": 39 | l1.set_visible(not l1.get_visible()) 40 | elif label == "6 Hz": 41 | l2.set_visible(not l2.get_visible()) 42 | canvas.draw() 43 | 44 | 45 | check.on_clicked(func) 46 | 47 | 48 | sys.exit(app.exec_()) 49 | -------------------------------------------------------------------------------- /official/quickcontrols2/imagine/automotive/icons/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | car.png 4 | car@2x.png 5 | warning.png 6 | warning@2x.png 7 | weather.png 8 | weather@2x.png 9 | automotive/icons.svg 10 | automotive/index.theme 11 | automotive/44x44/air-con.png 12 | automotive/44x44/command.png 13 | automotive/44x44/message.png 14 | automotive/44x44/music.png 15 | automotive/44x44/seats.png 16 | automotive/44x44/settings.png 17 | automotive/44x44/statistics.png 18 | automotive/44x44/windows.png 19 | automotive/44x44@2/air-con.png 20 | automotive/44x44@2/command.png 21 | automotive/44x44@2/message.png 22 | automotive/44x44@2/music.png 23 | automotive/44x44@2/navigation.png 24 | automotive/44x44@2/seats.png 25 | automotive/44x44@2/settings.png 26 | automotive/44x44@2/statistics.png 27 | automotive/44x44@2/windows.png 28 | 29 | 30 | -------------------------------------------------------------------------------- /official/serialport/enumerator/main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from Qt.QtSerialPort import QSerialPortInfo 3 | from Qt.QtWidgets import QApplication, QLabel, QScrollArea, QVBoxLayout, QWidget 4 | 5 | 6 | def main(): 7 | import sys 8 | 9 | app = QApplication(sys.argv) 10 | 11 | layout = QVBoxLayout() 12 | 13 | infos = QSerialPortInfo.availablePorts() 14 | for info in infos: 15 | s = ( 16 | f"Port: {info.portName()}", 17 | f"Location: {info.systemLocation()}", 18 | f"Description: {info.description()}", 19 | f"Manufacturer: {info.manufacturer()}", 20 | f"Serial number: {info.serialNumber()}", 21 | "Vendor Identifier: " + f"{info.vendorIdentifier():x}" 22 | if info.hasVendorIdentifier() 23 | else "", 24 | "Product Identifier: " + f"{info.productIdentifier():x}" 25 | if info.hasProductIdentifier() 26 | else "", 27 | ) 28 | label = QLabel("\n".join(s)) 29 | layout.addWidget(label) 30 | 31 | workPage = QWidget() 32 | workPage.setLayout(layout) 33 | 34 | area = QScrollArea() 35 | area.setWindowTitle("Info about all available serial ports.") 36 | area.setWidget(workPage) 37 | area.show() 38 | 39 | sys.exit(app.exec_()) 40 | 41 | 42 | if __name__ == "__main__": 43 | main() 44 | -------------------------------------------------------------------------------- /others/matplotlib/log_demo.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/3.2.1/gallery/scales/log_demo.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 | # Data for plotting 19 | t = np.arange(0.01, 20.0, 0.01) 20 | 21 | # Create figure 22 | ((ax1, ax2), (ax3, ax4)) = fig.subplots(2, 2) 23 | 24 | # log y axis 25 | ax1.semilogy(t, np.exp(-t / 5.0)) 26 | ax1.set(title="semilogy") 27 | ax1.grid() 28 | 29 | # log x axis 30 | ax2.semilogx(t, np.sin(2 * np.pi * t)) 31 | ax2.set(title="semilogx") 32 | ax2.grid() 33 | 34 | # log x and y axis 35 | ax3.loglog(t, 20 * np.exp(-t / 10.0), basex=2) 36 | ax3.set(title="loglog base 2 on x") 37 | ax3.grid() 38 | 39 | # With errorbars: clip non-positive values 40 | # Use new data for plotting 41 | x = 10.0 ** np.linspace(0.0, 2.0, 20) 42 | y = x ** 2.0 43 | 44 | ax4.set_xscale("log", nonposx="clip") 45 | ax4.set_yscale("log", nonposy="clip") 46 | ax4.set(title="Errorbars go negative") 47 | ax4.errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y) 48 | # ylim must be set after errorbar to allow errorbar to autoscale limits 49 | ax4.set_ylim(bottom=0.1) 50 | 51 | fig.tight_layout() 52 | 53 | sys.exit(app.exec_()) 54 | -------------------------------------------------------------------------------- /others/matplotlib/widgets/span_selector.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/examples/widgets/span_selector.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 SpanSelector 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 | ax = fig.add_subplot(211, facecolor="#FFFFCC") 20 | 21 | x = np.arange(0.0, 5.0, 0.01) 22 | y = np.sin(2 * np.pi * x) + 0.5 * np.random.randn(len(x)) 23 | 24 | ax.plot(x, y, "-") 25 | ax.set_ylim(-2, 2) 26 | ax.set_title("Press left mouse button and drag to test") 27 | 28 | ax2 = fig.add_subplot(212, facecolor="#FFFFCC") 29 | (line2,) = ax2.plot(x, y, "-") 30 | 31 | 32 | def onselect(xmin, xmax): 33 | indmin, indmax = np.searchsorted(x, (xmin, xmax)) 34 | indmax = min(len(x) - 1, indmax) 35 | 36 | thisx = x[indmin:indmax] 37 | thisy = y[indmin:indmax] 38 | line2.set_data(thisx, thisy) 39 | ax2.set_xlim(thisx[0], thisx[-1]) 40 | ax2.set_ylim(thisy.min(), thisy.max()) 41 | fig.canvas.draw() 42 | 43 | 44 | # set useblit True on gtkagg for enhanced performance 45 | span = SpanSelector( 46 | ax, onselect, "horizontal", useblit=True, rectprops=dict(alpha=0.5, facecolor="red") 47 | ) 48 | 49 | 50 | sys.exit(app.exec_()) 51 | -------------------------------------------------------------------------------- /others/matplotlib/widgets/buttons.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # https://matplotlib.org/examples/widgets/buttons.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 Button 12 | 13 | freqs = np.arange(2, 20, 3) 14 | 15 | app = QApplication(sys.argv) 16 | 17 | figure = Figure() 18 | canvas = FigureCanvas(figure) 19 | canvas.resize(640, 480) 20 | canvas.show() 21 | 22 | ax = figure.subplots() 23 | figure.subplots_adjust(bottom=0.2) 24 | t = np.arange(0.0, 1.0, 0.001) 25 | s = np.sin(2 * np.pi * freqs[0] * t) 26 | (l,) = ax.plot(t, s, lw=2) 27 | 28 | 29 | class Index(object): 30 | ind = 0 31 | 32 | def next(self, event): 33 | self.ind += 1 34 | i = self.ind % len(freqs) 35 | ydata = np.sin(2 * np.pi * freqs[i] * t) 36 | l.set_ydata(ydata) 37 | canvas.draw() 38 | 39 | def prev(self, event): 40 | self.ind -= 1 41 | i = self.ind % len(freqs) 42 | ydata = np.sin(2 * np.pi * freqs[i] * t) 43 | l.set_ydata(ydata) 44 | canvas.draw() 45 | 46 | 47 | callback = Index() 48 | axprev = figure.add_axes([0.7, 0.05, 0.1, 0.075]) 49 | axnext = figure.add_axes([0.81, 0.05, 0.1, 0.075]) 50 | bnext = Button(axnext, "Next") 51 | bnext.on_clicked(callback.next) 52 | bprev = Button(axprev, "Previous") 53 | bprev.on_clicked(callback.prev) 54 | 55 | 56 | sys.exit(app.exec_()) 57 | -------------------------------------------------------------------------------- /others/qmlvideoviewer/qml/main.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.15 2 | import QtQuick.Window 2.15 3 | import QtMultimedia 5.15 4 | import qutevideo 1.0 5 | 6 | Window { 7 | visible: true 8 | width: 640 9 | height: 480 10 | title: qsTr("Video Viewer") 11 | 12 | QtObject{ 13 | id: _internals 14 | property var source: openCVSource 15 | } 16 | 17 | VideoOutput { 18 | id: video 19 | anchors.fill: parent 20 | anchors.margins: 10 21 | fillMode: VideoOutput.Stretch 22 | source: _internals.source 23 | filters: [ 24 | ObjectsFilter{ 25 | /*onObjectsDetected: function(objects){ 26 | repeater.model = objects 27 | }*/ 28 | } 29 | ] 30 | 31 | Repeater{ 32 | id: repeater 33 | Rectangle{ 34 | property rect r: video.mapNormalizedRectToItem(model.modelData) 35 | x: r.x 36 | y: r.y 37 | width: r.width 38 | height: r.height 39 | color: "transparent" 40 | border.color: "green" 41 | border.width: 5 42 | } 43 | } 44 | } 45 | 46 | CVSource{ 47 | id: openCVSource 48 | source: 0 49 | } 50 | 51 | MSSSource{ 52 | id: mssSource 53 | source: -1 54 | } 55 | 56 | Component.onCompleted: () => _internals.source.start() 57 | Component.onDestruction: () => _internals.source.stop() 58 | } 59 | -------------------------------------------------------------------------------- /official/corelib/ipc/sharedmemory/dialog.ui: -------------------------------------------------------------------------------- 1 | 2 | Dialog 3 | 4 | 5 | 6 | 0 7 | 0 8 | 451 9 | 322 10 | 11 | 12 | 13 | Dialog 14 | 15 | 16 | 17 | 18 | 19 | Load Image From File... 20 | 21 | 22 | 23 | 24 | 25 | 26 | Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory. 27 | 28 | 29 | Qt::AlignCenter 30 | 31 | 32 | true 33 | 34 | 35 | 36 | 37 | 38 | 39 | Display Image From Shared Memory 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | --------------------------------------------------------------------------------