1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-27 06:07:45 +00:00
novus/apps/armoury/include/mainwindow.h
Joshua Goins b6cc54405c Move applications to their own folder
To try to cut down the amount of top-level folders
2024-05-10 16:44:45 -04:00

40 lines
No EOL
843 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QComboBox>
#include <physis.hpp>
#include <unordered_map>
#include "fullmodelviewer.h"
#include "gearview.h"
#include "metadataview.h"
#include "mtrlpart.h"
#include "novusmainwindow.h"
#include "singlegearview.h"
struct GameData;
class FileCache;
class PenumbraApi;
class MainWindow : public NovusMainWindow
{
Q_OBJECT
public:
explicit MainWindow(GameData *data);
protected:
void setupAdditionalMenus(QMenuBar *menuBar) override;
private:
SingleGearView *gearView = nullptr;
FullModelViewer *fullModelViewer = nullptr;
QTabWidget *materialsView = nullptr;
MetadataView *metadataView = nullptr;
GameData &data;
FileCache cache;
PenumbraApi *m_api = nullptr;
};