Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Tips to start coding for Symbian
QtWS25 Last Chance

Tips to start coding for Symbian

Scheduled Pinned Locked Moved Mobile and Embedded
6 Posts 4 Posters 2.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.
  • E Offline
    E Offline
    esdrasbeleza
    wrote on last edited by
    #1

    Hi,

    Last weekend I had my first experience with development for Symbian. It was a little bit painful, and I documented the problems I had here: http://www.esdrasbeleza.com/2012/01/13/the-first-tips-youll-need-before-start-programming-for-symbian-using-qt/

    I think it can be useful for somebody that wants start coding for Symbian. Please feel free to report any corrections (corrections for English errors are welcome too :) ).

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Rahul Das
      wrote on last edited by
      #2

      Problem with remote compiler!? Strange!! You should have given a trial to fix your prob with that.

      Using QML is always a better idea than Heavy Qt Widgets,in my opinion.

      Using stacked widget is easy. But its not a Must to do!


      Declaration of (Platform) independence.

      1 Reply Last reply
      0
      • L Offline
        L Offline
        lgeyer
        wrote on last edited by
        #3

        Having a list of "common pitfalls", especially from a beginners point of view, is always a good thing.
        Thanks for sharing!

        1 Reply Last reply
        0
        • E Offline
          E Offline
          esdrasbeleza
          wrote on last edited by
          #4

          [quote author="Rahul Das" date="1326434166"]Problem with remote compiler!? Strange!! You should have given a trial to fix your prob with that.

          Using QML is always a better idea than Heavy Qt Widgets,in my opinion.

          Using stacked widget is easy. But its not a Must to do![/quote]

          You're right, Rahul, it's not a must, so I changed my text. But it was the best solution I've found in some forums and examples.

          And yes, I had problems with remote compiler, and the error message didn't give a lot of details, so I couldn't find its reason. I will report an issue suggesting more verbose output.

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Rahul Das
            wrote on last edited by
            #5

            :) And liked the 'positive and negative' button part.


            Declaration of (Platform) independence.

            1 Reply Last reply
            0
            • J Offline
              J Offline
              john_god
              wrote on last edited by
              #6

              Displaying a widget with show() or exec() works for me, with same work around:

              @MyWidget dlg;

              #if defined(Q_WS_S60)
              dlg.setWindowState(dlg.windowState() | Qt::WindowMaximized);
              //dlg.setWindowState(dlg.windowState() | Qt::WindowFullScreen);
              #endif

              dlg.exec();@

              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