2025-09-05 19:53:11 +00:00
|
|
|
#ifndef IWIVIEWER_H
|
|
|
|
|
#define IWIVIEWER_H
|
|
|
|
|
|
2025-12-19 23:06:03 -05:00
|
|
|
//#include "iwifile.h"
|
2025-09-05 19:53:11 +00:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class IWIViewer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class IWIViewer : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit IWIViewer(QWidget *parent = nullptr);
|
|
|
|
|
~IWIViewer();
|
|
|
|
|
|
|
|
|
|
void MipmapIndexChanged(int aMipmapIndex);
|
|
|
|
|
|
2025-12-19 23:06:03 -05:00
|
|
|
//void SetIWIFile(const IWIFile *aIWIFile);
|
2025-09-05 19:53:11 +00:00
|
|
|
private:
|
|
|
|
|
Ui::IWIViewer *ui;
|
2025-12-19 23:06:03 -05:00
|
|
|
//const IWIFile* mIWIFile;
|
2025-09-05 19:53:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // IWIVIEWER_H
|