-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinterface.cpp
1251 lines (990 loc) · 35.2 KB
/
interface.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "interface.h"
#include "ui_interface.h"
interFace::interFace(QWidget *parent) :
QWidget(parent)
{
setupUi(this);
setupPlot();
setupTable();
setparameters();
setupResultsTable();
setupSummmaryTabel();
readSettings();
connect(datasetCombo,SIGNAL(currentIndexChanged(const QString&)),
this,SLOT(datasetchanged(const QString&)));
//connect(RandDBox, SIGNAL(stateChanged(int )),
// this, SLOT(RDboxchanged(int )));
}
interFace::~interFace()
{
//delete ui;
saveSettings();
}
void interFace::setupPlot()
{
plot->setInteractions( QCP::iSelectPlottables );
}
void interFace::setupTable()
{
connect(listWidget, SIGNAL(itemSelectionChanged()),
SLOT(slotSelectionChange())
);
listWidget->setContextMenuPolicy(Qt::CustomContextMenu);
connect(listWidget, SIGNAL(customContextMenuRequested(const QPoint&)),
this, SLOT(ShowContextMenu(const QPoint&)));
listWidget->viewport()->installEventFilter(this);
listWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
}
void interFace::setparameters()
{
//save parameters when program closed
frontlabel->setVisible(FALSE);
QStringList datasetList;
datasetList << "SP175"<< "MP180"<< "IDP190"<<"test";
datasetCombo->addItems(datasetList);
progressBar->setVisible(false);
datasetCombo->setEditable(false);
resultLabel->setVisible(false);
}
void interFace::setupSummmaryTabel()
{
summaryTable->horizontalHeader()->setVisible(true);
QFont font;// = resultsTable->horizontalHeader()->font();
font.setPointSize(11);
font.setBold(true);
summaryTable->horizontalHeader()->setFont( font );
// summaryTable->horizontalHeader()->
summaryTable->verticalHeader()->setVisible(false);
summaryTable->setSelectionBehavior(QAbstractItemView::SelectRows);
summaryTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
connect(summaryTable, SIGNAL(customContextMenuRequested(const QPoint&)),
this, SLOT(summaryContextMenu(const QPoint&)));
summaryTable->viewport()->installEventFilter(this);
summaryTable->setShowGrid(false);
// summaryTable->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
//makes result (apart from NRMSD 2 dp)
}
// for combobox settings
void interFace::readSettings()
{
// read save parameters from previous instance
QSettings settings("bbk","DichroApp");
QStringList Datasets = settings.value("set").toStringList();
datasetCombo->clear();
datasetCombo->addItems(Datasets);
// dataset directory strored in global
Global *glob;// glob is a singleton
glob = Global::getInstance();
glob->globalFile=settings.value("dir").toString();
}
void interFace::saveSettings()
{
QSettings settings("bbk","DichroApp");
QStringList Datasets;
for(int index = 0; index < datasetCombo->count();index++)
Datasets.append(datasetCombo->itemText(index));
settings.setValue("set", Datasets);
// dataset directory saved when prog closed
Global *glob;// Spectrum is a singleton
glob = Global::getInstance();
settings.setValue("dir",glob->globalFile);
}
void interFace::setupResultsTable()
{
QStringList headers;
headers<< "Initial"<<"HJ5"<<"Sel1"<<"Sel2"<<"Sel3"<<"Closest proteins"<<" File name "<<"NRMSD ";
resultsTable->setColumnCount(8);
resultsTable->setHorizontalHeaderLabels(headers);
// resultsTable->horizontalHeader()->setStyleSheet("color: blue");
QFont font;// = resultsTable->horizontalHeader()->font();
font.setPointSize(12);
font.setBold(true);
resultsTable->horizontalHeader()->setFont( font );
resultsTable->horizontalHeader()->setStyleSheet( "QHeaderView::section{"
"border-top:0px solid #D8D8D8;"
"border-left:0px solid #D8D8D8;"
"border-right:1px solid #D8D8D8;"
"border-bottom: 1px solid #D8D8D8;"
"background-color:white;"
"padding:4px;"
"}");
QFont font2;// = resultsTable->verticalHeader()->font();
font2.setPointSize( 12 );
font2.setBold(true);
resultsTable->verticalHeader()->setFont( font2 );
resultsTable->resizeRowsToContents();
resultsTable->resizeColumnsToContents();
// resultsTable->setSelectionBehavior(QAbstractItemView::SelectRows);
resultsTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
resultsTable->setContextMenuPolicy(Qt::CustomContextMenu);
connect(resultsTable, SIGNAL(customContextMenuRequested(const QPoint&)),
this, SLOT(contextMenu(const QPoint&)));
// resultsTable->viewport()->installEventFilter(this);
}
bool interFace::eventFilter(QObject *object, QEvent *event) //works inside widget
{
//***********clear selection in table view and plot upon clicking left button in table view**********
if (object == listWidget->viewport() && event->type() == QEvent::MouseButtonPress)
{
QMouseEvent *pMouseEvent = static_cast<QMouseEvent *>(event);
if (pMouseEvent->button() == Qt::LeftButton)
{
QModelIndex item=listWidget->indexAt(pMouseEvent->pos());
if (!item.isValid())
{
listWidget->clearSelection();
for(int i =0; i<plot->graphCount(); ++i)
plot->graph( i)->setSelected(FALSE);
plot->replot();
}
}
}
return false;
}
void interFace::contextMenu(const QPoint& pos)
{
QMenu myMenu;
if (menubool==true)
{
// makes sure the context menu vanished when action selected.
//this wasnt happening for some reason
//qDebug()<<"menubool true return??";
menubool=false;
// resultsTable->blockSignals(true);
return;
}
QPoint globalPos = resultsTable->mapToGlobal(pos);
QAction action1("copy", this);
//QAction action2("clear", this);
connect(&action1, SIGNAL(triggered()), this, SLOT(copy()));
// connect(&action2, SIGNAL(triggered()), this, SLOT(on_clearButton_clicked()));
myMenu.addAction(&action1);
// myMenu.addAction(&action2);
if(resultsTable->rowCount()==0)
{
action1.setEnabled(false);
//action2.setEnabled(false);
}else
{
action1.setEnabled(true);
//action2.setEnabled(true);
}
myMenu.exec(globalPos);
// myMenu.deleteLater();
}
void interFace::summaryContextMenu(const QPoint& pos)
{
QMenu myMenu2;
QPoint globalPos = summaryTable->mapToGlobal(pos);
QAction action1("copy, Ctrl+ C", this);
// QAction action2("clear", this);
connect(&action1, SIGNAL(triggered()), this, SLOT(copysummary()));
// connect(&action2, SIGNAL(triggered()), this, SLOT(on_clearButton_clicked()));
myMenu2.addAction(&action1);
// myMenu.addAction(&action2);
if(summaryTable->rowCount()==0)
{
action1.setEnabled(false);
// action2.setEnabled(false);
}else
{
action1.setEnabled(true);
// action2.setEnabled(true);
}
myMenu2.exec(globalPos);
}
void interFace::keyPressEvent(QKeyEvent *event)
{
if(event->matches(QKeySequence::Copy))
{
copysummary();
}
}
void interFace::on_openButton_clicked()
{
//################################################################
// function opens spectra files one at a time
//##############################################################
datasetCombo->setEditable(false);
if(genButton->isChecked())
ftype =1;
else
{
ftype =0;
}
// show analysis interface
QStringList paths;
paths.append(path);
QDir d;
fname = QFileDialog::getOpenFileName(this, tr("Select one or more files to open"),
paths.last(), tr("*.txt *.gen"));
if (fname.isEmpty())
return;
scaleBox->setValue(1.00);
//*********** stores the file path for the next time we open a file**
d = QFileInfo(fname).absoluteDir();
paths.clear();
path=d.absolutePath();
paths.append(path);
//**********************************************************************
// Read_file *F=new(Read_file) ;
Read_file *f = new Read_file;
QObject::connect( f,SIGNAL(send_data(QVector<double> ,QVector<double>)),this, SLOT (plotdata(QVector<double>,QVector<double>)),Qt::AutoConnection);
if(!fname.isEmpty() )
{
f->openSpectrum(fname, ftype);
}
}
void interFace::plotdata(QVector<double> WL1, QVector<double> CD1)
{
//###############################################################
// plot spectrum and add entry to file list
//#######################################################
QVector<double> CD;
QVector<double> WL;
if(WL1.first()<240)
{
QMessageBox msgBox;
msgBox.setText("spectrum must have a high wavelength of 240 nm or above!");
msgBox.exec();
return;
}
//ensure data starts at a whole number
if(floor(WL1.first())!=WL1.first())
{
QString highWL =QString::number(WL1.first(),'f', 1);
QMessageBox msgBox;
msgBox.setText("high wavelength is " + highWL +" High wavelength must be a whole number!");
msgBox.exec();
return;
}
//ensure interval of 1 or 0.5 nm
double interval =WL1.at(0)-WL1.at(1);
int roundedInterval = (int)(interval * 10.0);// do this beause you cant compare doubles properly
QString stepsize =QString::number(interval,'f', 1);
Rmsd *R =new Rmsd;
QList<QVector<double>> vectorlist;
if(roundedInterval==10||roundedInterval==5)
{
//if not 1nm interval (ie 0.5 nm) we make interval 1nm
//and crucially remove all data above 240nm
vectorlist = R->sortOutInterval(WL1, CD1);
}
else
{
QMessageBox msg;
msg.setText("Wavelength interval is "+ stepsize+" only wavelength intervals of 1.0 nm and 0.5 nm accepted!");
msg.exec();
return;
}
// QList<QVector<double>> vectorlist = R->sortOutInterval(WL1, CD1);
//########################################################################
WL =vectorlist.first();
CD= vectorlist.last();
getNamefromPath();
//ui->widget->graph()->setName(numberstring);
new QListWidgetItem(fname, listWidget);
//############ make each graph a different color ######################
QColor RGBcolor;
int a = rand() % 254+1;
int b= rand() % 254+1;
int c= rand()%254+1;
// dissalow colors that are too light
if (a>220 )
a=0;
if(b>220)
b=0;
if(c>220)
c=0;
RGBcolor.setRgb( a, b, c, 255);
QPen pen( RGBcolor,1.25);
// QPen pen2( RGBcolor, 0.75);
//########################################################################################
plot->addGraph(plot->xAxis, plot->yAxis);
plot->graph(plotindex)->setData(WL, CD);
plot->graph(plotindex)->setPen(pen);
plot->graph(plotindex)->setVisible(TRUE);
plot->rescaleAxes(1);
plot->replot();
plotindex++;
}
void interFace::getNamefromPath()
{
//#################################################################
// extract the file name from the file path to put in table
//################################################################
QString s = "/";
QString e = "";
int start = fname.lastIndexOf(s); //index of last / character
int end = fname.lastIndexOf(e); //index of last null character
int lengthstr = end - start; // difference is the string length
fname = fname.right(lengthstr);
}
void interFace::deletspectrum()
{
int currentRow = listWidget->currentRow();
listWidget->blockSignals(true);//stops slot selectionchanged being called
listWidget->takeItem(currentRow);
plot->removeGraph(currentRow);//cd plot
// plot->removeGraph(currentRow);//ht plot
plot->rescaleAxes(1);
plot->replot();
// plotindex-=2;
//tindex-=2;*/
plotindex--;
//#### clear selection ########
listWidget->clearSelection();
for(int i =0; i<plot->graphCount(); ++i)
plot->graph( i)->setSelected(FALSE);
plot->replot();
// qDebug()<<"plotindexdelete"<<plotindex;
// }
listWidget->blockSignals(false);
}
void interFace::deleteAll()
{
listWidget->clear();
plot->clearGraphs();
plotindex=0;
plot->replot();
}
void interFace::on_pushButton_clicked()
{
datasetCombo->setEditable(false);
if (Xvalbool==1)
{
resultsTable->clear();
solutionRowIndex=0;
protInd=0;
RMSDIndex=0;
// plotindex=0;
// plot->clearGraphs();
// plot->replot();
}
setupResultsTable();
Xvalbool=0;
//###########################################################################
// analysis button clicked get data from graph
//############################################################################
VectorXd CD;
VectorXd WL;
int j=0;
Read_file *RF =new Read_file;
connect (RF,SIGNAL(sendSolution(QList<VectorXd>)),this,SLOT(outPut(QList<VectorXd>)),Qt::AutoConnection);
connect (RF,SIGNAL(sendlabels(QStringList)),this,SLOT(outPutlabels(QStringList)),Qt::AutoConnection);
connect (RF,SIGNAL(sendProtInd(MatrixXi)),this,SLOT(protIndex(MatrixXi)),Qt::AutoConnection);
connect (RF,SIGNAL(sendRefit(VectorXd)),this,SLOT(plotRefit(VectorXd)),Qt::AutoConnection);
connect (RF,SIGNAL(sendNMRSD(double)),this,SLOT(showNRMSD(double)),Qt::AutoConnection);
connect (RF, SIGNAL(sendProg(int)), this, SLOT(progress(int)), Qt::AutoConnection);
if(plot->selectedGraphs().count() != 0)
{
const QCPDataMap *dataMap =plot->selectedGraphs().first()->data();
CD.resize(plot->selectedGraphs().first()->data()->size());
WL.resize(plot->selectedGraphs().first()->data()->size());
QMap<double, QCPData>::const_iterator i = dataMap->constBegin();
while (i != dataMap->constEnd()) {
CD(j) = i.value().value;
WL(j)=i.value().key;
++j;
++i;
}
}
else
{
QMessageBox msgBox;
msgBox.setText("No spectrum selected");
msgBox.exec();
return;
}
//############## get low wavelength cutoff ##########################
double lowW = LowWaveBox->value();
VectorXd CD1(0);
for(int i=0; i<WL.size();++i)
{
// qDebug()<<"ere";
if(WL(i)==lowW)
{
int cut= (WL.size()-i);
CD1.resize(CD.tail(cut).size());
CD1 =CD.tail(cut);
}
}
if(lowW< WL.head(1).value())
{
cout<<"wltailvalue "<<WL.tail(1).value()<<endl; QMessageBox msgBox;
msgBox.setText("Low wavelength cut-off below the lowest wavelength of data\n"
" Using lowest wavelength of data");
msgBox.exec();
}
// if no resizing is done above put CD into CD1
if(CD1.size()==0)
{
// qDebug()<<"cd=cd1";
CD1.resize(CD.size());
CD1=CD;
}
//##############################################################
QListWidgetItem *item =listWidget->item(listWidget->currentRow());
QString itemString =item->text();
fname =itemString;
progressBar->setVisible(true);
progressBar->setValue(progIndex);
//reverse the CD vector: comes out of the plot the wrong way!!
VectorXd CDrev(CD1.size());
CDrev= CD1.colwise().reverse();
QString set = datasetCombo->currentText();
RF->openDataSet(set, CDrev);
// need to return a bool to say if datasets were open or not. if not then dont do the following.
stackedWidget->setCurrentIndex(1);
frontlabel->setVisible(TRUE);
backlabel->setVisible(FALSE);
pushButton->setEnabled(false);
progressBar->setVisible(FALSE);
progIndex=25;
}
void interFace::outPut(QList<VectorXd> output)
{
//########################################################
// solutions are displayed in the results table
//#########################################################
int solutionIndex=0;
VectorXd OP(output.first().size());
resultsTable->setRowCount(output.first().rows()+solutionRowIndex);
for(int j=0; j<output.size(); ++j)
{
OP=output.at(j);
for(int i=0; i<OP.size(); ++i)
{
// add row headers
QTableWidgetItem *lblItem =new QTableWidgetItem;
lblItem->setData(Qt::EditRole, labels.at(i));
resultsTable->setVerticalHeaderItem(i+solutionRowIndex, lblItem );
double d;
d = OP(i);
//qDebug()<<"d "<<d;
d = roundf(d*100)/100;
QTableWidgetItem *solItem = new QTableWidgetItem;
solItem->setData(Qt::EditRole, d);
resultsTable->setItem(i+solutionRowIndex,solutionIndex,solItem);
// solItem->setTextAlignment(Qt::AlignLeft);
solItem->setTextAlignment(Qt::AlignVCenter);
}
solutionIndex++;
}
//give trailing zeros if nessessary
TableItemDelegate *zeroDelegate = new TableItemDelegate(resultsTable);
for (int i=0; i<5; i++)
{
resultsTable->setItemDelegateForColumn( i,zeroDelegate);
}
// getNamefromPath();
QTableWidgetItem *fileItem = new QTableWidgetItem;
fileItem->setData(Qt::EditRole, fname);
//qDebug()<<"fname"<<fname;
resultsTable->setItem(solutionRowIndex,6, fileItem);
//draw thick border
resultsTable->setItemDelegateForRow( solutionRowIndex, new BorderDelegate( this ) );
solutionRowIndex+=OP.size();//allows multiple analyses to appear on table with gap between each.
rmsdplacementindex=OP.size();
VectorXd summary(output.first().size());
if(output.size()<5)
{
summaryTable->clear();
return;
}
summary =output.at(4);
outputSummary(summary);
}
void interFace::outputSummary(VectorXd &summry)
{
//hack so that i can modify summary results without affecting the headers
labels.removeLast();
labels.removeLast();
labels<<"NRMSD";
summaryTable->clear();
summaryTable->setRowCount(1);
summaryTable->setColumnCount(summry.size()+1);
summaryTable->setHorizontalHeaderLabels(labels);
//qDebug()<<"labels"<<labels;
for(int i=0; i< summry.size(); ++i)
{
double d;
d = summry(i);
d = roundf(d*100)/100;
QTableWidgetItem *solItem = new QTableWidgetItem;
solItem->setData(Qt::EditRole, d);
summaryTable->setItem(0,i,solItem);
solItem->setTextAlignment(Qt::AlignVCenter);
solItem->setTextAlignment(Qt::AlignCenter);
}
//give trailing zeros if nessessary
TableItemDelegate *zeroDelegate = new TableItemDelegate(summaryTable);
for (int i=0; i<labels.size()-1; i++)
{
summaryTable->setItemDelegateForColumn( i,zeroDelegate);
}
}
void interFace::outPutlabels(QStringList label)
{
//########### structure labels###################
labels=label;
}
void interFace::protIndex(MatrixXi protI)
{
int pn =protI.rows();// for checking if lbl2 can be opened
protNumber =protI;
// cout<<endl<<"protnumber"<<endl<<protNumber<<endl;
QString set = datasetCombo->currentText();
Read_file *R = new Read_file;
QString prots =R->openProtLabel(set, pn);
QStringList protlist = prots.split("\t");
for(int i=0; i<9; ++i)
{
int index =protNumber(i,1);
// qDebug()<<"index"<<index;
QString protein = protlist.at(index);
// qDebug()<<"proteins "<<i<<" "<<protein;
QTableWidgetItem *protItem = new QTableWidgetItem;
protItem->setData(Qt::EditRole, protein);
resultsTable->setItem(i+protInd,5,protItem);
}
// resultsTable->item(protInd,5)->setBackgroundColor(Qt::green);
protInd= resultsTable->rowCount();
resultsTable->scrollToBottom();
}
void interFace::plotRefit(VectorXd refitCD)
{
// cout<<"refit in refit"<<refitCD<<endl;
int size = refitCD.size();
QVector<double> refittedCDdata;
QVector<double> refittedWLdata;
// QVector<double> refittedWLdata2;
for(int i =240; i>size-1; --i)
{
refittedWLdata<<i;
}
for(int i =0; i<size; ++i)
{
refittedCDdata<<refitCD(i);
}
fname = fname +": Refit";
plotdata(refittedWLdata,refittedCDdata);
fname.clear();
QPen newpen(Qt::black);
newpen.setWidth(2);
QVector<qreal> dashes;
qreal space = 4;
dashes << 1 << space << 3 << space << 9 << space
<< 27 << space << 9 << space;
newpen.setDashPattern(dashes);
int p=plot->graphCount()-1;
plot->graph(p)->setPen(newpen);
}
void interFace::showNRMSD(double error)
{
int count =resultsTable->rowCount();
int summarycount =summaryTable->columnCount();
qDebug()<<"Scount"<<summarycount;
RMSDIndex=count-rmsdplacementindex;
//########### NMRSD for table ###################
rmsdplacementindex=0;
QTableWidgetItem *NRMSDItem = new QTableWidgetItem;
NRMSDItem->setData(Qt::EditRole,error);
resultsTable->setItem(RMSDIndex,7,NRMSDItem);
// color if below critical level
if(error<0.0001)
{
//colour amber
resultsTable->item(RMSDIndex, 7)->setBackgroundColor(Qt::yellow);
}
resultsTable->scrollToBottom();
// NRMSD entry in summary table
QTableWidgetItem *NRMSDItem2 = new QTableWidgetItem;
NRMSDItem2->setData(Qt::EditRole,error);
summaryTable->setItem(0,summarycount-1,NRMSDItem2);
NRMSDItem2->setTextAlignment(Qt::AlignVCenter);
// NRMSDItem2->setTextAlignment(Qt::AlignHCenter);
if(error<0.0001)
{
//colour red
summaryTable->item(0,summarycount-1)->setBackgroundColor(Qt::yellow);
}
summaryTable->resizeColumnsToContents();
qDebug()<<"rmsdcount"<<RMSDIndex;
}
void interFace::ShowContextMenu(const QPoint & pos)
{
QPoint globalPos = listWidget->mapToGlobal(pos);
QMenu Menu;
int row=listWidget->currentRow();
// qDebug()<<"row"<<row;
QAction action1("delete row", this);
QAction action2("delete all",this);
connect(&action1, SIGNAL(triggered()), this, SLOT(deletspectrum()));
connect(&action2, SIGNAL(triggered()), this, SLOT(deleteAll()));
Menu.addAction(&action1);
Menu.addAction(&action2);
if (row!=-1)
{
action1.setEnabled(true);
action1.setEnabled(true);
}
else {
action1.setEnabled(false);
action1.setEnabled(false);
}
Menu.exec(globalPos);
return;
}
void interFace::slotSelectionChange()
{
//ensure analysis button i active when 1 row is selected
// and show selected spectrum in plot
QModelIndexList selection = listWidget->selectionModel()->selectedRows();
if (selection.size()==1)
{
pushButton->setDisabled(FALSE);
}
else
{
pushButton->setDisabled(TRUE);
}
for(int i =0; i<plot->graphCount(); ++i)
plot->graph( i)->setSelected(FALSE);
int Selectedrow=listWidget->currentRow();
plot->graph( Selectedrow)->setSelected(TRUE);
plot->replot();
}
void interFace::on_backButton_clicked()
{
resultLabel->setVisible(false);
datasetCombo->setEditable(false);
if(stackedWidget->currentIndex()==1)
{
stackedWidget->setCurrentIndex(0);
frontlabel->setVisible(FALSE);
backlabel->setVisible(TRUE);
pushButton->setEnabled(true);
}
else
{
stackedWidget->setCurrentIndex(1);
frontlabel->setVisible(TRUE);
backlabel->setVisible(FALSE);
pushButton->setEnabled(false);
}
return;
}
void interFace::stayOntab1(bool & open)
{
// need to send a signal here
stackedWidget->setCurrentIndex(0);
frontlabel->setVisible(FALSE);
backlabel->setVisible(TRUE);
}
void interFace::progress(int i)
{
// ###################### ipdate progress bar ################
progressBar->setValue(i+progIndex);
qApp->processEvents();
progIndex+=i;
}
void interFace::on_clearButton_clicked()
{
//myMenu.hide();
//for (int i=1; i<resultsTable->rowCount(); ++i)
resultsTable->clear();
summaryTable->clear();
solutionRowIndex=0;
resultsTable->setRowCount(0);
setupResultsTable();
protInd=0;
// menubool=1;
}
void interFace::copy()
{
//#### copy selection in results table using context menu ###########
// datasetCombo->setEditable(false);
//myMenu.hide();
QString text;
QItemSelectionRange range = resultsTable->selectionModel()->selection().first();
for (auto i = range.top(); i <= range.bottom(); ++i)
{
QStringList rowContents;
for (auto j = range.left(); j <= range.right(); ++j)
rowContents << resultsTable->model()->index(i,j).data().toString();
text += rowContents.join("\t");
text += "\n";
}
QApplication::clipboard()->setText(text);
menubool=true;
}
void interFace::copysummary()
{
//#### copy selection in summmary table using context menu ###########
QString text;
if(summaryTable->selectionModel()->selection().isEmpty())
{
// qDebug()<<"in summary copy";
return;
}
QItemSelectionRange range = summaryTable->selectionModel()->selection().first();
if(range.isEmpty())
{
return;
}
for (auto i = range.top(); i <= range.bottom(); ++i)
{
QStringList rowContents;
for (auto j = range.left(); j <= range.right(); ++j)
rowContents << summaryTable->model()->index(i,j).data().toString();
text += rowContents.join("\t");
text += "\n";
}
QApplication::clipboard()->setText(text);
// menubool=1;
}
void interFace::on_scaleButton_clicked()
{
datasetCombo->setEditable(false);
QVector<double> CD,CD1;
QVector<double> WL,WL1;
int j=0;
double scalefactor = scaleBox->value();
if(plot->selectedGraphs().count() != 0)
{
const QCPDataMap *dataMap =plot->selectedGraphs().first()->data();
QMap<double, QCPData>::const_iterator i = dataMap->constBegin();
while (i != dataMap->constEnd()) {
CD << i.value().value*scalefactor;
WL<<i.value().key;
++j;
++i;
}
}
else
{
QMessageBox msgBox;
msgBox.setText("No spectrum selected");
msgBox.exec();
return;
}
QListWidgetItem *item =listWidget->item(listWidget->currentRow());
QString itemString =item->text();
QString Sf;
Sf = QString("%1").arg(scalefactor);
fname =itemString +": scaled X " + Sf;
//reverse data befor plotting
for(int i=WL.size();i>0;--i)