1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-08 02:27:46 +00:00
novus/parts/exd/exdpart.h
Joshua Goins 97f46bcca1 Introduce the parts system and EXD and MDL parts
These parts (inspired by the KDE parts system) will allow the tooling
to reuse GUI mechanisms. Right now the two supported parts are for Excel
and Models, and exdviewer and mdlviewer will be retrofitted to them in
future commits.
2023-04-09 15:28:00 -04:00

18 lines
No EOL
279 B
C++

#pragma once
#include <QWidget>
#include <QTabWidget>
struct GameData;
class EXDPart : public QWidget {
public:
explicit EXDPart(GameData* data);
void loadSheet(const QString& name);
private:
GameData* data = nullptr;
QTabWidget* pageTabWidget = nullptr;
};