Modified font colors for change column
authorSudheer K <scifi1947 at gmail.com>
Tue, 30 Apr 2013 04:06:33 +0000 (21:06 -0700)
committerSudheer K <scifi1947 at gmail.com>
Tue, 30 Apr 2013 04:06:33 +0000 (21:06 -0700)
src/qml/MarketsTodayApp.qml
src/qml/MarketsTodayLegacyApp.qml
src/qml/MarketsTodayWidget.qml

index 21c51b6..8542773 100644 (file)
@@ -134,9 +134,8 @@ PageStackWindow {
 
                             Text { text: stockName; width: parent.width * 30/100; font.pixelSize: 18; font.bold: true; elide: Text.ElideRight; color: "white"; style: Text.Raised; styleColor: "black" }
                             Text { text: lastTradedPrice; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
-                            Text { text: change !== ""? (change + " ("+changePercentage+")"):""; width: parent.width * 25/100;  font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideRight
-                                    color: if(change >= 0){"green";} else {"red";}
-                                        style: Text.Raised; styleColor: "black" }
+                            Text { text: change !== ""? (change + " ("+changePercentage+")"):""; width: parent.width * 25/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideRight
+                                color: change >= 0 ? "#00ff00":"#ff0000"; style: Text.Raised; styleColor: "black"}
                             Text { text: volume; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
                             Text { text: marketCap; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
                         }
@@ -175,10 +174,10 @@ PageStackWindow {
                                 width: parent.width * 18/100; height: parent.height
                                 spacing: 2
                                 Text { text: change; font.pixelSize: 16; horizontalAlignment: Text.AlignLeft; elide: Text.ElideRight
-                                    color: if(change >= 0){"green";} else {"red";}
+                                    color: change >= 0 ? "#00ff00":"#ff0000";
                                         style: Text.Raised; styleColor: "black" }
                                 Text { text: changePercentage; font.pixelSize: 16; horizontalAlignment: Text.AlignLeft; elide: Text.ElideRight;
-                                    color: if(change >= 0){"green";} else {"red";}
+                                    color: change >= 0 ? "#00ff00":"#ff0000";
                                         style: Text.Raised; styleColor: "black" }
                             }
                             Text { text: volume; width: parent.width * 20/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
index 010331c..78f9e90 100644 (file)
@@ -113,36 +113,7 @@ Item {
                                 toolBar.displayIcons = false;
                             }
                         }
-                        /*
-                        Image{
-                            id: informationIcon
-                            width: 32
-                            height: 32
-                            z: 10
-                            anchors {right: parent.right; rightMargin: 10; verticalCenter: parent.verticalCenter}
-                            visible: false
-                            source: "Library/images/information.png"
-                            MouseArea{
-                                anchors.fill: parent;
-                                onPressed: {
-                                    //console.log("Image clicked");
-                                    mainPage.selectedSymbol = symbol;
-                                    uiLoader.sourceComponent = stockDetailsComponent;
-                                    titleBar.buttonType = "Back";
-                                    titleBar.displayMenu = false;
-                                    toolBar.displayIcons = false;
-                                }
-                            }
-                        }
 
-                        MouseArea {
-                            anchors.fill: parent
-                            onPressed:{
-                                informationIcon.visible = true;
-                                //console.log("Rectangle clicked");
-                            }
-                        }
-                        */
                     }
 
                     Row {
@@ -153,7 +124,7 @@ Item {
                         Text { text: stockName; width: parent.width * 30/100; font.pixelSize: 18; font.bold: true; elide: Text.ElideRight; color: "white"; style: Text.Raised; styleColor: "black" }
                         Text { text: lastTradedPrice; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
                         Text { text: change !== ""? (change + " ("+changePercentage+")"):""; width: parent.width * 25/100;  font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideRight
-                                color: if(change >= 0){"green";} else {"red";}
+                                color: change >= 0 ? "#00ff00":"#ff0000";
                                     style: Text.Raised; styleColor: "black" }
                         Text { text: volume; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
                         Text { text: marketCap; width: parent.width * 15/100; font.pixelSize: 18; horizontalAlignment: Text.AlignLeft; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
index 7e34ce7..c3327b1 100644 (file)
@@ -136,10 +136,10 @@ Item {
                             width: parent.width * 20/100; height: parent.height
                             spacing: 2
                             Text { text: change; font.pixelSize: 16; elide: Text.ElideRight
-                                color: if(change >= 0){"green";} else {"red";}
+                                color: change >= 0 ? "#00ff00":"#ff0000";
                                     style: Text.Raised; styleColor: "black" }
                             Text { text: changePercentage; font.pixelSize: 16; elide: Text.ElideRight;
-                                color: if(change >= 0){"green";} else {"red";}
+                                color: change >= 0 ? "#00ff00":"#ff0000";
                                     style: Text.Raised; styleColor: "black" }
                         }
                         Text { text: volume; width: parent.width * 30/100; font.pixelSize: 18; verticalAlignment:Text.AlignVCenter; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }