mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.6 KiB
C++
76 lines
1.6 KiB
C++
#ifndef CSV_WORLD_TABLESUBVIEW_H
|
|
#define CSV_WORLD_TABLESUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
|
|
#include <QModelIndex>
|
|
#include <QVariant>
|
|
#include <QWidget>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <apps/opencs/model/world/universalid.hpp>
|
|
|
|
class QEvent;
|
|
class QObject;
|
|
class QWidget;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVFilter
|
|
{
|
|
class FilterBox;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class Table;
|
|
class TableBottomBox;
|
|
class CreatorFactoryBase;
|
|
|
|
class TableSubView : public CSVDoc::SubView
|
|
{
|
|
Q_OBJECT
|
|
|
|
Table* mTable;
|
|
TableBottomBox* mBottom;
|
|
CSVFilter::FilterBox* mFilterBox;
|
|
bool mShowOptions;
|
|
QWidget* mOptions;
|
|
|
|
public:
|
|
TableSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document,
|
|
const CreatorFactoryBase& creatorFactory, bool sorting);
|
|
|
|
void setEditLock(bool locked) override;
|
|
|
|
void setStatusBar(bool show) override;
|
|
|
|
void useHint(const std::string& hint) override;
|
|
|
|
protected:
|
|
bool eventFilter(QObject* object, QEvent* event) override;
|
|
|
|
signals:
|
|
void cloneRequest(const std::string&, const CSMWorld::UniversalId::Type);
|
|
|
|
private slots:
|
|
|
|
void editRequest(const CSMWorld::UniversalId& id, const std::string& hint);
|
|
void cloneRequest(const CSMWorld::UniversalId& toClone);
|
|
void createFilterRequest(std::vector<CSMWorld::UniversalId>& types,
|
|
const std::pair<QVariant, std::string>& columnSearchData, Qt::DropAction action);
|
|
void toggleOptions();
|
|
|
|
public slots:
|
|
|
|
void requestFocus(const std::string& id);
|
|
};
|
|
}
|
|
|
|
#endif
|