Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@v-kolesnikov
Created April 29, 2015 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v-kolesnikov/0713f18b5f43bfff54b2 to your computer and use it in GitHub Desktop.
Save v-kolesnikov/0713f18b5f43bfff54b2 to your computer and use it in GitHub Desktop.
Qml simple ListView
/*!
* https://vk.com/topic-33978_29405724?post=2868
*/
import QtQuick 2.4
import QtQuick.Controls 1.3
ScrollView {
width: 400
height: 80
ListView {
model: 10
spacing: 10
orientation: Qt.Horizontal
delegate: Rectangle {
id: delegateItem
property ListView view: ListView.view
anchors.verticalCenter: parent.verticalCenter
width: ListView.isCurrentItem ? 60 : 40
height: width
color: mouseArea.containsMouse ? "blue" : index % 2 ? "green" : "red"
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
onClicked: delegateItem.view.currentIndex = index
}
Behavior on width {
NumberAnimation { duration: 200 }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment