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

protein list view is generated

parent b285f626
No related branches found
No related tags found
No related merge requests found
......@@ -40,20 +40,21 @@ MainWindow::MainWindow(QWidget *parent):
connect(&workerThread, &QThread::finished, worker, &QObject::deleteLater);
connect(this, &PtSpectrumViewer::operateMsDataFile, worker, &PwizLoaderThread::doMsDataFileLoad);
connect(worker, &PwizLoaderThread::msDataReady, this, &PtSpectrumViewer::handleMsDataFile);
*/
*/
#else
// Qt4 code
/*
connect(&workerThread, SIGNAL(finished()), worker, SLOT(deleteLater()));
connect(this, SIGNAL(operateMsDataFile(QString)), worker,SLOT(doMsDataFileLoad(QString)));
connect(worker, SIGNAL(msDataReady(pwiz::msdata::MSDataFile *)), this, SLOT(handleMsDataFile(pwiz::msdata::MSDataFile *)));
*/
/*
connect(&workerThread, SIGNAL(finished()), worker, SLOT(deleteLater()));
connect(this, SIGNAL(operateMsDataFile(QString)), worker,SLOT(doMsDataFileLoad(QString)));
connect(worker, SIGNAL(msDataReady(pwiz::msdata::MSDataFile *)), this, SLOT(handleMsDataFile(pwiz::msdata::MSDataFile *)));
*/
#endif
/*
*/
workerThread.start();
_protein_list_window = new ProteinListWindow(this);
_protein_list_window->show();
}
MainWindow::~MainWindow()
......@@ -63,4 +64,4 @@ MainWindow::~MainWindow()
//if (_p_ms_data_file != nullptr) delete _p_ms_data_file;
delete ui;
}
\ No newline at end of file
}
......@@ -33,6 +33,7 @@
#include <pappsomspp/spectrum/spectrum.h>
#include <pwiz/data/msdata/MSDataFile.hpp>
#include "../utils/readspectrum.h"
#include "protein_list_view/proteinlistwindow.h"
......@@ -57,7 +58,7 @@ signals:
void msDataReady(pwiz::msdata::MSDataFile * p_ms_data_file);
};
class MainWindow: public QMainWindow {
class MainWindow: public QMainWindow {
Q_OBJECT
QThread workerThread;
......@@ -75,6 +76,9 @@ signals:
private:
Ui::Main *ui;
ProteinListWindow * _protein_list_window=nullptr;
};
......
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