libpappsomspp
Library for mass spectrometry
|
#include <uimonitorinterface.h>
Public Member Functions | |
virtual bool | shouldIstop ()=0 |
should the procces be stopped ? If true, then cancel process Use this function at strategic point of your process in order to interrupt it cleanly Implementation must take care of thread resistance if implemented More... | |
virtual void | setTotalSteps (std::size_t total_number_of_steps) |
use it if the number of steps is known in an algorithm the total number of steps is usefull to report to the user a progress message in percents or with a progress bar More... | |
virtual void | count ()=0 |
count steps report when a step is computed in an algorithm More... | |
virtual void | setTitle (const QString &title)=0 |
current kind of process running More... | |
virtual void | setStatus (const QString &status)=0 |
current status of the process More... | |
virtual void | appendText (const QString &text)=0 |
append a text to a long report More... | |
Protected Attributes | |
std::size_t | m_totalSteps = 0 |
Definition at line 49 of file uimonitorinterface.h.
|
pure virtual |
append a text to a long report
text | string to append in a long report |
Implemented in pappso::UiMonitorText.
Referenced by pappso::TandemWrapperRun::readyReadStandardError(), and pappso::TandemWrapperRun::readyReadStandardOutput().
|
pure virtual |
count steps report when a step is computed in an algorithm
Implemented in pappso::UiMonitorVoid, pappso::UiMonitorTextPercent, and pappso::UiMonitorText.
Referenced by pappso::MsRunXicExtractorInterface::extractXicCoordSPtrListParallelized(), pappso::TimsDirectXicExtractor::protectedExtractXicCoordSPtrList(), pappso::MsRunXicExtractor::protectedExtractXicCoordSPtrList(), and pappso::MsRunXicExtractorDisk::protectedExtractXicCoordSPtrList().
|
pure virtual |
current status of the process
status | status message |
Implemented in pappso::UiMonitorText.
Referenced by pappso::TandemWrapperRun::convertOrginalMsData2mzXmlData(), pappso::MsRunXicExtractorInterface::extractXicCoordSPtrList(), pappso::MsRunXicExtractorInterface::extractXicCoordSPtrListParallelized(), pappso::MsRunXicExtractorInterface::postExtractionProcess(), pappso::TimsDirectXicExtractor::protectedExtractXicCoordSPtrList(), pappso::TandemWrapperRun::runTandem(), and pappso::TandemWrapperRun::writeFinalTandemOutput().
|
pure virtual |
|
inlinevirtual |
use it if the number of steps is known in an algorithm the total number of steps is usefull to report to the user a progress message in percents or with a progress bar
total_number_of_steps | the total number of steps |
Reimplemented in pappso::UiMonitorTextPercent, and pappso::UiMonitorText.
Definition at line 66 of file uimonitorinterface.h.
Referenced by pappso::MsRunXicExtractorInterface::extractXicCoordSPtrList(), pappso::MsRunXicExtractorInterface::extractXicCoordSPtrListParallelized(), pappso::TimsDirectXicExtractor::protectedExtractXicCoordSPtrList(), pappso::UiMonitorText::setTotalSteps(), and pappso::MzxmlOutput::write().
|
pure virtual |
should the procces be stopped ? If true, then cancel process Use this function at strategic point of your process in order to interrupt it cleanly Implementation must take care of thread resistance if implemented
Implemented in pappso::UiMonitorVoid, and pappso::UiMonitorText.
Referenced by pappso::TimsDirectXicExtractor::protectedExtractXicCoordSPtrList(), pappso::MsRunXicExtractor::protectedExtractXicCoordSPtrList(), pappso::TandemWrapperRun::readyReadStandardError(), pappso::TandemWrapperRun::readyReadStandardOutput(), and pappso::TandemWrapperRun::runTandem().
|
protected |
Definition at line 92 of file uimonitorinterface.h.
Referenced by pappso::UiMonitorTextPercent::UiMonitorTextPercent().