| 259 | |
| 260 | |
| 261 | QSize DebugModulesItemDelegate::sizeHint(const QStyleOptionViewItem& option, const QModelIndex& idx) const |
| 262 | { |
| 263 | auto totalWidth = (idx.data(Qt::SizeHintRole).toInt() + 2) * m_charWidth + 4; |
| 264 | return QSize(totalWidth, m_charHeight + 2); |
| 265 | } |
| 266 | |
| 267 | |
| 268 | DebugModulesWidget::DebugModulesWidget(ViewFrame* view, BinaryViewRef data) : QTableView(view), m_view(view) |