mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 11:11:37 +00:00
26 lines
444 B
C++
26 lines
444 B
C++
#ifndef WSCANPREVIEWPANEL_H
|
|
#define WSCANPREVIEWPANEL_H
|
|
|
|
#include "IPreviewPanel.h"
|
|
|
|
namespace Ui {
|
|
class WScanPreviewPanel;
|
|
}
|
|
|
|
class WScanPreviewPanel : public IPreviewPanel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WScanPreviewPanel(QWidget *parent = 0);
|
|
~WScanPreviewPanel();
|
|
QSize sizeHint() const;
|
|
EResType ResType();
|
|
void SetResource(CResource *pRes);
|
|
|
|
private:
|
|
Ui::WScanPreviewPanel *ui;
|
|
};
|
|
|
|
#endif // WSCANPREVIEWPANEL_H
|