mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +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
69 lines
1.5 KiB
C++
69 lines
1.5 KiB
C++
#ifndef CSV_WORLD_TABLE_H
|
|
#define CSV_WORLD_TABLE_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <QTableView>
|
|
|
|
class QUndoStack;
|
|
class QAction;
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class Data;
|
|
class UniversalId;
|
|
class IdTableProxyModel;
|
|
class IdTable;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class CommandDelegate;
|
|
|
|
///< Table widget
|
|
class Table : public QTableView
|
|
{
|
|
Q_OBJECT
|
|
|
|
std::vector<CommandDelegate *> mDelegates;
|
|
QUndoStack& mUndoStack;
|
|
QAction *mCreateAction;
|
|
QAction *mRevertAction;
|
|
QAction *mDeleteAction;
|
|
CSMWorld::IdTableProxyModel *mProxyModel;
|
|
CSMWorld::IdTable *mModel;
|
|
bool mEditLock;
|
|
int mRecordStatusDisplay;
|
|
|
|
private:
|
|
|
|
void contextMenuEvent (QContextMenuEvent *event);
|
|
|
|
std::vector<std::string> listRevertableSelectedIds() const;
|
|
|
|
std::vector<std::string> listDeletableSelectedIds() const;
|
|
|
|
public:
|
|
|
|
Table (const CSMWorld::UniversalId& id, CSMWorld::Data& data, QUndoStack& undoStack, bool createAndDelete);
|
|
///< \param createAndDelete Allow creation and deletion of records.
|
|
|
|
void setEditLock (bool locked);
|
|
|
|
CSMWorld::UniversalId getUniversalId (int row) const;
|
|
|
|
void updateEditorSetting (const QString &settingName, const QString &settingValue);
|
|
|
|
private slots:
|
|
|
|
void createRecord();
|
|
|
|
void revertRecord();
|
|
|
|
void deleteRecord();
|
|
};
|
|
}
|
|
|
|
#endif
|