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. [solved] Symbian^3 ToolBarLayout bug
QtWS25 Last Chance

[solved] Symbian^3 ToolBarLayout bug

Scheduled Pinned Locked Moved QML and Qt Quick
3 Posts 2 Posters 1.8k 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.
  • EddyE Offline
    EddyE Offline
    Eddy
    wrote on last edited by
    #1

    I used the updater yesterday to get the latest changes to the Qt sdk.
    When I test out my Symbian^3 program I seem to have lost the toolbars in my pagestack.

    environments tested :
    Windows 7 64 bit, Qt 4.7.4, Qt Creator 2.4.1 build 8cd370e163 (using 32 bit)
    I tried the same thing in Ubuntu 11.10 with Qt Creator 2.4.1 build 8cd370e163(same build) and it works fine here. On Ubuntu it’s 64bit.

    It’s easy to reproduce :
    Using Qt Creator, make a new project > Qt Quick project > Qt Quick application > Qt Quick components for Symbian. Choose for simulator .
    If you compile and run you see the statusbar without the back button.
    I changed the code in main.qml to show the toolbar (see //ADDED CODE)

    @import QtQuick 1.1
    import com.nokia.symbian 1.1
    PageStackWindow {
    id: window
    initialPage: MainPage {tools: toolBarLayout}
    showStatusBar: true
    showToolBar: true
    ToolBarLayout {
    id: toolBarLayout
    visible: true //ADDED CODE
    ToolButton {
    flat: true
    iconSource: "toolbar-back"
    onClicked: window.pageStack.depth <= 1 ? Qt.quit() : window.pageStack.pop()
    }
    }
    }@

    This shows the button in the top of the simulator screen. So that’s where it went. Here is a screenshot :!http://dl.dropbox.com/u/33544011/toolbarlayout_bug.PNG(screenshot :)!

    I’ve searched the bug tracker, but only found this kind of problems have occurred from time to time in the past, but not for the latest build. So I filed a bug report :
    "link to bug report":https://bugreports.qt-project.org/browse/QTCOMPONENTS-1235

    So why do I post it here too?
    Maybe someone else can test it out on windows 7 64 bit? It’s easy to do. This can help in solving the issue.

    Qt Certified Specialist
    www.edalsolutions.be

    1 Reply Last reply
    0
    • A Offline
      A Offline
      akrynski
      wrote on last edited by
      #2

      I have the same environment, and it works fine. Windows 7 Profesional.

      --
      Pozdrawiam i do następnego...
      Greetings and till next...

      1 Reply Last reply
      0
      • EddyE Offline
        EddyE Offline
        Eddy
        wrote on last edited by
        #3

        Ok, thanks for testing and your feedback.

        I'll have to dig deeper then...

        Qt Certified Specialist
        www.edalsolutions.be

        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