mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-20 15:11:33 +00:00
Resolved compile issues, but not fully working.
This commit is contained in:
parent
fb2ba7610c
commit
6d6ff8c6a4
5 changed files with 51 additions and 51 deletions
|
@ -353,7 +353,7 @@ std::pair< int, int > CSMWorld::IdTable::unfoldIndexAdress (unsigned int id) con
|
|||
--id;
|
||||
int row = id / this->columnCount();
|
||||
int column = id - row * this->columnCount();
|
||||
return std::make_pair<int, int>(row, column);
|
||||
return std::make_pair (row, column);
|
||||
}
|
||||
|
||||
bool CSMWorld::IdTable::hasChildren(const QModelIndex& index) const
|
||||
|
|
|
@ -281,7 +281,7 @@ QWidget* CSVWorld::DialogueDelegateDispatcher::makeEditor(CSMWorld::ColumnBase::
|
|||
connect(proxy, SIGNAL(tableMimeDataDropped(QWidget*, const QModelIndex&, const CSMWorld::UniversalId&, const CSMDoc::Document*)),
|
||||
this, SIGNAL(tableMimeDataDropped(QWidget*, const QModelIndex&, const CSMWorld::UniversalId&, const CSMDoc::Document*)));
|
||||
|
||||
skip = true;
|
||||
//skip = true;
|
||||
}
|
||||
else if (qobject_cast<QCheckBox*>(editor))
|
||||
{
|
||||
|
@ -298,7 +298,7 @@ QWidget* CSVWorld::DialogueDelegateDispatcher::makeEditor(CSMWorld::ColumnBase::
|
|||
else if (qobject_cast<QAbstractSpinBox*>(editor))
|
||||
{
|
||||
connect(editor, SIGNAL(editingFinished()), proxy, SLOT(editorDataCommited()));
|
||||
} //lisp cond pairs would be nice in the C++
|
||||
}
|
||||
|
||||
connect(proxy, SIGNAL(editorDataCommited(QWidget*, const QModelIndex&, CSMWorld::ColumnBase::Display)),
|
||||
this, SLOT(editorDataCommited(QWidget*, const QModelIndex&, CSMWorld::ColumnBase::Display)));
|
||||
|
@ -328,8 +328,8 @@ CSVWorld::EditWidget::~EditWidget()
|
|||
}
|
||||
}
|
||||
|
||||
CSVWorld::EditWidget::EditWidget(QWidget *parent, int row, CSMWorld::IdTable* table, QUndoStack& undoStack, bool createAndDelete) :
|
||||
mDispatcher(this, table, undoStack),
|
||||
CSVWorld::EditWidget::EditWidget(QWidget *parent, int row, CSMWorld::IdTable* table, CSMDoc::Document& document, bool createAndDelete) :
|
||||
mDispatcher(this, table, document),
|
||||
QScrollArea(parent),
|
||||
mWidgetMapper(NULL),
|
||||
mMainWidget(NULL),
|
||||
|
@ -402,7 +402,7 @@ void CSVWorld::EditWidget::remake(int row)
|
|||
{
|
||||
mNestedModels.push_back(new CSMWorld::NestedTableModel (mTable->index(row, i), display, mTable));
|
||||
|
||||
NestedTable* table = new NestedTable(mUndoStack, *(mNestedModels.rbegin()), this);
|
||||
NestedTable* table = new NestedTable(mDocument, *(mNestedModels.rbegin()), this);
|
||||
|
||||
tablesLayout->addWidget(table);
|
||||
} else
|
||||
|
@ -517,7 +517,7 @@ CSVWorld::DialogueSubView::DialogueSubView (const CSMWorld::UniversalId& id, CSM
|
|||
|
||||
mMainLayout = new QVBoxLayout(mainWidget);
|
||||
|
||||
mEditWidget = new EditWidget(mainWidget, mTable->getModelIndex(mCurrentId, 0).row(), mTable, mUndoStack, false);
|
||||
mEditWidget = new EditWidget(mainWidget, mTable->getModelIndex(mCurrentId, 0).row(), mTable, document, false);
|
||||
connect(mEditWidget, SIGNAL(tableMimeDataDropped(QWidget*, const QModelIndex&, const CSMWorld::UniversalId&, const CSMDoc::Document*)),
|
||||
this, SLOT(tableMimeDataDropped(QWidget*, const QModelIndex&, const CSMWorld::UniversalId&, const CSMDoc::Document*)));
|
||||
|
||||
|
@ -570,7 +570,7 @@ void CSVWorld::DialogueSubView::prevId ()
|
|||
setUniversalId(CSMWorld::UniversalId (static_cast<CSMWorld::UniversalId::Type> (mTable->data (mTable->index (newRow, 2)).toInt()),
|
||||
mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
|
||||
changeCurrentId(std::string(mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
changeCurrentId(std::string(mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
|
||||
mEditWidget->setDisabled(mLocked);
|
||||
|
||||
|
@ -604,9 +604,9 @@ void CSVWorld::DialogueSubView::nextId ()
|
|||
mEditWidget->remake(newRow);
|
||||
|
||||
setUniversalId(CSMWorld::UniversalId (static_cast<CSMWorld::UniversalId::Type> (mTable->data (mTable->index (newRow, 2)).toInt()),
|
||||
mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
|
||||
changeCurrentId(std::string(mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
changeCurrentId(std::string(mTable->data (mTable->index (newRow, 0)).toString().toUtf8().constData()));
|
||||
|
||||
mEditWidget->setDisabled(mLocked);
|
||||
|
||||
|
@ -623,11 +623,11 @@ void CSVWorld::DialogueSubView::setEditLock (bool locked)
|
|||
|
||||
if (currentIndex.isValid())
|
||||
{
|
||||
CSMWorld::RecordBase::State state = static_cast<CSMWorld::RecordBase::State>(mTable->data (mTable->index (currentIndex.row(), 1)).toInt());
|
||||
CSMWorld::RecordBase::State state = static_cast<CSMWorld::RecordBase::State>(mTable->data (mTable->index (currentIndex.row(), 1)).toInt());
|
||||
|
||||
mEditWidget->setDisabled (state==CSMWorld::RecordBase::State_Deleted || locked);
|
||||
mEditWidget->setDisabled (state==CSMWorld::RecordBase::State_Deleted || locked);
|
||||
|
||||
mCommandDispatcher.setEditLock (locked);
|
||||
mCommandDispatcher.setEditLock (locked);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -640,14 +640,14 @@ void CSVWorld::DialogueSubView::dataChanged (const QModelIndex & index)
|
|||
{
|
||||
CSMWorld::RecordBase::State state = static_cast<CSMWorld::RecordBase::State>(mTable->data (mTable->index (currentIndex.row(), 1)).toInt());
|
||||
|
||||
mEditWidget->setDisabled (state==CSMWorld::RecordBase::State_Deleted || mLocked);
|
||||
mEditWidget->setDisabled (state==CSMWorld::RecordBase::State_Deleted || mLocked);
|
||||
}
|
||||
}
|
||||
|
||||
void CSVWorld::DialogueSubView::tableMimeDataDropped (QWidget* editor,
|
||||
const QModelIndex& index,
|
||||
const CSMWorld::UniversalId& id,
|
||||
const CSMDoc::Document* document)
|
||||
const QModelIndex& index,
|
||||
const CSMWorld::UniversalId& id,
|
||||
const CSMDoc::Document* document)
|
||||
{
|
||||
if (document == &mDocument)
|
||||
{
|
||||
|
@ -672,10 +672,10 @@ void CSVWorld::DialogueSubView::showPreview ()
|
|||
QModelIndex currentIndex(mTable->getModelIndex(mCurrentId, 0));
|
||||
|
||||
if (currentIndex.isValid() &&
|
||||
mTable->getFeatures() & CSMWorld::IdTable::Feature_Preview &&
|
||||
currentIndex.row() < mTable->rowCount())
|
||||
mTable->getFeatures() & CSMWorld::IdTable::Feature_Preview &&
|
||||
currentIndex.row() < mTable->rowCount())
|
||||
{
|
||||
emit focusId(CSMWorld::UniversalId(CSMWorld::UniversalId::Type_Preview, mCurrentId), "");
|
||||
emit focusId(CSMWorld::UniversalId(CSMWorld::UniversalId::Type_Preview, mCurrentId), "");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -684,7 +684,7 @@ void CSVWorld::DialogueSubView::viewRecord ()
|
|||
QModelIndex currentIndex(mTable->getModelIndex (mCurrentId, 0));
|
||||
|
||||
if (currentIndex.isValid() &&
|
||||
currentIndex.row() < mTable->rowCount())
|
||||
currentIndex.row() < mTable->rowCount())
|
||||
{
|
||||
std::pair<CSMWorld::UniversalId, std::string> params = mTable->view (currentIndex.row());
|
||||
|
||||
|
|
|
@ -118,12 +118,12 @@ namespace CSVWorld
|
|||
NotEditableSubDelegate mNotEditableDelegate;
|
||||
|
||||
std::vector<DialogueDelegateDispatcherProxy*> mProxys;
|
||||
//once we move to the C++11 we should use unique_ptr
|
||||
//once we move to the C++11 we should use unique_ptr
|
||||
|
||||
public:
|
||||
DialogueDelegateDispatcher(QObject* parent,
|
||||
CSMWorld::IdTable* table,
|
||||
QUndoStack& undoStack);
|
||||
CSMDoc::Document& document);
|
||||
|
||||
~DialogueDelegateDispatcher();
|
||||
|
||||
|
@ -175,7 +175,7 @@ namespace CSVWorld
|
|||
public:
|
||||
|
||||
EditWidget (QWidget *parent, int row, CSMWorld::IdTable* table,
|
||||
QUndoStack& undoStack, bool createAndDelete = false);
|
||||
CSMDoc::Document& document, bool createAndDelete = false);
|
||||
|
||||
virtual ~EditWidget();
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
#include <QMenu>
|
||||
#include <QDebug>
|
||||
|
||||
CSVWorld::NestedTable::NestedTable(QUndoStack& undoStack,
|
||||
CSVWorld::NestedTable::NestedTable(CSMDoc::Document& document,
|
||||
CSMWorld::NestedTableModel* model,
|
||||
QWidget* parent)
|
||||
: QTableView(parent),
|
||||
mUndoStack(undoStack),
|
||||
mUndoStack(document.getUndoStack()),
|
||||
mModel(model)
|
||||
{
|
||||
|
||||
|
@ -31,7 +31,7 @@ CSVWorld::NestedTable::NestedTable(QUndoStack& undoStack,
|
|||
model->headerData (i, Qt::Horizontal, CSMWorld::ColumnBase::Role_Display).toInt());
|
||||
|
||||
CommandDelegate *delegate = CommandDelegateFactoryCollection::get().makeDelegate(display,
|
||||
undoStack,
|
||||
document,
|
||||
this);
|
||||
|
||||
setItemDelegateForColumn(i, delegate);
|
||||
|
|
|
@ -31,7 +31,7 @@ namespace CSVWorld
|
|||
CSMWorld::NestedTableModel* mModel;
|
||||
|
||||
public:
|
||||
NestedTable(QUndoStack& undoStack,
|
||||
NestedTable(CSMDoc::Document& document,
|
||||
CSMWorld::NestedTableModel* model,
|
||||
QWidget* parent = NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue