Hello,
Sorry for my "n00bness".
I finaly choosed qt. I made an .ui file with qt4 designer and written main file. First:
-I included "ex.ui"...IS that right? Will compiler accept that?
HEre is the code,
#include "ex.ui"
#include <QtGui/QtGui>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
app.setQuitOnLastWindowClosed(true);
QMainWindow *form = new QMainWindow;
Ui::MainWindow ui;
ui.setupUI(form);
form->show();
return app.exec();
}
IS that ok?
Also I dont know how to copile that...Or make a makefile and configiure file.
Qmake? Nmake? Help me!
Thanks in advance,
Jan Birsa