Markopy
Utilizing Markov Models for brute forcing attacks
menu.cpp
Go to the documentation of this file.
1 /** @file menu.cpp
2  * @brief menu page
3  * @authors Yunus Emre Yılmaz
4  *
5  */
6 
7 #include "menu.h"
8 #include <fstream>
10 #include <QtWidgets/QApplication>
11 
12 using namespace Markov::GUI;
13 
14 menu::menu(QWidget* parent)
15  : QMainWindow(parent)
16 {
17  ui.setupUi(this);
18 
19 
20  //QObject::connect(ui.pushButton, &QPushButton::clicked, this, [this] {about(); });
21  QObject::connect(ui.visu, &QPushButton::clicked, this, [this] {visualization(); });
22 }
23 void menu::about() {
24 
25 
26 }
29  w->show();
30  this->close();
31 }