X-Git-Url: http://git.maemo.org/git/?p=qwp;a=blobdiff_plain;f=qml%2Fqwp%2Fcontent%2FConfig.qml;h=0d4e8cfd1894d103ac7bb04bb5d59236a5f6582d;hp=b60890b8970a7e32e2d7266e6d421abe0723458a;hb=a4ed1ea7e44c4fa47c3c13db01e87e32aef42ed9;hpb=1fc5f8537e186a31828a19eb3df62a0860aaa1f6 diff --git a/qml/qwp/content/Config.qml b/qml/qwp/content/Config.qml index b60890b..0d4e8cf 100644 --- a/qml/qwp/content/Config.qml +++ b/qml/qwp/content/Config.qml @@ -6,11 +6,60 @@ ShadowRectangle { opacity: 1 width: parent.width height: wrappersc.height +<<<<<<< HEAD color: "#7d7b97" +======= + /* gradient: Gradient { + GradientStop { + position: 0 */ + color: "#7d7b97" +/* } + + GradientStop { + position: 1 + color: "#313f4d" + } + } */ +// border.color: "black" +// border.width: 2 + /* + MouseArea { + anchors.fill: parent + onClicked: { fond.state = '' } + } + /* + Text { + id: text2 + height: 20 + text: "Panneau gauche" + anchors.right: parent.right + anchors.rightMargin: 5 + font.pixelSize: 12 + anchors.top: parent.top + anchors.topMargin: 5 + } + + TextInput { + id: cfgType + x: 151 + y: 76 + width: 80 + height: 20 + text: "new|edit" + font.pixelSize: 12 + } +*/ + + +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b Flow { id: wrappersc flow: Flow.TopToBottom +<<<<<<< HEAD +======= + //width: menu.width-10 +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter spacing: 10 @@ -18,6 +67,10 @@ ShadowRectangle { anchors.topMargin: 5 Text { text: "Language:" +<<<<<<< HEAD +======= + //font.pixelSize: 16; +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b font.bold: true; color: "white"; style: Text.Raised; styleColor: "black" horizontalAlignment: Qt.AlignRight } @@ -29,8 +82,26 @@ ShadowRectangle { focus: true text: schModel.from } +<<<<<<< HEAD + Text { + text: "Search:" +======= + /* + Text { + text: "In reply to:" + font.pixelSize: 16; font.bold: true; color: "white"; style: Text.Raised; styleColor: "black" + horizontalAlignment: Qt.AlignRight + } + Input{ + id: toIn + KeyNavigation.backtab: fromIn + KeyNavigation.tab:phraseIn + onAccepted:searchbutton.doSearch(); + } */ Text { text: "Search:" + //font.pixelSize: 16; +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b font.bold: true; color: "white"; style: Text.Raised; styleColor: "black" horizontalAlignment: Qt.AlignRight } @@ -42,6 +113,7 @@ ShadowRectangle { text: schModel.phrase } +<<<<<<< HEAD Button { x: 2 width: menu.width-4 @@ -77,8 +149,56 @@ ShadowRectangle { PropertyChanges { target: searchbutton ; opacity: 0.6 ; } } +======= + + + + Button { + x: 2 + width: menu.width-4 + height: menu.height + id: searchbutton + keyUsing: true; + opacity: 1 + text: "Go" + KeyNavigation.tab: fromIn + Keys.onReturnPressed: searchbutton.doSearch(); + Keys.onEnterPressed: searchbutton.doSearch(); + Keys.onSelectPressed: searchbutton.doSearch(); + Keys.onSpacePressed: searchbutton.doSearch(); + onClicked: searchbutton.doSearch(); + + function doSearch() { + // Search ! allowed + if (wrappersc.state=="invalidinput") + return; + + schModel.from=fromIn.text; + //schModel.to= toIn.text; + schModel.phrase = phraseIn.text; + fond.focus = true; + fond.state = "" + + } + } + } +/* + states: + State { + name: "invalidinput" + when: fromIn.text=="" && toIn.text=="" && phraseIn.text=="" + PropertyChanges { target: searchbutton ; opacity: 0.6 ; } + } */ +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b transitions: Transition { NumberAnimation { target: searchbutton; property: "opacity"; duration: 200 } } } +<<<<<<< HEAD +======= + + + + +>>>>>>> 35062d3928ada7bfcb8f08201897545f91b7731b