src/mainwindow.h

Tue, 11 Apr 2023 20:27:04 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Tue, 11 Apr 2023 20:27:04 +0300
changeset 375
21a5ecbe34e4
parent 362
e1d646a4cbd8
permissions
-rw-r--r--

Simplify signature of updateRenderPreferences

#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);
	void updateTitle();
private Q_SLOTS:
	void showAboutDialog();
};

#endif // MAINWINDOW_H

mercurial