这将是QT,不是吗?你在这里有一个IDE(http://qt-project.org/doc/qt-5/topics-app-development.html),GUI"Hello World"如下所示:
http://qt-project.org/wiki/Qt_for_beginners_Hello_World
#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();
}
Run Code Online (Sandbox Code Playgroud)
您也可以在使用或不使用框架的情况下从IDE编写文本/命令行工具.