| 5 | using namespace QKeyMapperConstants; |
| 6 | |
| 7 | QInputDeviceListWindow::QInputDeviceListWindow(QWidget *parent) |
| 8 | : QDialog(parent) |
| 9 | , ui(new Ui::QInputDeviceListWindow) |
| 10 | { |
| 11 | ui->setupUi(this); |
| 12 | |
| 13 | initKeyboardDeviceTable(); |
| 14 | initMouseDeviceTable(); |
| 15 | |
| 16 | QObject::connect(ui->keyboardDeviceTable, &QTableWidget::cellChanged, this, &QInputDeviceListWindow::onKeyboardListCellChanged); |
| 17 | QObject::connect(ui->mouseDeviceTable, &QTableWidget::cellChanged, this, &QInputDeviceListWindow::onMouseListCellChanged); |
| 18 | } |
| 19 | |
| 20 | QInputDeviceListWindow::~QInputDeviceListWindow() |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected