X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=mussa.git;a=blobdiff_plain;f=qui%2Fmussa_setup_dialog%2FMussaSetupWidget.cpp;h=c116a9a2e12fc6e9983760a6f80f83906cd69961;hp=ad25e4386527833d566274b78606c51b083ae9fd;hb=4c1d1e263deea85ab00823282c5ca5fc00fa8c26;hpb=8cae0e15c7c0961809dc72c768c20d04c067d9c5 diff --git a/qui/mussa_setup_dialog/MussaSetupWidget.cpp b/qui/mussa_setup_dialog/MussaSetupWidget.cpp index ad25e43..c116a9a 100644 --- a/qui/mussa_setup_dialog/MussaSetupWidget.cpp +++ b/qui/mussa_setup_dialog/MussaSetupWidget.cpp @@ -40,26 +40,34 @@ MussaSetupWidget::MussaSetupWidget(QWidget *parent) // Analysis name QLabel *analysisNameLabel = new QLabel(tr("Analysis Name")); analysisNameLabel->setBuddy(analysisNameLineEdit); + analysisNameLabel->setWhatsThis("Meaningful name for your analysis "); + analysisNameLineEdit->setWhatsThis("Meaningful name for your analysis "); // Window windowEdit->setMinimum(1); windowEdit->setValue(30); + windowEdit->setWhatsThis("Sliding window size to use in analysis.\n\nSee Mussagl Manual for more information by selecting the 'Help > Mussagl Manual' menu option. "); QLabel *windowLabel = new QLabel(tr("Window (nt)")); windowLabel->setBuddy(windowEdit); + windowLabel->setWhatsThis("Sliding window size to use in analysis.\n\nSee Mussagl Manual for more information by selecting the 'Help > Mussagl Manual' menu option. "); // Threshold thresholdEdit->setMinimum(1); thresholdEdit->setMaximum(windowEdit->value()); thresholdEdit->setValue(21); + thresholdEdit->setWhatsThis("Threshold of minimum number of matches required in a window to be considered a match.\n\nSee Mussagl Manual for more information by selecting the 'Help > Mussagl Manual' menu option. "); QLabel *thresholdLabel = new QLabel(tr("Threshold (nt)")); thresholdLabel->setBuddy(thresholdEdit); + thresholdLabel->setWhatsThis("Threshold of minimum number of matches required in a window to be considered a match.\n\nSee Mussagl Manual for more information by selecting the 'Help > Mussagl Manual' menu option. "); connect(windowEdit, SIGNAL(valueChanged(int)), this, SLOT(updateThreshold(int))); // Number of sequences QLabel *numOfSequencesLabel = new QLabel(tr("Number of sequences")); numOfSequencesLabel->setBuddy(numOfSequencesSpinBox); + numOfSequencesLabel->setWhatsThis("Number of sequences to include in analysis. "); numOfSequencesSpinBox->setMinimum(1); + numOfSequencesSpinBox->setWhatsThis("Number of sequences to include in analysis. "); //Sequence setup frame seqSetupFrame = new SequenceSetupFrame;