summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-06-12 11:55:57 +0200
committerhjk <hjk@theqtcompany.com>2015-06-15 13:45:27 +0000
commit5c054dd24a7813746ca8e8a8e486ab8d0e8f4979 (patch)
tree1639bbdfc5f7c209263e24195d9345c1e0143dc7
parent437c4735d1f40f827f86e17102e5cf24f74717c4 (diff)
downloadqt-creator-5c054dd24a7813746ca8e8a8e486ab8d0e8f4979.tar.gz
Debugger: Use TreeModel for threads
In preparation of the introduction of thread groups. Change-Id: Iadac9203eb4d60d0bc930113c2776e65352ed304 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
-rw-r--r--src/plugins/debugger/debuggercore.h2
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp6
-rw-r--r--src/plugins/debugger/threaddata.h11
-rw-r--r--src/plugins/debugger/threadshandler.cpp505
-rw-r--r--src/plugins/debugger/threadshandler.h27
5 files changed, 240 insertions, 311 deletions
diff --git a/src/plugins/debugger/debuggercore.h b/src/plugins/debugger/debuggercore.h
index 128fe9c56d..7e091496d8 100644
--- a/src/plugins/debugger/debuggercore.h
+++ b/src/plugins/debugger/debuggercore.h
@@ -89,7 +89,7 @@ void showModuleSymbols(const QString &moduleName, const QVector<Internal::Symbol
void showModuleSections(const QString &moduleName, const QVector<Internal::Section> &sections);
void openMemoryEditor();
-void setThreads(const QStringList &list, int index);
+void setThreadBoxContents(const QStringList &list, int index);
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions();
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 7128888c84..df1271e963 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -609,7 +609,7 @@ public:
void disconnectEngine() { connectEngine(0); }
DebuggerEngine *dummyEngine();
- void setThreads(const QStringList &list, int index)
+ void setThreadBoxContents(const QStringList &list, int index)
{
const bool state = m_threadBox->blockSignals(true);
m_threadBox->clear();
@@ -3214,9 +3214,9 @@ void openMemoryEditor()
}
}
-void setThreads(const QStringList &list, int index)
+void setThreadBoxContents(const QStringList &list, int index)
{
- dd->setThreads(list, index);
+ dd->setThreadBoxContents(list, index);
}
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions()
diff --git a/src/plugins/debugger/threaddata.h b/src/plugins/debugger/threaddata.h
index eb8a252643..8f3b557541 100644
--- a/src/plugins/debugger/threaddata.h
+++ b/src/plugins/debugger/threaddata.h
@@ -93,17 +93,6 @@ struct ThreadData
IdRole = Qt::UserRole
};
- void notifyRunning() // Clear state information.
- {
- address = 0;
- function.clear();
- fileName.clear();
- frameLevel = -1;
- state.clear();
- lineNumber = -1;
- stopped = false;
- }
-
// Permanent data.
ThreadId id;
QByteArray groupId;
diff --git a/src/plugins/debugger/threadshandler.cpp b/src/plugins/debugger/threadshandler.cpp
index 72dcbb114f..d69d9b993d 100644
--- a/src/plugins/debugger/threadshandler.cpp
+++ b/src/plugins/debugger/threadshandler.cpp
@@ -37,113 +37,187 @@
#include <utils/algorithm.h>
#include <utils/qtcassert.h>
+#include <QCoreApplication>
#include <QDebug>
+#include <QIcon>
+
+using namespace Utils;
namespace Debugger {
namespace Internal {
-static void mergeThreadData(ThreadData &data, const ThreadData &other)
+////////////////////////////////////////////////////////////////////////
+//
+// ThreadItem
+//
+///////////////////////////////////////////////////////////////////////
+
+static const QIcon &positionIcon()
{
- if (!other.core.isEmpty())
- data.core = other.core;
- if (!other.fileName.isEmpty())
- data.fileName = other.fileName;
- if (!other.targetId.isEmpty())
- data.targetId = other.targetId;
- if (!other.name.isEmpty())
- data.name = other.name;
- if (other.frameLevel != -1)
- data.frameLevel = other.frameLevel;
- if (!other.function.isEmpty())
- data.function = other.function;
- if (other.address)
- data.address = other.address;
- if (!other.module.isEmpty())
- data.module = other.module;
- if (!other.details.isEmpty())
- data.details = other.details;
- if (!other.state.isEmpty())
- data.state = other.state;
- if (other.lineNumber != -1)
- data.lineNumber = other.lineNumber;
+ static QIcon icon(QLatin1String(":/debugger/images/location_16.png"));
+ return icon;
}
-static QVariant threadPart(const ThreadData &thread, int column)
+static const QIcon &emptyIcon()
{
- switch (column) {
- case ThreadData::IdColumn:
- return thread.id.raw();
- case ThreadData::FunctionColumn:
- return thread.function;
- case ThreadData::FileColumn:
- return thread.fileName.isEmpty() ? thread.module : thread.fileName;
- case ThreadData::LineColumn:
- return thread.lineNumber >= 0
- ? QString::number(thread.lineNumber) : QString();
- case ThreadData::AddressColumn:
- return thread.address > 0
- ? QLatin1String("0x") + QString::number(thread.address, 16)
- : QString();
- case ThreadData::CoreColumn:
- return thread.core;
- case ThreadData::StateColumn:
- return thread.state;
- case ThreadData::TargetIdColumn:
- if (thread.targetId.startsWith(QLatin1String("Thread ")))
- return thread.targetId.mid(7);
- return thread.targetId;
- case ThreadData::NameColumn:
- return thread.name;
- case ThreadData::DetailsColumn:
- return thread.details;
- case ThreadData::ComboNameColumn:
- return QString::fromLatin1("#%1 %2").arg(thread.id.raw()).arg(thread.name);
- }
- return QVariant();
+ static QIcon icon(QLatin1String(":/debugger/images/debugger_empty_14.png"));
+ return icon;
}
-////////////////////////////////////////////////////////////////////////
-//
-// ThreadsHandler
-//
-///////////////////////////////////////////////////////////////////////
-
-static QString threadToolTip(const ThreadData &thread)
+class ThreadItem : public TreeItem, public ThreadData
{
- const char start[] = "<tr><td>";
- const char sep[] = "</td><td>";
- const char end[] = "</td>";
- QString rc;
- QTextStream str(&rc);
- str << "<html><head/><body><table>"
- << start << ThreadsHandler::tr("Thread&nbsp;id:")
- << sep << thread.id.raw() << end;
- if (!thread.targetId.isEmpty())
- str << start << ThreadsHandler::tr("Target&nbsp;id:")
- << sep << thread.targetId << end;
- if (!thread.groupId.isEmpty())
- str << start << ThreadsHandler::tr("Group&nbsp;id:")
- << sep << thread.groupId << end;
- if (!thread.name.isEmpty())
- str << start << ThreadsHandler::tr("Name:")
- << sep << thread.name << end;
- if (!thread.state.isEmpty())
- str << start << ThreadsHandler::tr("State:")
- << sep << thread.state << end;
- if (!thread.core.isEmpty())
- str << start << ThreadsHandler::tr("Core:")
- << sep << thread.core << end;
- if (thread.address) {
- str << start << ThreadsHandler::tr("Stopped&nbsp;at:") << sep;
- if (!thread.function.isEmpty())
- str << thread.function << "<br>";
- if (!thread.fileName.isEmpty())
- str << thread.fileName << ':' << thread.lineNumber << "<br>";
- str << formatToolTipAddress(thread.address);
+ Q_DECLARE_TR_FUNCTIONS(Debugger::Internal::ThreadsHandler)
+
+public:
+ ThreadItem(const ThreadsHandler *handler, const ThreadData &data = ThreadData())
+ : ThreadData(data), handler(handler)
+ {}
+
+ QVariant data(int column, int role) const
+ {
+ switch (role) {
+ case Qt::DisplayRole:
+ return threadPart(column);
+ case Qt::ToolTipRole:
+ return threadToolTip();
+ case Qt::DecorationRole:
+ // Return icon that indicates whether this is the active stack frame.
+ if (column == 0)
+ return id == handler->currentThread() ? positionIcon() : emptyIcon();
+ break;
+ case ThreadData::IdRole:
+ return id.raw();
+ default:
+ break;
+ }
+ return QVariant();
+ }
+
+ Qt::ItemFlags flags(int column) const
+ {
+ return stopped ? TreeItem::flags(column) : Qt::ItemFlags(0);
+ }
+
+ QString threadToolTip() const
+ {
+ const char start[] = "<tr><td>";
+ const char sep[] = "</td><td>";
+ const char end[] = "</td>";
+ QString rc;
+ QTextStream str(&rc);
+ str << "<html><head/><body><table>"
+ << start << ThreadsHandler::tr("Thread&nbsp;id:")
+ << sep << id.raw() << end;
+ if (!targetId.isEmpty())
+ str << start << ThreadsHandler::tr("Target&nbsp;id:")
+ << sep << targetId << end;
+ if (!groupId.isEmpty())
+ str << start << ThreadsHandler::tr("Group&nbsp;id:")
+ << sep << groupId << end;
+ if (!name.isEmpty())
+ str << start << ThreadsHandler::tr("Name:")
+ << sep << name << end;
+ if (!state.isEmpty())
+ str << start << ThreadsHandler::tr("State:")
+ << sep << state << end;
+ if (!core.isEmpty())
+ str << start << ThreadsHandler::tr("Core:")
+ << sep << core << end;
+ if (address) {
+ str << start << ThreadsHandler::tr("Stopped&nbsp;at:") << sep;
+ if (!function.isEmpty())
+ str << function << "<br>";
+ if (!fileName.isEmpty())
+ str << fileName << ':' << lineNumber << "<br>";
+ str << formatToolTipAddress(address);
+ }
+ str << "</table></body></html>";
+ return rc;
+ }
+
+ QVariant threadPart(int column) const
+ {
+ switch (column) {
+ case ThreadData::IdColumn:
+ return id.raw();
+ case ThreadData::FunctionColumn:
+ return function;
+ case ThreadData::FileColumn:
+ return fileName.isEmpty() ? module : fileName;
+ case ThreadData::LineColumn:
+ return lineNumber >= 0
+ ? QString::number(lineNumber) : QString();
+ case ThreadData::AddressColumn:
+ return address > 0
+ ? QLatin1String("0x") + QString::number(address, 16)
+ : QString();
+ case ThreadData::CoreColumn:
+ return core;
+ case ThreadData::StateColumn:
+ return state;
+ case ThreadData::TargetIdColumn:
+ if (targetId.startsWith(QLatin1String("Thread ")))
+ return targetId.mid(7);
+ return targetId;
+ case ThreadData::NameColumn:
+ return name;
+ case ThreadData::DetailsColumn:
+ return details;
+ case ThreadData::ComboNameColumn:
+ return QString::fromLatin1("#%1 %2").arg(id.raw()).arg(name);
+ }
+ return QVariant();
}
- str << "</table></body></html>";
- return rc;
-}
+
+ void notifyRunning() // Clear state information.
+ {
+ address = 0;
+ function.clear();
+ fileName.clear();
+ frameLevel = -1;
+ state.clear();
+ lineNumber = -1;
+ stopped = false;
+ update();
+ }
+
+ void notifyStopped()
+ {
+ stopped = true;
+ update();
+ }
+
+ void mergeThreadData(const ThreadData &other)
+ {
+ if (!other.core.isEmpty())
+ core = other.core;
+ if (!other.fileName.isEmpty())
+ fileName = other.fileName;
+ if (!other.targetId.isEmpty())
+ targetId = other.targetId;
+ if (!other.name.isEmpty())
+ name = other.name;
+ if (other.frameLevel != -1)
+ frameLevel = other.frameLevel;
+ if (!other.function.isEmpty())
+ function = other.function;
+ if (other.address)
+ address = other.address;
+ if (!other.module.isEmpty())
+ module = other.module;
+ if (!other.details.isEmpty())
+ details = other.details;
+ if (!other.state.isEmpty())
+ state = other.state;
+ if (other.lineNumber != -1)
+ lineNumber = other.lineNumber;
+ update();
+ }
+
+
+public:
+ const ThreadsHandler * const handler;
+};
////////////////////////////////////////////////////////////////////////
//
@@ -166,108 +240,46 @@ static QString threadToolTip(const ThreadData &thread)
*/
ThreadsHandler::ThreadsHandler()
- : m_currentId(),
- m_positionIcon(QLatin1String(":/debugger/images/location_16.png")),
- m_emptyIcon(QLatin1String(":/debugger/images/debugger_empty_14.png"))
{
m_resetLocationScheduled = false;
setObjectName(QLatin1String("ThreadsModel"));
+ setRootItem(new ThreadItem(this));
+ setHeader({
+ QLatin1String(" ") + tr("ID") + QLatin1String(" "),
+ tr("Address"), tr("Function"), tr("File"), tr("Line"), tr("State"),
+ tr("Name"), tr("Target ID"), tr("Details"), tr("Core"),
+ });
}
-int ThreadsHandler::currentThreadIndex() const
+static ThreadItem *itemForThreadId(const ThreadsHandler *handler, ThreadId threadId)
{
- return indexOf(m_currentId);
+ const auto matcher = [threadId](ThreadItem *item) { return item->id == threadId; };
+ return handler->findItemAtLevel<ThreadItem *>(1, matcher);
}
-int ThreadsHandler::rowCount(const QModelIndex &parent) const
+static int indexForThreadId(const ThreadsHandler *handler, ThreadId threadId)
{
- // Since the stack is not a tree, row count is 0 for any valid parent.
- return parent.isValid() ? 0 : m_threads.size();
+ ThreadItem *item = itemForThreadId(handler, threadId);
+ return item ? handler->rootItem()->children().indexOf(item) : -1;
}
-int ThreadsHandler::columnCount(const QModelIndex &parent) const
-{
- return parent.isValid() ? 0 : int(ThreadData::ColumnCount);
-}
-
-QVariant ThreadsHandler::data(const QModelIndex &index, int role) const
-{
- if (!index.isValid())
- return QVariant();
- const int row = index.row();
- if (row >= m_threads.size())
- return QVariant();
- const ThreadData &thread = m_threads.at(row);
-
- switch (role) {
- case Qt::DisplayRole:
- return threadPart(thread, index.column());
- case Qt::ToolTipRole:
- return threadToolTip(thread);
- case Qt::DecorationRole:
- // Return icon that indicates whether this is the active stack frame.
- if (index.column() == 0)
- return (thread.id == m_currentId) ? m_positionIcon : m_emptyIcon;
- break;
- case ThreadData::IdRole:
- return thread.id.raw();
- default:
- break;
- }
- return QVariant();
-}
-
-QVariant ThreadsHandler::headerData
- (int section, Qt::Orientation orientation, int role) const
-{
- if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
- return QVariant();
- switch (section) {
- case ThreadData::IdColumn:
- return QString(QLatin1String(" ") + tr("ID") + QLatin1String(" "));
- case ThreadData::FunctionColumn:
- return tr("Function");
- case ThreadData::FileColumn:
- return tr("File");
- case ThreadData::LineColumn:
- return tr("Line");
- case ThreadData::AddressColumn:
- return tr("Address");
- case ThreadData::CoreColumn:
- return tr("Core");
- case ThreadData::StateColumn:
- return tr("State");
- case ThreadData::TargetIdColumn:
- return tr("Target ID");
- case ThreadData::DetailsColumn:
- return tr("Details");
- case ThreadData::NameColumn:
- return tr("Name");
- }
- return QVariant();
-}
-
-Qt::ItemFlags ThreadsHandler::flags(const QModelIndex &index) const
+int ThreadsHandler::currentThreadIndex() const
{
- const int row = index.row();
- const bool stopped = row >= 0 && row < m_threads.size()
- && m_threads.at(row).stopped;
- return stopped ? QAbstractTableModel::flags(index) : Qt::ItemFlags(0);
+ return indexForThreadId(this, m_currentId);
}
void ThreadsHandler::sort(int column, Qt::SortOrder order)
{
- layoutAboutToBeChanged();
- Utils::sort(m_threads, [&](const ThreadData &t1, const ThreadData &t2) -> bool {
- const QVariant v1 = threadPart(t1, column);
- const QVariant v2 = threadPart(t2, column);
+ rootItem()->sortChildren([order, column](const TreeItem *item1, const TreeItem *item2) -> bool {
+ const QVariant v1 = static_cast<const ThreadItem *>(item1)->threadPart(column);
+ const QVariant v2 = static_cast<const ThreadItem *>(item2)->threadPart(column);
if (v1 == v2)
return false;
+ if (column == 0)
+ return (v1.toInt() < v2.toInt()) ^ (order == Qt::DescendingOrder);
// FIXME: Use correct toXXX();
return (v1.toString() < v2.toString()) ^ (order == Qt::DescendingOrder);
- }
-);
- layoutChanged();
+ });
}
ThreadId ThreadsHandler::currentThread() const
@@ -277,8 +289,8 @@ ThreadId ThreadsHandler::currentThread() const
ThreadId ThreadsHandler::threadAt(int index) const
{
- QTC_ASSERT(index >= 0 && index < m_threads.size(), return ThreadId());
- return m_threads[index].id;
+ QTC_ASSERT(index >= 0 && index < rootItem()->childCount(), return ThreadId());
+ return static_cast<ThreadItem *>(rootItem()->childAt(index))->id;
}
void ThreadsHandler::setCurrentThread(ThreadId id)
@@ -286,106 +298,66 @@ void ThreadsHandler::setCurrentThread(ThreadId id)
if (id == m_currentId)
return;
- const int index = indexOf(id);
- if (index == -1) {
+ ThreadItem *newItem = itemForThreadId(this, id);
+ if (!newItem) {
qWarning("ThreadsHandler::setCurrentThreadId: No such thread %d.", int(id.raw()));
return;
}
- // Emit changed for previous frame.
- threadDataChanged(m_currentId);
-
+ ThreadItem *oldItem = itemForThreadId(this, m_currentId);
m_currentId = id;
+ if (oldItem)
+ oldItem->update();
- // Emit changed for new frame.
- threadDataChanged(m_currentId);
+ newItem->update();
updateThreadBox();
}
-int ThreadsHandler::indexOf(ThreadId threadId) const
+void ThreadsHandler::updateThread(const ThreadData &threadData)
{
- for (int i = m_threads.size(); --i >= 0; )
- if (m_threads.at(i).id == threadId)
- return i;
- return -1;
-}
-
-void ThreadsHandler::updateThread(const ThreadData &thread)
-{
- const int i = indexOf(thread.id);
- if (i == -1) {
- beginInsertRows(QModelIndex(), m_threads.size(), m_threads.size());
- m_threads.append(thread);
- endInsertRows();
- } else {
- mergeThreadData(m_threads[i], thread);
- threadDataChanged(thread.id);
- }
+ if (ThreadItem *item = itemForThreadId(this, threadData.id))
+ item->mergeThreadData(threadData);
+ else
+ rootItem()->appendChild(new ThreadItem(this, threadData));
}
void ThreadsHandler::removeThread(ThreadId threadId)
{
- const int i = indexOf(threadId);
- if (i == -1)
- return;
- beginRemoveRows(QModelIndex(), i, i);
- m_threads.remove(i);
- endRemoveRows();
+ if (ThreadItem *item = itemForThreadId(this, threadId))
+ delete takeItem(item);
}
void ThreadsHandler::setThreads(const Threads &threads)
{
- beginResetModel();
- m_threads = threads;
- bool found = false;
- for (int i = 0, n = m_threads.size(); i < n; ++i)
- if (threads.at(i).id == m_currentId) {
- found = true;
- break;
- }
- if (!found)
- m_currentId = ThreadId();
+ auto root = new ThreadItem(this);
+ for (int i = 0, n = threads.size(); i < n; ++i)
+ root->appendChild(new ThreadItem(this, threads.at(i)));
+ rootItem()->removeChildren();
+ setRootItem(root);
m_resetLocationScheduled = false;
- endResetModel();
updateThreadBox();
}
void ThreadsHandler::updateThreadBox()
{
QStringList list;
- foreach (const ThreadData &thread, m_threads)
- list.append(QString::fromLatin1("#%1 %2").arg(thread.id.raw()).arg(thread.name));
- Internal::setThreads(list, indexOf(m_currentId));
-}
-
-void ThreadsHandler::threadDataChanged(ThreadId id)
-{
- int row = indexOf(id);
- if (row < 0)
- return;
- QModelIndex l = index(row, 0);
- QModelIndex r = index(row, ThreadData::ColumnCount - 1);
- dataChanged(l, r);
-}
-
-Threads ThreadsHandler::threads() const
-{
- return m_threads;
+ auto items = itemsAtLevel<ThreadItem *>(1);
+ foreach (ThreadItem *item, items)
+ list.append(QString::fromLatin1("#%1 %2").arg(item->id.raw()).arg(item->name));
+ Internal::setThreadBoxContents(list, indexForThreadId(this, m_currentId));
}
ThreadData ThreadsHandler::thread(ThreadId id) const
{
- const int i = indexOf(id);
- return i == -1 ? ThreadData() : m_threads.at(i);
+ if (ThreadItem *item = itemForThreadId(this, id))
+ return *item;
+ return ThreadData();
}
void ThreadsHandler::removeAll()
{
- beginResetModel();
- m_threads.clear();
- m_currentId = ThreadId();
- endResetModel();
+ rootItem()->removeChildren();
}
void ThreadsHandler::notifyRunning(const QByteArray &data)
@@ -404,18 +376,15 @@ void ThreadsHandler::notifyRunning(const QByteArray &data)
void ThreadsHandler::notifyAllRunning()
{
- for (int i = m_threads.size(); --i >= 0; )
- m_threads[i].notifyRunning();
- layoutChanged();
+ auto items = itemsAtLevel<ThreadItem *>(1);
+ foreach (ThreadItem *item, items)
+ item->notifyRunning();
}
-void ThreadsHandler::notifyRunning(ThreadId id)
+void ThreadsHandler::notifyRunning(ThreadId threadId)
{
- int i = indexOf(id);
- if (i >= 0) {
- m_threads[i].notifyRunning();
- threadDataChanged(id);
- }
+ if (ThreadItem *item = itemForThreadId(this, threadId))
+ item->notifyRunning();
}
void ThreadsHandler::notifyStopped(const QByteArray &data)
@@ -434,18 +403,15 @@ void ThreadsHandler::notifyStopped(const QByteArray &data)
void ThreadsHandler::notifyAllStopped()
{
- for (int i = m_threads.size(); --i >= 0; )
- m_threads[i].stopped = true;
- layoutChanged();
+ auto items = itemsAtLevel<ThreadItem *>(1);
+ foreach (ThreadItem *item, items)
+ item->notifyStopped();
}
-void ThreadsHandler::notifyStopped(ThreadId id)
+void ThreadsHandler::notifyStopped(ThreadId threadId)
{
- int i = indexOf(id);
- if (i >= 0) {
- m_threads[i].stopped = true;
- threadDataChanged(id);
- }
+ if (ThreadItem *item = itemForThreadId(this, threadId))
+ item->notifyStopped();
}
void ThreadsHandler::updateThreads(const GdbMi &data)
@@ -455,12 +421,6 @@ void ThreadsHandler::updateThreads(const GdbMi &data)
// file="/.../app.cpp",fullname="/../app.cpp",line="1175"},
// state="stopped",core="0"}],current-thread-id="1"
- // Emit changed for previous frame.
-// if (m_currentIndex != -1) {
-// rowChanged(m_currentIndex);
-// m_currentIndex = -1;
-// }
-
const std::vector<GdbMi> items = data["threads"].children();
const int n = int(items.size());
for (int index = 0; index != n; ++index) {
@@ -483,14 +443,7 @@ void ThreadsHandler::updateThreads(const GdbMi &data)
}
const GdbMi current = data["current-thread-id"];
- if (current.isValid()) {
- ThreadId currentId = ThreadId(current.data().toLongLong());
- if (currentId != m_currentId) {
- threadDataChanged(m_currentId);
- m_currentId = currentId;
- threadDataChanged(m_currentId);
- }
- }
+ m_currentId = current.isValid() ? ThreadId(current.data().toLongLong()) : ThreadId();
updateThreadBox();
}
diff --git a/src/plugins/debugger/threadshandler.h b/src/plugins/debugger/threadshandler.h
index f33d109ec6..f335aff9db 100644
--- a/src/plugins/debugger/threadshandler.h
+++ b/src/plugins/debugger/threadshandler.h
@@ -33,8 +33,7 @@
#include "threaddata.h"
-#include <QAbstractTableModel>
-#include <QIcon>
+#include <utils/treemodel.h>
////////////////////////////////////////////////////////////////////////
//
@@ -47,7 +46,7 @@ namespace Internal {
class GdbMi;
-class ThreadsHandler : public QAbstractTableModel
+class ThreadsHandler : public Utils::TreeModel
{
Q_OBJECT
@@ -59,45 +58,33 @@ public:
ThreadId threadAt(int index) const;
void setCurrentThread(ThreadId id);
- void updateThread(const ThreadData &thread);
+ void updateThread(const ThreadData &threadData);
void updateThreads(const GdbMi &data);
void removeThread(ThreadId threadId);
void setThreads(const Threads &threads);
void removeAll();
- Threads threads() const;
ThreadData thread(ThreadId id) const;
QAbstractItemModel *model();
// Clear out all frame information
void notifyRunning(const QByteArray &data);
- void notifyRunning(ThreadId id);
+ void notifyRunning(ThreadId threadId);
void notifyAllRunning();
void notifyStopped(const QByteArray &data);
- void notifyStopped(ThreadId id);
+ void notifyStopped(ThreadId threadId);
void notifyAllStopped();
void resetLocation();
void scheduleResetLocation();
private:
- int indexOf(ThreadId threadId) const;
- int rowCount(const QModelIndex &parent = QModelIndex()) const;
- int columnCount(const QModelIndex &parent = QModelIndex()) const;
- QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
- QVariant headerData(int section, Qt::Orientation orientation,
- int role = Qt::DisplayRole) const;
- Qt::ItemFlags flags(const QModelIndex &index) const;
- void sort(int, Qt::SortOrder);
void updateThreadBox();
- void threadDataChanged(ThreadId id);
- Threads m_threads;
- ThreadId m_currentId;
- const QIcon m_positionIcon;
- const QIcon m_emptyIcon;
+ void sort(int column, Qt::SortOrder order);
+ ThreadId m_currentId;
bool m_resetLocationScheduled;
};