Files
86Box/src/qt/qt_vmmanager_mainwindow.hpp
Alexander Babikov 3e1c6d3dae Manager: Add Help menu
Move the About dialog into its own file and object
2025-08-01 15:28:48 +05:00

67 lines
1.5 KiB
C++

/*
* 86Box A hypervisor and IBM PC system emulator that specializes in
* running old operating systems and software designed for IBM
* PC systems and compatibles from 1981 through fairly recent
* system designs based on the PCI bus.
*
* This file is part of the 86Box distribution.
*
* Header for 86Box VM manager main window
*
*
*
* Authors: cold-brewed
*
* Copyright 2024 cold-brewed
*/
#ifndef VMM_MAINWINDOW_H
#define VMM_MAINWINDOW_H
#include "qt_vmmanager_main.hpp"
#include <QObject>
#include <QMainWindow>
#include <QProcess>
namespace Ui {
class VMManagerMainWindow;
}
class VMManagerMainWindow final : public QMainWindow
{
Q_OBJECT
public:
explicit VMManagerMainWindow(QWidget *parent = nullptr);
~VMManagerMainWindow() override;
signals:
void preferencesUpdated();
private:
Ui::VMManagerMainWindow *ui;
VMManagerMain *vmm;
void saveSettings() const;
QLabel *statusLeft;
QLabel *statusRight;
public slots:
void setStatusLeft(const QString &text) const;
void setStatusRight(const QString &text) const;
private slots:
void vmmSelectionChanged(const QModelIndex &currentSelection, QProcess::ProcessState processState) const;
void preferencesTriggered();
#if EMU_BUILD_NUM != 0
static void checkForUpdatesTriggered();
#endif
void on_actionExit_triggered();
void on_actionDocumentation_triggered();
void on_actionAbout_86Box_triggered();
void on_actionAbout_Qt_triggered();
protected:
void closeEvent(QCloseEvent *event) override;
};
#endif // VMM_MAINWINDOW_H