MCPcopy Create free account
hub / github.com/Zalafina/QKeyMapper / QInputDeviceListWindow

Method QInputDeviceListWindow

QKeyMapper/qinputdevicelistwindow.cpp:7–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5using namespace QKeyMapperConstants;
6
7QInputDeviceListWindow::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
20QInputDeviceListWindow::~QInputDeviceListWindow()
21{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected