| 6 | #include <QStyledItemDelegate> |
| 7 | |
| 8 | ModeListTableModel::ModeListTableModel(Kb *dev, QObject* parent) : QAbstractTableModel(parent), device(dev), |
| 9 | highlightedRow(-1), _hasFocus(false) |
| 10 | { |
| 11 | connect(device, &Kb::profileAboutToChange, this, &ModeListTableModel::profileAboutToChange); |
| 12 | connect(device, &Kb::profileChanged, this, &ModeListTableModel::profileChanged); |
| 13 | } |
| 14 | |
| 15 | void ModeListTableModel::profileAboutToChange(){ |
| 16 | KbProfile* currentProfile = device->currentProfile(); |