How to choose a new Form in Qt creator
-
Hi,
I'm reading this tutorial. It speaks about choosing a new Form from the MainWindow template. But there isn't the so-called new Form and MainWinodw template on my Qt creator 3.6.0 IDE.
I even searched the web for it.I should have a great thankful for the designers of Qt documentations that have made such a simple and straightforward way of learning Qt!
Whenever I use those documentations I will be more regretful about choosing Qt for programming. -
-
-
Please have a look at the tutorial I pointed to in my first post of this thread.
The Form can be run only in Preview. Now we have only .ui file, but I think using qmake commands and creating .cpp, .h and .pro files we can run it normally. But how to do these? This is what I don't know and like to learn.
-
Info:
I prefer, to make ui along with class and header. It makes very easy in future to handle the ui objects , functions related to it in another class. Direct access of ui elements in other separate class causes many problems.
If you want to ui, diorectly in your application. Read this. its very simple
@eureka post is also similar, ...adding ui, header and c++ file manually,