forked from qt-creator/qt-creator
Updated qdoc to remove hard-coded dependencies on style sheets. Simplified the offline documentation, introducing an offline.css file to be used for documentation in Qt Creator.
25 lines
464 B
QML
25 lines
464 B
QML
Item {
|
|
//! [states]
|
|
states: [
|
|
State {
|
|
name: "State1"
|
|
|
|
PropertyChanges {
|
|
target: icon
|
|
x: middleRightRect.x
|
|
y: middleRightRect.y
|
|
}
|
|
},
|
|
State {
|
|
name: "State2"
|
|
|
|
PropertyChanges {
|
|
target: icon
|
|
x: bottomLeftRect.x
|
|
y: bottomLeftRect.y
|
|
}
|
|
}
|
|
]
|
|
//! [states]
|
|
}
|