mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
1b1f8dd235
each failure. There are several places I was not sure what to do. These are marked by comments beginning "LASSERT:" so they can be found easily. At the moment, they are at: Author.cpp:105: // LASSERT: What should we do here? Author.cpp:121: // LASSERT: What should we do here? Buffer.cpp:4525: // LASSERT: Is it safe to continue here, or should we just return? Cursor.cpp:345: // LASSERT: Is it safe to continue here, or should we return? Cursor.cpp:403: // LASSERT: Is it safe to continue here, or should we return? Cursor.cpp:1143: // LASSERT: There have been several bugs around this code, that seem CursorSlice.cpp:83: // LASSERT: This should only ever be called from an InsetMath. CursorSlice.cpp:92: // LASSERT: This should only ever be called from an InsetMath. LayoutFile.cpp:303: // LASSERT: Why would this fail? Text.cpp:995: // LASSERT: Is it safe to continue here?
143 lines
3.4 KiB
C++
143 lines
3.4 KiB
C++
/**
|
|
* \file GuiIdListModel.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Richard Heck
|
|
*
|
|
* Some of this code is based upon qstringlistmodel.{h,cpp}, which is
|
|
* part of the Qt toolkit, copyright (C) 1992-2007 Trolltech ASA, and
|
|
* released under the General Public License.
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiIdListModel.h"
|
|
|
|
#include "support/lassert.h"
|
|
|
|
using std::vector;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
// Note: Any role that is added here must also be added to setData().
|
|
QVariant GuiIdListModel::data(QModelIndex const & index, int role) const
|
|
{
|
|
int const row = index.row();
|
|
if (!rowIsValid(row))
|
|
return QVariant();
|
|
if (role == Qt::DisplayRole || role == Qt::EditRole)
|
|
return userData_[row].uiString;
|
|
if (role == Qt::ToolTipRole) {
|
|
QString const ttstr = userData_[row].ttString.toString();
|
|
return !ttstr.isEmpty() ? ttstr : userData_[row].uiString;
|
|
}
|
|
if (role == Qt::UserRole)
|
|
return userData_[row].idString;
|
|
return QVariant();
|
|
}
|
|
|
|
|
|
bool GuiIdListModel::setData (QModelIndex const & index,
|
|
const QVariant & value, int role)
|
|
{
|
|
int const row = index.row();
|
|
if (!rowIsValid(row))
|
|
return false;
|
|
if (role == Qt::DisplayRole || role == Qt::EditRole) {
|
|
userData_[row].uiString = value;
|
|
dataChanged(index, index);
|
|
return true;
|
|
}
|
|
if (role == Qt::UserRole) {
|
|
userData_[row].idString = value;
|
|
dataChanged(index, index);
|
|
return true;
|
|
}
|
|
if (role == Qt::ToolTipRole) {
|
|
userData_[row].ttString = value;
|
|
dataChanged(index, index);
|
|
return true;
|
|
}
|
|
// If we assert here, it's because we're trying to set an
|
|
// unrecognized role.
|
|
LATTEST(false);
|
|
return false;
|
|
}
|
|
|
|
|
|
bool GuiIdListModel::insertRows(int row, int count,
|
|
QModelIndex const & /*parent*/)
|
|
{
|
|
if (!rowIsValid(row))
|
|
return false;
|
|
vector<OurData>::iterator it = userData_.begin() + row;
|
|
beginInsertRows(QModelIndex(), row, row + count - 1);
|
|
userData_.insert(it, count, OurData());
|
|
endInsertRows();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool GuiIdListModel::removeRows(int row, int count,
|
|
QModelIndex const & /*parent*/)
|
|
{
|
|
if (!rowIsValid(row) || row + count > int(userData_.size()) ||
|
|
count < 0)
|
|
return false;
|
|
if (count == 0)
|
|
return true;
|
|
vector<OurData>::iterator it = userData_.begin() + row;
|
|
beginRemoveRows(QModelIndex(), row, row + count - 1);
|
|
userData_.erase(it, it + count);
|
|
endRemoveRows();
|
|
return true;
|
|
}
|
|
|
|
|
|
void GuiIdListModel::insertRow(int const i, QString const & uiString,
|
|
std::string const & idString)
|
|
{
|
|
insertRow(i, uiString, idString, uiString);
|
|
}
|
|
|
|
|
|
void GuiIdListModel::insertRow(int const i, QString const & uiString,
|
|
std::string const & idString, QString const & ttString)
|
|
{
|
|
insertRows(i, 1);
|
|
setUIString(i, uiString);
|
|
setIDString(i, idString);
|
|
setTTString(i, ttString);
|
|
}
|
|
|
|
|
|
QMap<int, QVariant> GuiIdListModel::itemData(QModelIndex const & index) const
|
|
{
|
|
int const row = index.row();
|
|
if (!rowIsValid(row))
|
|
return QMap<int, QVariant>();
|
|
QMap<int, QVariant> qm = QAbstractListModel::itemData(index);
|
|
qm[Qt::UserRole] = userData_[row].idString;
|
|
return qm;
|
|
}
|
|
|
|
|
|
int GuiIdListModel::findIDString(std::string const & idString)
|
|
{
|
|
vector<OurData>::const_iterator it = userData_.begin();
|
|
vector<OurData>::const_iterator end = userData_.end();
|
|
for (; it != end; ++it)
|
|
if (fromqstr(it->idString.toString()) == idString)
|
|
return it - userData_.begin();
|
|
return -1;
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|