48 connect ( ui->buttonBox, SIGNAL ( accepted() ),
this, SLOT ( ProxySlot() ) );
49 connect ( ui->buttonBox, SIGNAL ( rejected() ),
this, SLOT ( close() ) );
50 connect ( ui->AddButton, SIGNAL ( clicked() ),
this,
51 SLOT ( AddNewMethodImplementation() ) );
52 connect ( ui->ImplementationsView, SIGNAL ( doubleClicked ( QModelIndex ) ),
this,
53 SLOT ( OpenMethodImplementationEditor ( QModelIndex ) ) );
55 SLOT ( ClassUpdated ( QString ) ) );
72 auto name = QString::fromStdString (
73 m_class->get_name() +
"::" + m_method->get_name() );
74 setObjectName ( name );
75 setWindowTitle ( QString (
"Method Editor : %1" ).arg ( name ) );
76 ui->MethodName->setText ( QString::fromStdString ( m_method->get_name() ) );
77 ui->DescriptionTextBox->setPlainText (
78 QString::fromStdString ( m_method->get_description() ) );