• May 09, 2024, 04:02:23 pm

Author Topic: Help needed  (Read 886 times)

0 Members and 1 Guest are viewing this topic.

Offline santhoshmanikandan

  • Full Member
  • ***
  • Posts: 108
  • Reputation: 5
  • Fan of Symbian
  • Current Phone: : Nokia 700 CFW Delight Belle 1.1
Help needed
« on: May 12, 2013, 11:00:00 am »
I am new to program development. But i could not learn qt. As C program there are no online examples to learns each and every syntax it. Is there any way to learn the syntax or all are explained in the creator itself. Please help me.

Offline qooapps

  • Developer
  • Forum User
  • ****
  • Posts: 95
  • Reputation: 22
  • qooApps Developer
    • qooApps Homepage
  • Current Phone: : X7 & C7
Re: Help needed
« Reply #1 on: May 12, 2013, 12:00:36 pm »
Install QT Creator with all options. Then you will have a lot of sample projects on your local installation, also a help of all classes in QT Class Library.
If you start a new project (use QT Mobile) QT Creator will generate a running hello-world-app.
You may choose simulator first, real mobile is for starters hard to set up.

The most important QT Classes are:
- QApplication
- QMainWindow (main window/GUI in any QT App)
- QWidget (it is used for all GUI elements, like labels, buttons ...)

You can search for this classes also in Google and then you will get a bunch of help.
Type in Google also questions like "How to change background color QWidget" - choose the favorite site "www.developer.nokia.com" and here you will find all answers including simple example codes.

Try this, and after learing how to generate an app, you are ready to install your device - then ask again.

Stefan

Offline santhoshmanikandan

  • Full Member
  • ***
  • Posts: 108
  • Reputation: 5
  • Fan of Symbian
  • Current Phone: : Nokia 700 CFW Delight Belle 1.1
Re: Help needed
« Reply #2 on: May 12, 2013, 01:16:25 pm »
Thanks for your help. I will try it