TwimGo

Changeset 27

Legend:
Unmodified
Added
Removed
    • Property svn:ignore
      •  

        old new  
        5 5OVI_2011-04-26.crt 
        6 6OVI_2011-04-26.key 
         7TwimGo.pro.user.2.3pre1 
  • TwimGo.desktop

    r26 r27  
    1 1[Desktop Entry] 
    2 2Encoding=UTF-8 
    3  Version=3.1.0 
     3 Version=3.1.1 
    4 4Type=Application 
    5 5Terminal=false 
  • TwimGo.pro

    r26 r27  
    14 14symbian:TARGET.CAPABILITY += NetworkServices Location LocalServices ReadUserData WriteUserData 
    15 15symbian:TARGET.UID3 = 0xE4172C9B 
     16#symbian:TARGET.UID3 = 0x20041107 
    16 17 
    17 18symbian { 
    18        #TARGET.UID3 = 0x20041107 
    19 19      DEPLOYMENT.installer_header=0x2002CCCF 
    20 20      vendorinfo = \ 
     
    42 42MOBILITY += location 
    43 43 
    44  VERSION = 3.1.0 
     44 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.7 
     1 import QtQuick 1.1 
    2 2import QtWebKit 1.0 
    3 3import "../js/script.js" as Script 
  • qml/TwimGo/components/BackButton.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/Button.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/CustomGestureArea.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22MouseArea { 
  • 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 components 
    4 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: 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 
    29   
    30      function getText(){ 
    31          return textBox.text; 
    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      } 
    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.0 
    4 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: 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   
    27      function getText(){ 
    28          return textBox.text 
    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      } 
    55  } 
  • qml/TwimGo/components/CustomTheme.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/GalleryPicker.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21import QtMobility.gallery 1.0 
    22 22 
  • qml/TwimGo/components/ListsDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/LoginDialog.qml

    r26 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
     
    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.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/ProfileDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/SearchDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/SearchesDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/SettingsDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/components/StatusDialog.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import Qt 4.7 
     20 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.7 
     20 import QtQuick 1.1 
    21 21 
    22 22Item { 
  • qml/TwimGo/main.qml

    r24 r27  
    18 18*/ 
    19 19 
    20  import QtQuick 1.0 // 4.7 
     20 import QtQuick 1.1 // 4.7 
    21 21import 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 29import "components" 
    30 30 
    31  //PageStackWindow { 
    32  //    initialPage: window 
    33  //    showToolBar: false 
     31 PageStackWindow { 
     32     initialPage: window 
     33     showToolBar: false 
    34 34 
    35 35Rectangle { 
    36 36    id: window 
    37      width: 800 // 360 // 640 //800 
    38      height: 480 // 640 // 360 //424 
     37 //    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: 5 
     1546 //        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: true 
     1570             visible: false 
    1568 1571 
    1569 1572            Image { 
     
    2029 2032} 
    2030 2033 
    2031  //} 
     2034 } 
Note: See TracChangeset for help on using the changeset viewer.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2011 All rights reserved