1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-22 18:32:44 +01:00
openrw/rwviewer/ArchiveContentsWidget.hpp

27 lines
537 B
C++
Raw Normal View History

2014-02-10 16:34:09 +01:00
#pragma once
#ifndef _ARCHIVECONTENTSWIDGET_HPP_
#define _ARCHIVECONTENTSWIDGET_HPP_
#include <QDockWidget>
2014-02-10 17:21:30 +01:00
#include <QListView>
#include "IMGArchiveModel.hpp"
2014-02-10 16:34:09 +01:00
class ArchiveContentsWidget : public QDockWidget
{
Q_OBJECT
2014-02-10 17:21:30 +01:00
IMGArchiveModel* model;
QListView* table;
2014-02-10 16:34:09 +01:00
public:
ArchiveContentsWidget(QWidget* parent = 0, Qt::WindowFlags flags = 0);
void setArchive(const LoaderIMG& archive);
2014-02-10 18:22:07 +01:00
signals:
2014-02-11 06:46:29 +01:00
void selectedFileChanged(const QString& file);
2014-02-10 18:22:07 +01:00
public slots:
void selectedIndexChanged(const QModelIndex& current);
2014-02-10 16:34:09 +01:00
};
#endif