X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fqml%2FConfigOptionsComponent.qml;h=9a691247cfaf52609b654de771c7702ed1023a6d;hb=0f8d4b44f550d528c2b6b09fb0f6a8c7821caf9f;hp=a81ec491f15ead731dedd66aacb78bc32135f8ab;hpb=e372f6ea9613e5f38d1ecd667ca3783935ded76c;p=marketstoday diff --git a/src/qml/ConfigOptionsComponent.qml b/src/qml/ConfigOptionsComponent.qml index a81ec49..9a69124 100644 --- a/src/qml/ConfigOptionsComponent.qml +++ b/src/qml/ConfigOptionsComponent.qml @@ -1,5 +1,5 @@ /* -@version: 0.1 +@version: 0.5 @author: Sudheer K. @license: GNU General Public License */ @@ -23,6 +23,7 @@ Rectangle { border.color: "#BFBFBF" color:"#2E2E2E" anchors.verticalCenter: parent.verticalCenter + anchors.verticalCenterOffset: -10 anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenterOffset: -0.25 * parent.width radius: 15 @@ -45,6 +46,17 @@ Rectangle { } } + Text { + id: tickersLabel + anchors.top: iconTickersArea.bottom + anchors.topMargin: 10 + anchors.horizontalCenter: iconTickersArea.horizontalCenter + height: 50 + horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter + font.pixelSize: 22; font.bold: true; elide: Text.ElideMiddle; color: "#B8B8B8"; style: Text.Raised; styleColor: "black" + text: "Add/Remove Tickers" + } + Rectangle { id: iconSettingsArea width: 128 @@ -53,6 +65,7 @@ Rectangle { border.color: "#BFBFBF" color:"#2E2E2E" anchors.verticalCenter: parent.verticalCenter + anchors.verticalCenterOffset: -10 anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenterOffset: 0.25 * parent.width radius: 15 @@ -74,4 +87,14 @@ Rectangle { } } + Text { + id: settingsLabel + anchors.top: iconSettingsArea.bottom + anchors.topMargin: 10 + anchors.horizontalCenter: iconSettingsArea.horizontalCenter + height: 50 + horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter + font.pixelSize: 22; font.bold: true; elide: Text.ElideMiddle; color: "#B8B8B8"; style: Text.Raised; styleColor: "black" + text: "Update Settings" + } }