forked from mirror/openmw-tes3mp
refactored mapping from message severity enum to string
This commit is contained in:
parent
2d8a78726d
commit
9b12b4f1e2
4 changed files with 28 additions and 18 deletions
|
@ -8,6 +8,20 @@ CSMDoc::Message::Message (const CSMWorld::UniversalId& id, const std::string& me
|
||||||
: mId (id), mMessage (message), mHint (hint), mSeverity (severity)
|
: mId (id), mMessage (message), mHint (hint), mSeverity (severity)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
std::string CSMDoc::Message::toString (Severity severity)
|
||||||
|
{
|
||||||
|
switch (severity)
|
||||||
|
{
|
||||||
|
case CSMDoc::Message::Severity_Info: return "Information";
|
||||||
|
case CSMDoc::Message::Severity_Warning: return "Warning";
|
||||||
|
case CSMDoc::Message::Severity_Error: return "Error";
|
||||||
|
case CSMDoc::Message::Severity_SeriousError: return "Serious Error";
|
||||||
|
case CSMDoc::Message::Severity_Default: break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
CSMDoc::Messages::Messages (Message::Severity default_)
|
CSMDoc::Messages::Messages (Message::Severity default_)
|
||||||
: mDefault (default_)
|
: mDefault (default_)
|
||||||
|
|
|
@ -31,6 +31,8 @@ namespace CSMDoc
|
||||||
|
|
||||||
Message (const CSMWorld::UniversalId& id, const std::string& message,
|
Message (const CSMWorld::UniversalId& id, const std::string& message,
|
||||||
const std::string& hint, Severity severity);
|
const std::string& hint, Severity severity);
|
||||||
|
|
||||||
|
static std::string toString (Severity severity);
|
||||||
};
|
};
|
||||||
|
|
||||||
class Messages
|
class Messages
|
||||||
|
|
|
@ -85,14 +85,8 @@ QVariant CSMTools::ReportModel::data (const QModelIndex & index, int role) const
|
||||||
|
|
||||||
if (index.column()==mColumnSeverity)
|
if (index.column()==mColumnSeverity)
|
||||||
{
|
{
|
||||||
switch (mRows.at (index.row()).mSeverity)
|
return QString::fromUtf8 (
|
||||||
{
|
CSMDoc::Message::toString (mRows.at (index.row()).mSeverity).c_str());
|
||||||
case CSMDoc::Message::Severity_Info: return "Information";
|
|
||||||
case CSMDoc::Message::Severity_Warning: return "Warning";
|
|
||||||
case CSMDoc::Message::Severity_Error: return "Error";
|
|
||||||
case CSMDoc::Message::Severity_SeriousError: return "Serious Error";
|
|
||||||
case CSMDoc::Message::Severity_Default: break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
|
@ -34,7 +34,7 @@ void CSVWorld::ScriptErrorTable::addMessage (const std::string& message,
|
||||||
|
|
||||||
setRowCount (row+1);
|
setRowCount (row+1);
|
||||||
|
|
||||||
setItem (row, 0, new QTableWidgetItem (""));
|
setItem (row, 0, new QTableWidgetItem (QString::fromUtf8 (CSMDoc::Message::toString (severity).c_str())));
|
||||||
|
|
||||||
if (line!=-1)
|
if (line!=-1)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue