Qt是1991年奇趣科技开发的一个跨平台的C++图形用户界面应用程序框架。它提供给应用程序开发者建立艺术级的图形用户界面所需的所有功能。
1:配置qt4开发环境:#sudo apt-get install libqt4-dev qt4-designer qt4-doc
配置kde4开发环境:#sudo apt-get install kde4-devel
IDE:#sudo aptitude install kdevelop-kde4
2:测试
首先编写源代码。新建文件夹qt4hello,然后再里面新建文件 main.cpp,内容如下
#cd /home
#mkdir qt4hello
#cd qt4hello
#nano main.cpp
#include
#include
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello Ubuntu!");
hello.resize(100, 30);
hello.show();
return app.exec();
}
#qmake-qt4 -project
#qmake-qt4
#make
#./qt4hello
会出现一个窗口,改变hello.resize(100,30)里的数值,再make,再编译可以看到窗口大小的改变!
Ubuntu下QT4开发环境的搭建及初体验:http://www.linuxdiyf.com/linux/7779.html
迁移Qt4至Qt5的几个主要环节:http://www.linuxdiyf.com/linux/1036.html