2025-09-05 19:47:15 +00:00
|
|
|
#ifndef FASTFILEVIEWER_H
|
|
|
|
|
#define FASTFILEVIEWER_H
|
|
|
|
|
|
|
|
|
|
#include "fastfile.h"
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class FFViewer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class FastFileViewer : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit FastFileViewer(QWidget *parent = nullptr);
|
|
|
|
|
~FastFileViewer();
|
|
|
|
|
|
|
|
|
|
void SetFastFile(const FastFile *aFastFile);
|
|
|
|
|
private:
|
|
|
|
|
Ui::FFViewer *ui;
|
|
|
|
|
const FastFile* mFastFile;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FASTFILEVIEWER_H
|