Skip to content

Commit

Permalink
demo_threading: add logos to main screen
Browse files Browse the repository at this point in the history
  • Loading branch information
ahayzen-kdab authored and Be-ing committed Dec 1, 2022
1 parent f844a8e commit 711a682
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 1 deletion.
1 change: 1 addition & 0 deletions LICENSES/LicenseRef-QtProprietary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright The Qt Company. All Rights Reserved.
2 changes: 2 additions & 0 deletions examples/demo_threading/images/images.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@
<file>panel.png</file>
<file>kdabLogo.png</file>
<file>RLogolarge.png</file>
<file>qt-logo.png</file>
<file>rust-logo-white.png</file>
</qresource>
</RCC>
Binary file added examples/demo_threading/images/qt-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions examples/demo_threading/images/qt-logo.png.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: The Qt Company

SPDX-License-Identifier: LicenseRef-QtProprietary
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions examples/demo_threading/images/rust-logo-white.png.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: Rust Foundation

SPDX-License-Identifier: CC-BY-4.0
21 changes: 20 additions & 1 deletion examples/demo_threading/qml/MainWindow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,26 @@ Window {
uuid: "3e3f1174-6aaf-4357-93ac-b3d9285d7af8"
}

Column {
spacing: 20
height: 720 - 40
width: 200
x: 1280 - width - 20
y: 20

Image {
fillMode: Image.PreserveAspectFit
source: "./images/qt-logo.png"
width: parent.width
}

Image {
fillMode: Image.PreserveAspectFit
source: "./images/rust-logo-white.png"
width: parent.width
}
}

Row {
id: levelsUI
x: 160
Expand Down Expand Up @@ -427,4 +447,3 @@ Window {
}
}
}

0 comments on commit 711a682

Please sign in to comment.