2025-09-05 20:44:48 +00:00
|
|
|
#ifndef RUMBLEFILEVIEWER_H
|
|
|
|
|
#define RUMBLEFILEVIEWER_H
|
|
|
|
|
|
|
|
|
|
#include "xrawfile.h"
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class RumbleFileViewer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class RumbleFileViewer : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit RumbleFileViewer(QWidget *parent = nullptr);
|
|
|
|
|
~RumbleFileViewer();
|
|
|
|
|
|
|
|
|
|
void SetRumbleFile(XRawFile* aRumbleFile);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::RumbleFileViewer *ui;
|
|
|
|
|
quint32 mPropertyCount;
|
|
|
|
|
XRawFile* mRumbleFile;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // RUMBLEFILEVIEWER_H
|