Play-/tools/ElfView/mainwindow.h

31 lines
449 B
C
Raw Permalink Normal View History

2022-03-16 16:53:43 -04:00
#pragma once
#include <QMainWindow>
#include "filesystem_def.h"
2022-03-16 16:53:43 -04:00
namespace Ui
{
class MainWindow;
}
class QMdiArea;
class QMdiSubWindow;
2022-03-16 16:53:43 -04:00
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget* parent = nullptr);
~MainWindow();
private slots:
void on_actionOpen_triggered();
void on_actionExit_triggered();
private:
QMdiSubWindow* CreateElfViewFromPath(QMdiArea*, const fs::path&);
2022-03-16 16:53:43 -04:00
Ui::MainWindow* ui;
};