Skip to content

Commit

Permalink
[ui/img] Add academic sponsors to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
Just-Kiel committed Sep 9, 2024
1 parent f78efe6 commit ac5b02d
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 0 deletions.
Binary file added meshroom/ui/img/logo_CTU.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added meshroom/ui/img/logo_IRIT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added meshroom/ui/img/logo_enpc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added meshroom/ui/img/logo_uio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
87 changes: 87 additions & 0 deletions meshroom/ui/qml/Homepage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ Page {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.technicolor.com/")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "Technicolor Group"
}
}

Expand All @@ -141,6 +145,10 @@ Page {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.mpcvfx.com/")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "MPC - Moving Picture Company"
}
}

Expand All @@ -151,6 +159,10 @@ Page {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.themill.com/")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "The Mill"
}
}

Expand All @@ -161,6 +173,10 @@ Page {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.mikrosanimation.com/")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "Mikros Animation"
}
}

Expand All @@ -171,6 +187,77 @@ Page {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.technicolorgames.com/")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "Technicolor Games"
}
}
}

RowLayout {
id: academicRow

Layout.fillWidth: true
Layout.leftMargin: leftColumn.width * 0.05
Layout.rightMargin: leftColumn.width * 0.05
Layout.alignment: Qt.AlignHCenter

spacing: 30

Image {
source: "../img/logo_IRIT.png"

MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.irit.fr/en/departement/dep-hpc-simulation-optimization/reva-team")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "IRIT - Institut de Recherche en Informatique de Toulouse"
}
}

Image {
source: "../img/logo_CTU.png"

MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("http://aag.ciirc.cvut.cz")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "CTU - Czech Technical University in Prague"
}
}

Image {
source: "../img/logo_uio.png"

MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://www.mn.uio.no/ifi/english/about/organisation/dis")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "UiO - University of Oslo"
}
}

Image {
source: "../img/logo_enpc.png"

MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: Qt.openUrlExternally("https://imagine-lab.enpc.fr")

hoverEnabled: true
ToolTip.visible: containsMouse
ToolTip.text: "ENPC - Ecole des Ponts ParisTech"
}
}
}
Expand Down

0 comments on commit ac5b02d

Please sign in to comment.