123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import Qt 4.7
- import "../colibri"
- import "../js/FutuHeia.js" as FutuHeia
- Item {
- width: screenWidth
- height: 80
- CLButton {
- anchors {
- top: parent.top
- left: parent.left
- bottom: parent.bottom
- margins: 20
- }
- width: (parent. width / 2) - 30
- text: appItem.postsButtonText
- onClicked: FutuHeia.showLog();
- hoveredStateOn: false
- borderColor: appItem.heiaFocusColorOuter
- color: appItem.heiaFocusColorInner
- colorWhenPressed: appItem.heiaOrange
- gradientDefaultOn: false
- gradientPressedOn: false
- gradientSelectedOn: false
- textColor: "black"
- borderWidth: 4
- }
- CLButton {
- anchors {
- top: parent.top
- right: parent.right
- bottom: parent.bottom
- margins: 20
- }
- width: (parent. width / 2) - 30
- text: qsTr("Submit")
- onClicked: FutuHeia.postEntry();
- hoveredStateOn: false
- borderColor: appItem.heiaFocusColorOuter
- color: appItem.heiaFocusColorInner
- colorWhenPressed: appItem.heiaOrange
- gradientDefaultOn: false
- gradientPressedOn: false
- gradientSelectedOn: false
- textColor: "black"
- borderWidth: 4
- }
- }
|