| 112 | |
| 113 | |
| 114 | QVariant DebugRegistersListModel::data(const QModelIndex& index, int role) const |
| 115 | { |
| 116 | if (index.column() >= columnCount() || (size_t)index.row() >= m_items.size()) |
| 117 | return QVariant(); |
| 118 | |
| 119 | DebugRegisterItem* item = static_cast<DebugRegisterItem*>(index.internalPointer()); |
| 120 | if (!item) |
| 121 | return QVariant(); |
| 122 | |
| 123 | |
| 124 | if ((role != Qt::DisplayRole) && (role != Qt::SizeHintRole) && (role != SortFilterRole)) |
| 125 | return QVariant(); |
| 126 | |
| 127 | switch (index.column()) |
| 128 | { |
| 129 | case DebugRegistersListModel::NameColumn: |
| 130 | { |
| 131 | if (role == Qt::SizeHintRole) |
| 132 | return QVariant((qulonglong)item->name().size()); |
| 133 | |
| 134 | if (role == SortFilterRole) |
| 135 | return QVariant(QString::fromStdString(item->name())); |
| 136 | |
| 137 | QList<QVariant> line; |
| 138 | line.push_back(getThemeColor(RegisterColor).rgba()); |
| 139 | line.push_back(QString::fromStdString(item->name())); |
| 140 | return QVariant(line); |
| 141 | } |
| 142 | case DebugRegistersListModel::ValueColumn: |
| 143 | { |
| 144 | // TODO: We need better alignment for values |
| 145 | uint64_t value = item->value(); |
| 146 | QString valueStr = QString::asprintf("0x%" PRIx64, value); |
| 147 | if (role == Qt::SizeHintRole) |
| 148 | return QVariant((qulonglong)valueStr.size()); |
| 149 | |
| 150 | if (role == SortFilterRole) |
| 151 | return QVariant(valueStr); |
| 152 | |
| 153 | QList<QVariant> line; |
| 154 | switch (item->valueStatus()) |
| 155 | { |
| 156 | case DebugRegisterValueNormal: |
| 157 | line.push_back(getThemeColor(AddressColor).rgba()); |
| 158 | break; |
| 159 | case DebugRegisterValueChanged: |
| 160 | line.push_back(getThemeColor(RedStandardHighlightColor).rgba()); |
| 161 | break; |
| 162 | case DebugRegisterValueModified: |
| 163 | line.push_back(getThemeColor(RedStandardHighlightColor).rgba()); |
| 164 | break; |
| 165 | } |
| 166 | |
| 167 | line.push_back(valueStr); |
| 168 | return QVariant(line); |
| 169 | } |
| 170 | case DebugRegistersListModel::HintColumn: |
| 171 | { |
no test coverage detected