src/mainwindow.h

Sun, 09 Apr 2023 13:28:36 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sun, 09 Apr 2023 13:28:36 +0300
changeset 361
c5e8b68e34f8
parent 355
e81f4ad53efd
child 362
e1d646a4cbd8
permissions
-rw-r--r--

Move some recent file handling to MainWindow

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "ui_mainwindow.h"
#include "src/gl/common.h"

class MainWindow : public QMainWindow, public Ui_MainWindow
{
	Q_OBJECT
public:
	explicit MainWindow(QWidget *parent = nullptr);
Q_SIGNALS:
	void renderStyleSelected(gl::RenderStyle newStyle);
	void recentFileSelected(const QString& path);
public Q_SLOTS:
	void setRenderStyle(gl::RenderStyle style);
	void rebuildRecentFilesMenu(const QStringList& strings);
private Q_SLOTS:
	void showAboutDialog();
};

#endif // MAINWINDOW_H

mercurial