X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fqml%2FConfigTickersComponent.qml;h=55639f6fa4f151dda62382b926f340c2ec63ccd7;hb=526c6066678d5eaa6ca355ee7c2073b83eab7e81;hp=890a9aa1f5961c8bae67171c956938d75b0fef4f;hpb=5454990e804ec6a741fffe545ec9dbf2bc3c781a;p=marketstoday diff --git a/src/qml/ConfigTickersComponent.qml b/src/qml/ConfigTickersComponent.qml index 890a9aa..55639f6 100644 --- a/src/qml/ConfigTickersComponent.qml +++ b/src/qml/ConfigTickersComponent.qml @@ -1,5 +1,5 @@ /* -@version: 0.2 +@version: 0.4 @author: Sudheer K. @license: GNU General Public License */ @@ -197,7 +197,7 @@ Item { } Rectangle{ anchors.top: newSymbolRow.bottom - anchors.bottom: parent.bottom + anchors.bottom: footerTextArea.top width: parent.width; color:"#343434" @@ -209,4 +209,35 @@ Item { } } + + Rectangle{ + id: footerTextArea + width: parent.width + height: itemHeight + z: 5 + color: "#343434" + anchors.bottom: parent.bottom + Text { + id: footerMessage + anchors.fill: parent + text: "Only Yahoo! Finance ticker symbols are supported." + horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignVCenter + width: parent.width; font.pixelSize: 12; elide: Text.ElideRight; + color: "#cccccc" + style: Text.Raised; styleColor: "black" + } + + Timer { + id: footerMessageTimer + interval: 10000 + repeat: false + onTriggered: { + footerMessage.text = ""; + } + } + + Component.onCompleted: { + footerMessageTimer.start(); + } + } }