src/mainwindow.h

Mon, 09 Mar 2020 23:42:26 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Mon, 09 Mar 2020 23:42:26 +0200
changeset 77
028798a72591
parent 41
0abada2a9802
child 96
165777a20dc7
permissions
-rw-r--r--

added some meta stuff, simplified quadrilateral splitting and tested it

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013 - 2020 Teemu Piippo
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#pragma once
#include <QMainWindow>
#include <QTranslator>
#include <QSettings>
#include <QKeySequence>
#include "configuration.h"
#include "documentmanager.h"
#include "libraries.h"
#include "uiutilities.h"

class MainWindow : public QMainWindow
{
	Q_OBJECT
public:
	MainWindow(QWidget *parent = nullptr);
	~MainWindow() override;
private slots:
	void newModel();
	void openModel();
	void openModelFromPath(const QString& path);
	void runSettingsEditor();
	void handleDocumentSplitterChange();
	void updateRecentlyOpenedDocumentsMenu();
	void openRecentFile();
	void setRenderStyle(gl::RenderStyle renderStyle);
protected:
	void changeEvent(QEvent* event) override;
	void closeEvent(QCloseEvent* event) override;
private:
	std::unique_ptr<class Ui_MainWindow> ui;
	DocumentManager documents;
	QMap<Model*, QWidget*> modelWidgets;
	QString currentLanguage = "en";
	QTranslator translator;
	Configuration settings;
	LibraryManager libraries;
	QByteArray documentSplitterState;
	uiutilities::KeySequenceMap defaultKeyboardShortcuts;
	static constexpr int maxRecentlyOpenedFiles = 10;
	QStringList recentlyOpenedFiles;
	ldraw::ColorTable colorTable;
	gl::RenderPreferences renderPreferences;
	void updateTitle();
	void updateRenderPreferences();
	void saveSettings();
	void restoreStartupSettings();
	void restoreSettings();
	void changeLanguage(QString localeCode);
	void addRecentlyOpenedFile(const QString& path);
	void openModelForEditing(const QString& modelName);
	static QString pathToTranslation(const QString& localeCode);
	void loadColors();
};

mercurial