1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 11:22:45 +01:00
openrw/rwviewer/ArchiveContentsWidget.hpp
2014-02-10 17:22:07 +00:00

27 lines
541 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);
signals:
void selectedFileChanged(const std::string& file);
public slots:
void selectedIndexChanged(const QModelIndex& current);
};
#endif