Skip to content
Snippets Groups Projects
Commit e45f9fd9 authored by Langella Olivier's avatar Langella Olivier
Browse files

peptide list code cleaning

parent 00990cc6
No related branches found
No related tags found
No related merge requests found
......@@ -200,25 +200,6 @@ QVariant PeptideTableModel::data(const QModelIndex &index, int role ) const {
return QVariant();
}
void PeptideTableModel::onTableClicked(const QModelIndex &index)
{
int row = index.row();
int col = index.column();
if (col == 0) //add a checkbox to cell(1,0)
{
if ( _p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence()->isChecked()) {
_p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence()->setChecked(false);
}
else {
_p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence()->setChecked(true);
}
//emit dataChanged(index, index);
}
else {
emit peptideEvidenceClicked(_p_protein_match->getPeptideMatchList().at(row).getPeptideEvidence());
}
}
void PeptideTableModel::onPeptideDataChanged() {
qDebug() << "PeptideTableModel::onPeptideDataChanged begin " << rowCount();
emit layoutAboutToBeChanged();
......
......@@ -75,8 +75,6 @@ signals:
public slots:
void onPeptideDataChanged();
public slots:
void onTableClicked(const QModelIndex &index);
private :
static const QString getTitle(std::int8_t column);
......
......@@ -171,9 +171,9 @@ void PeptideTableProxyModel::onTableClicked(const QModelIndex &index)
//_protein_table_model_p->onTableClicked(this->mapToSource(index));
QModelIndex source_index(this->mapToSource(index));
int row = source_index.row();
int col = source_index.column();
PeptideListColumn col = (PeptideListColumn) source_index.column();
PeptideMatch * peptide_match = &_peptide_table_model_p->getProteinMatch()->getPeptideMatchList().at(row);
if (col == 0) //add a checkbox to cell(1,0)
if (col == PeptideListColumn::checked) //add a checkbox to cell(1,0)
{
if ( peptide_match->getPeptideEvidence()->isChecked()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment