Thank you for your fast response on my questions Kacper, I've searched before but ended up with the online documentation on Trolltech. That states a few things that cleared up my mind.

Originally Posted by
maverick_pol
yes. See the QtDemo examples about setting window flags. Search the forum for related topics; I am 100% this kind of thread is present.
I assume that I need to put that code within this slot? (Correct me if I am wrong)
void MainWindow::initUI()
{
setWindowTitle("My application");
layout->addWidget(Qt::WindowMinimizeButtonHint);
}
void MainWindow::initUI()
{
setWindowTitle("My application");
layout->addWidget(Qt::WindowMinimizeButtonHint);
}
To copy to clipboard, switch view to plain text mode
I did not try my code on my application since my application does crash on opening.

Originally Posted by
maverick_pol
I personally use VS and eclipse for creating and managing Qt related code, but there is a bunch of other good-looking/easy-to-use IDEs. Look at QtCentre homepage or search the forum for related threads.
I've seen eclipse and installed it, Tried it olso but I need some QT intergration to eclipse, I've looked on the Trolltech website, but they have the last build on 4.3.3, Can I still use that intergration pack?
Oh, and by the way, do you have any solution for those builded files that I do not need in my SRC folder, so I do not have to {zip and unzip} every time I want to rebuild. I'd like to have a clean src folder every time i've done compiling. Thanks.
Bookmarks