main.cpp

来自「Linux下的基于X11的图形开发环境。」· C++ 代码 · 共 20 行

CPP
20
字号
#include "mainwindow.h"#include <qapplication.h>#include <qmotif.h>int main( int argc, char **argv ){    XtSetLanguageProc( NULL, NULL, NULL );    QMotif integrator( "customwidget" );    QApplication app( argc, argv );    MainWindow mainwindow;    app.setMainWidget( &mainwindow );    mainwindow.show();    return app.exec();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?