mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 10:19:55 +00:00
700d55f1fb
Implemented updating editor application from preferences menu, loading settings when editor loads, adding Record Status Display prefernce. Fixed multiple bugs, made changes to CSM(V)Settings classes to make implementing new prefrences easier. Rewrote CSMSettings::UserSettings to retain last-loaded settings. Adjusted icon position in Record Status column Capitalized status text Added delegate to referenceables table
35 lines
655 B
C++
35 lines
655 B
C++
#ifndef CSV_WORLD_TABLESUBVIEW_H
|
|
#define CSV_WORLD_TABLESUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
|
|
class QModelIndex;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class Table;
|
|
|
|
class TableSubView : public CSVDoc::SubView
|
|
{
|
|
Q_OBJECT
|
|
|
|
Table *mTable;
|
|
|
|
public:
|
|
|
|
TableSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document, bool createAndDelete);
|
|
virtual void setEditLock (bool locked);
|
|
void updateEditorSetting (const QString &, const QString &);
|
|
|
|
private slots:
|
|
|
|
void rowActivated (const QModelIndex& index);
|
|
};
|
|
}
|
|
|
|
#endif
|