我正在为C ++程序寻找一个简单的gui。它将用于一个简单的项目&必须在没有dll和类似的东西的文件中。并且必须在Windows,Linux和Mac上运行。
请原谅我的英语。我正在尽我所能。
答案 0 :(得分:3)
QT http://qt-project.org/downloads
在Windows,Linux和Mac上运行。
示例QT代码:
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello world!");
hello.resize(100, 30);
hello.show();
return app.exec();
}
更多:
http://doc.qt.digia.com/3.3/tutorial1-01.html
http://linux301.wordpress.com/2009/06/15/hello-world-with-qt/
http://www.greyc.ensicaen.fr/ensicaen/Docs/Qt4/tutorial-t1.html
答案 1 :(得分:0)
我建议WxWidgets library。你一定要查一查。
它在Windows,Linux和Mac上运行。