GUI: Qt about message
This commit is contained in:
parent
c6f4bb0f99
commit
27f7433cc3
|
@ -309,11 +309,15 @@ void MainWindow::displayScriptWidget()
|
|||
void MainWindow::displayAboutWidget()
|
||||
{
|
||||
#ifdef _WIN64
|
||||
const char* title="About x64_dbg";
|
||||
QString title="About x64_dbg";
|
||||
#else
|
||||
const char* title="About x32_dbg";
|
||||
QString title="About x32_dbg";
|
||||
#endif
|
||||
MessageBoxA((HWND)MainWindow::winId(), "Created by:\nSigma (GUI)\nMr. eXoDia (DBG)\n\nSpecial Thanks:\nVisualPharm (http://visualpharm.com)\nReversingLabs (http://reversinglabs.com)\nBeatriX (http://beaengine.org)\nQt Project (http://qt-project.org)\nFugue Icons (http://yusukekamiyamane.com)\nNanomite (https://github.com/zer0fl4g/Nanomite)", title, MB_ICONINFORMATION);
|
||||
QMessageBox msg(QMessageBox::Information, title, "Created by:\nSigma (GUI)\nMr. eXoDia (DBG)\n\nSpecial Thanks:\nVisualPharm (http://visualpharm.com)\nReversingLabs (http://reversinglabs.com)\nBeatriX (http://beaengine.org)\nQt Project (http://qt-project.org)\nFugue Icons (http://yusukekamiyamane.com)\nNanomite (https://github.com/zer0fl4g/Nanomite)");
|
||||
msg.setWindowIcon(QIcon(":/icons/images/information.png"));
|
||||
msg.setParent(this, Qt::Dialog);
|
||||
msg.setWindowFlags(msg.windowFlags()&(~Qt::WindowContextHelpButtonHint));
|
||||
msg.exec();
|
||||
}
|
||||
|
||||
void MainWindow::on_actionGoto_triggered()
|
||||
|
|
Loading…
Reference in New Issue