void View::RegisterDialog::createConnections() { connect(_passLineEdit, SIGNAL(textChanged(QString)), this, SLOT(textChangedOnLineEdit())); connect(_rePassLineEdit, SIGNAL(textChanged(QString)), this, SLOT(textChangedOnLineEdit())); connect(_okPushButton, SIGNAL(clicked()), this, SLOT(accept())); connect(_cancelPushButton, SIGNAL(clicked()), this, SLOT(reject())); }
void View::Management::EntityEditor::createConnections() { connect(_allRadioButton, SIGNAL(toggled(bool)), this, SLOT(toggleOnRadioButton())); connect(_filterByRadioButton, SIGNAL(toggled(bool)), this, SLOT(toggleOnRadioButton())); connect(_comboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(currentIndexChangedOnComboBox())); connect(_lineEdit, SIGNAL(textChanged(QString)), this, SLOT(textChangedOnLineEdit(QString))); connect(_entitiesTableView -> selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(rowSelectionChanged())); connect(_entitiesTableView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(modEntity())); connect(_defaultButton, SIGNAL(clicked()), this, SLOT(defEntity())); connect(_addEntityButton, SIGNAL(clicked()), this, SLOT(addEntity())); connect(_modEntityButton, SIGNAL(clicked()), this, SLOT(modEntity())); connect(_delEntityButton, SIGNAL(clicked()), this, SLOT(delEntity())); }