#include "mainwindow.h" #include #include #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); #ifdef __linux__ // 风险提示 if(!QFile::exists(QDir::homePath() + "/.config/gxde-kernel-manager/read_already")) { QMessageBox::warning(NULL, QObject::tr("Waring"), QObject::tr("It is danger because it may make your system unboot.\nPress 'OK' to countinue")); } MainWindow w; w.show(); return a.exec(); #else // 其它系统不支持该工具 QMessageBox::critical(NULL, QObject::tr("Error"), QObject::tr("It unsupport Windows")); return a.exec(); #endif }