Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Qt Quick Components: Status pane on Symbian Belle

Qt Quick Components: Status pane on Symbian Belle

Scheduled Pinned Locked Moved QML and Qt Quick
8 Posts 4 Posters 4.3k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nishithmahajan
    wrote on last edited by
    #1

    Hi All,
    I was trying the Qt quick components on Symbian belle. I have just created a simple hello world example using the latest Qt@@Creator <2.3.0>.
    the app runs fine but the status pane is not clickable so I am unable to launch the notifications.network settings sheet. Is it a known issue? and how can I solve it

    the main.qml looks like this

    @import QtQuick 1.0
    import com.nokia.symbian 1.0

    Window {
    id: window

    StatusBar {
        id: statusBar
        anchors.top: window.top
    }
    
    PageStack {
        id: pageStack
        anchors { left: parent.left; right: parent.right; top: statusBar.bottom; bottom: toolBar.top }
    }
    
    ToolBar {
        id: toolBar
        anchors.bottom: window.bottom
        tools: ToolBarLayout {
            id: toolBarLayout
            ToolButton {
                flat: true
                iconSource: "toolbar-back"
                onClicked: pageStack.depth <= 1 ? Qt.quit() : pageStack.pop()
            }
        }
    }
    
    
    Component.onCompleted: {
        pageStack.push(Qt.resolvedUrl("MainPage.qml"))
    }
    

    }

    @
    Kind regards
    Nish

    1 Reply Last reply
    0
    • S Offline
      S Offline
      srikanth_trulyit
      wrote on last edited by
      #2

      Are you mentioning it w.r.t Simulator? If yes, then you cannot click on statusbar in Simulator.
      It should work on device.

      1 Reply Last reply
      0
      • N Offline
        N Offline
        nishithmahajan
        wrote on last edited by
        #3

        No I am talking about the actual phone. I am testing it on Nokia 700.

        1 Reply Last reply
        0
        • S Offline
          S Offline
          srikanth_trulyit
          wrote on last edited by
          #4

          Hmm, I am not lucky to get hands-on Nokia 700 :(
          By the way, you have to pull down the status pane, just like android. Click is Symbian^3, Anna kinda approach.

          1 Reply Last reply
          0
          • N Offline
            N Offline
            nishithmahajan
            wrote on last edited by
            #5

            tried everything on this stupid thing... click.. pull...drag..... they all work for the native applications but are not working for Test app generated via the QT creator

            1 Reply Last reply
            0
            • I Offline
              I Offline
              ismo
              wrote on last edited by
              #6

              Did you install 'Qt Quick components' ? The install package does not seem to be under 'Symbian Belle' but it can be found under 'Symbian'3 Qt4.7.3'

              1 Reply Last reply
              0
              • N Offline
                N Offline
                nishithmahajan
                wrote on last edited by
                #7

                Yes.. I have installed the 'QT Quick components'.. if I don't install it then the application just shows blank screen

                1 Reply Last reply
                0
                • P Offline
                  P Offline
                  parancibia
                  wrote on last edited by
                  #8

                  I think this is a issue, I made a quick test and have the same problem in my N8 with Belle, I suggest you report the bug in "JIRA":http://bugreports.qt.nokia.com/secure/Dashboard.jspa, then post the link to the JIRA entry here, and add the number of the bug report in the tags.

                  1 Reply Last reply
                  0

                  • Login

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • Users
                  • Groups
                  • Search
                  • Get Qt Extensions
                  • Unsolved