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