Files
-
- 21 edited
-
(root) (modified) (1 prop)
-
TwimGo.desktop (modified) (1 diff)
-
TwimGo.pro (modified) (2 diffs)
-
qml/TwimGo/components/AuthorizeDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/BackButton.qml (modified) (1 diff)
-
qml/TwimGo/components/Button.qml (modified) (1 diff)
-
qml/TwimGo/components/CustomGestureArea.qml (modified) (1 diff)
-
qml/TwimGo/components/CustomTextEdit.qml (modified) (1 diff)
-
qml/TwimGo/components/CustomTextInput.qml (modified) (1 diff)
-
qml/TwimGo/components/CustomTheme.qml (modified) (1 diff)
-
qml/TwimGo/components/GalleryPicker.qml (modified) (1 diff)
-
qml/TwimGo/components/ListsDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/LoginDialog.qml (modified) (2 diffs)
-
qml/TwimGo/components/MainMenu.qml (modified) (1 diff)
-
qml/TwimGo/components/ProfileDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/SearchDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/SearchesDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/SettingsDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/StatusDialog.qml (modified) (1 diff)
-
qml/TwimGo/components/TrendsDialog.qml (modified) (1 diff)
-
qml/TwimGo/main.qml (modified) (7 diffs)
- Legend:
- Unmodified
- Added
- Removed
-
- Property svn:ignore
-
TwimGo.desktop
r26 r27 1 1 [Desktop Entry] 2 2 Encoding=UTF-8 3 Version=3.1. 03 Version=3.1.1 4 4 Type=Application 5 5 Terminal=false -
TwimGo.pro
r26 r27 14 14 symbian:TARGET.CAPABILITY += NetworkServices Location LocalServices ReadUserData WriteUserData 15 15 symbian:TARGET.UID3 = 0xE4172C9B 16 #symbian:TARGET.UID3 = 0x20041107 16 17 17 18 symbian { 18 #TARGET.UID3 = 0x2004110719 19 DEPLOYMENT.installer_header=0x2002CCCF 20 20 vendorinfo = \ … … 42 42 MOBILITY += location 43 43 44 VERSION = 3.1. 044 VERSION = 3.1.1 45 45 46 46 # The .cpp file which was generated for your project. Feel free to hack it. -
qml/TwimGo/components/AuthorizeDialog.qml
r24 r27 1 import Qt 4.71 import QtQuick 1.1 2 2 import QtWebKit 1.0 3 3 import "../js/script.js" as Script -
qml/TwimGo/components/BackButton.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/Button.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/CustomGestureArea.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 MouseArea { -
qml/TwimGo/components/CustomTextEdit.qml
r24 r27 1 import QtQuick 1.0 1 import QtQuick 1.1 2 import com.nokia.symbian 1.1 2 3 //import com.nokia.meego 1.0 // MeeGo components 3 //import com.nokia.symbian 1.0 // Symbian components4 4 5 //TextArea { 6 // id: textBox 7 // placeholderText: "" 8 // wrapMode: TextEdit.Wrap 9 // text: statusDialogItem.statusText 10 // textFormat: TextEdit.PlainText 5 TextArea { 6 id: textBox 7 placeholderText: "" 8 wrapMode: TextEdit.Wrap 9 text: statusDialogItem.statusText 10 textFormat: TextEdit.PlainText 11 12 function getText(){ 13 return textBox.text; 14 } 15 } 16 17 //Rectangle { 18 // id: checkinShoutBox 19 // width: parent.width 20 // gradient: Gradient { 21 // GradientStop { position: 0.0; color: "#ccc" } 22 // GradientStop { position: 0.1; color: "#fafafa" } 23 // GradientStop { position: 1.0; color: "#fff" } 24 // } 25 // radius: 5 26 // border.width: 1 27 // border.color: "#aaa" 28 // smooth: true 11 29 12 30 // function getText(){ 13 31 // return textBox.text; 14 32 // } 33 34 // TextEdit { 35 // id: textBox 36 // wrapMode: TextEdit.Wrap 37 // text: statusDialogItem.statusText 38 // textFormat: TextEdit.PlainText 39 // width: parent.width - 10 40 // height: parent.height - 10 41 // x: 5 42 // y: 5 43 // color: "#111" 44 // font.pixelSize: 20 45 46 // MouseArea { 47 // anchors.fill: parent 48 // onClicked: { 49 // if(textBox.text=="Search") { 50 // textBox.text = ""; 51 // textBox.focus = true; 52 // } 53 // textBox.forceActiveFocus(); 54 // textBox.openSoftwareInputPanel(); 55 // } 56 // } 57 // } 15 58 //} 16 17 Rectangle {18 id: checkinShoutBox19 width: parent.width20 gradient: Gradient {21 GradientStop { position: 0.0; color: "#ccc" }22 GradientStop { position: 0.1; color: "#fafafa" }23 GradientStop { position: 1.0; color: "#fff" }24 }25 radius: 526 border.width: 127 border.color: "#aaa"28 smooth: true29 30 function getText(){31 return textBox.text;32 }33 34 TextEdit {35 id: textBox36 wrapMode: TextEdit.Wrap37 text: statusDialogItem.statusText38 textFormat: TextEdit.PlainText39 width: parent.width - 1040 height: parent.height - 1041 x: 542 y: 543 color: "#111"44 font.pixelSize: 2045 46 MouseArea {47 anchors.fill: parent48 onClicked: {49 if(textBox.text=="Search") {50 textBox.text = "";51 textBox.focus = true;52 }53 textBox.forceActiveFocus();54 textBox.openSoftwareInputPanel();55 }56 }57 }58 } -
qml/TwimGo/components/CustomTextInput.qml
r24 r27 1 import QtQuick 1.0 1 import QtQuick 1.1 2 import com.nokia.symbian 1.1 2 3 //import com.nokia.meego 1.0 3 //import com.nokia.symbian 1.04 4 5 //TextField { 6 // id: textBox 7 // placeholderText: qsTr("Search") 8 // text: searchDialogItem.searchText 5 TextField { 6 id: textBox 7 placeholderText: qsTr("Search") 8 text: searchDialogItem.searchText 9 function getText(){ 10 return textBox.text 11 } 12 } 13 14 //Rectangle { 15 // id: checkinShoutBox 16 // width: parent.width 17 // gradient: Gradient { 18 // GradientStop { position: 0.0; color: "#ccc" } 19 // GradientStop { position: 0.1; color: "#fafafa" } 20 // GradientStop { position: 1.0; color: "#fff" } 21 // } 22 // radius: 5 23 // border.width: 1 24 // border.color: "#aaa" 25 // smooth: true 26 9 27 // function getText(){ 10 28 // return textBox.text 11 29 // } 30 31 // TextInput { 32 // id: textBox 33 // //wrapMode: TextEdit.Wrap 34 // text: searchDialogItem.searchText 35 // //textFormat: TextEdit.PlainText 36 // width: parent.width - 10 37 // height: parent.height - 10 38 // x: 5 39 // y: 5 40 // color: "#111" 41 // font.pixelSize: 20 42 43 // MouseArea { 44 // anchors.fill: parent 45 // onClicked: { 46 // if(textBox.text=="Search") { 47 // textBox.text = ""; 48 // textBox.focus = true; 49 // } 50 // textBox.forceActiveFocus(); 51 // textBox.openSoftwareInputPanel(); 52 // } 53 // } 54 // } 12 55 //} 13 14 Rectangle {15 id: checkinShoutBox16 width: parent.width17 gradient: Gradient {18 GradientStop { position: 0.0; color: "#ccc" }19 GradientStop { position: 0.1; color: "#fafafa" }20 GradientStop { position: 1.0; color: "#fff" }21 }22 radius: 523 border.width: 124 border.color: "#aaa"25 smooth: true26 27 function getText(){28 return textBox.text29 }30 31 TextInput {32 id: textBox33 //wrapMode: TextEdit.Wrap34 text: searchDialogItem.searchText35 //textFormat: TextEdit.PlainText36 width: parent.width - 1037 height: parent.height - 1038 x: 539 y: 540 color: "#111"41 font.pixelSize: 2042 43 MouseArea {44 anchors.fill: parent45 onClicked: {46 if(textBox.text=="Search") {47 textBox.text = "";48 textBox.focus = true;49 }50 textBox.forceActiveFocus();51 textBox.openSoftwareInputPanel();52 }53 }54 }55 } -
qml/TwimGo/components/CustomTheme.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/GalleryPicker.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 import QtMobility.gallery 1.0 22 22 -
qml/TwimGo/components/ListsDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/LoginDialog.qml
r26 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { … … 110 110 Text { 111 111 id: copy 112 text: "v3.1. 0© 2011-2012 Tommi Laukkanen\nTwitter: @tlaukkanen\nwww.substanceofcode.com"112 text: "v3.1.1 © 2011-2012 Tommi Laukkanen\nTwitter: @tlaukkanen\nwww.substanceofcode.com" 113 113 y: parent.height - height - 8 114 114 width: parent.width -
qml/TwimGo/components/MainMenu.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/ProfileDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/SearchDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/SearchesDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/SettingsDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/components/StatusDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 //import QtMobility.location 1.1 22 22 -
qml/TwimGo/components/TrendsDialog.qml
r24 r27 18 18 */ 19 19 20 import Qt 4.720 import QtQuick 1.1 21 21 22 22 Item { -
qml/TwimGo/main.qml
r24 r27 18 18 */ 19 19 20 import QtQuick 1. 0// 4.720 import QtQuick 1.1 // 4.7 21 21 import QtMobility.location 1.1 22 22 //import QtMultimediaKit 1.1 23 //import com.nokia.symbian 1.0 23 import com.nokia.symbian 1.1 24 24 //import com.nokia.meego 1.0 25 25 … … 29 29 import "components" 30 30 31 //PageStackWindow {32 //initialPage: window33 //showToolBar: false31 PageStackWindow { 32 initialPage: window 33 showToolBar: false 34 34 35 35 Rectangle { 36 36 id: window 37 width: 800 // 360 // 640 //80038 height: 480 // 640 // 360 //42437 // width: 360 // 360 // 640 //800 38 // height: 640 // 640 // 360 //424 39 39 anchors.fill: parent 40 40 property int tweetHeight: 138 // 132 //180 … … 1536 1536 } 1537 1537 1538 //Item {1539 Rectangle {1538 Item { 1539 //Rectangle { 1540 1540 id: waiting 1541 1541 x: 0 … … 1544 1544 height: waitItems.height+20 1545 1545 1546 color: "#bbb"1547 radius: 51546 // color: "#bbb" 1547 // radius: 5 1548 1548 smooth: true 1549 1549 opacity: 0.9 … … 1551 1551 state: "hidden" 1552 1552 1553 /*BusyIndicator {1553 BusyIndicator { 1554 1554 id: busyIndicator 1555 1555 running: true 1556 1556 x: window.width/2 - width/2 1557 1557 y: window.height/2 1558 platformStyle: BusyIndicatorStyle { size: "large"; inverted: theme.isBlack; } 1559 }*/ 1558 width: 100 1559 height: 100 1560 1561 //platformStyle: BusyIndicatorStyle { size: "large"; inverted: theme.isBlack; } 1562 } 1560 1563 1561 1564 Row { … … 1565 1568 spacing: 10 1566 1569 // Hide if BusyIndicator is used 1567 visible: true1570 visible: false 1568 1571 1569 1572 Image { … … 2029 2032 } 2030 2033 2031 //}2034 }

