1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 13:07:44 +00:00
novus/armoury/include/mainwindow.h

32 lines
645 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2022-04-11 21:59:37 -04:00
#pragma once
#include <QComboBox>
2022-08-10 14:52:28 -04:00
#include <physis.hpp>
#include <unordered_map>
2022-04-11 21:59:37 -04:00
#include "fullmodelviewer.h"
2023-07-07 16:16:21 -04:00
#include "gearview.h"
2023-10-10 18:10:42 -04:00
#include "novusmainwindow.h"
#include "singlegearview.h"
struct GameData;
class FileCache;
2022-04-11 21:59:37 -04:00
2023-10-10 18:10:42 -04:00
class MainWindow : public NovusMainWindow
{
2022-04-11 21:59:37 -04:00
public:
explicit MainWindow(GameData* data);
2022-04-12 20:02:50 -04:00
protected:
void setupAdditionalMenus(QMenuBar *menuBar) override;
2022-04-11 21:59:37 -04:00
private:
SingleGearView* gearView = nullptr;
FullModelViewer* fullModelViewer = nullptr;
2022-04-11 21:59:37 -04:00
GameData& data;
FileCache cache;
2022-04-11 21:59:37 -04:00
};