mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
21 lines
407 B
C++
21 lines
407 B
C++
#pragma once
|
|
#ifndef _ARCHIVECONTENTSWIDGET_HPP_
|
|
#define _ARCHIVECONTENTSWIDGET_HPP_
|
|
#include <QDockWidget>
|
|
#include <QListView>
|
|
#include "IMGArchiveModel.hpp"
|
|
|
|
class ArchiveContentsWidget : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
IMGArchiveModel* model;
|
|
QListView* table;
|
|
|
|
public:
|
|
ArchiveContentsWidget(QWidget* parent = 0, Qt::WindowFlags flags = 0);
|
|
|
|
void setArchive(const LoaderIMG& archive);
|
|
};
|
|
|
|
#endif |