|
GOFIGURE2
0.9.0
|
#include <Code/GUI/lib/ConversionLsmToMegaThread.h>
Signals | |
| void | ConversionTerminatedSent () |
| void | InitialisationProgressSent () |
| void | ProgressSent () |
Public Member Functions | |
| ConversionLsmToMegaThread () | |
| Constructor. More... | |
| void | ExportWithReimplemented (std::string iMegaPath) |
| Start the conversion to MegaCapture. More... | |
| int | GetNumberOfPoints () |
| Returns the number of signals to be sent for the progress bar. More... | |
| void | SetBaseName (std::string iBaseName) |
| Set the base name of the LSM file to convert. More... | |
| void | SetLsmPath (std::string iLsmPath) |
| Set the path to the LSM file to convert and initialise LSM reader. More... | |
| void | SetMegaPath (std::string iMegaPath) |
| Set the path of the MegaCapture file to create. More... | |
| void | SetOutputFileType (const GoFigure::FileType &iFileType) |
| Set the output file type. More... | |
| virtual | ~ConversionLsmToMegaThread () |
| Destructor. More... | |
Public Member Functions inherited from QThread | |
| void | exit (int returnCode) |
| bool | finished () const |
| void | finished () |
| bool | isFinished () const |
| bool | isRunning () const |
| Priority | priority () const |
| QThread (QObject *parent) | |
| void | quit () |
| bool | running () const |
| void | setPriority (Priority priority) |
| void | setStackSize (uint stackSize) |
| uint | stackSize () const |
| void | start (Priority priority) |
| void | started () |
| void | terminate () |
| void | terminated () |
| bool | wait (unsigned long time) |
| ~QThread () | |
Public Member Functions inherited from QObject | |
| bool | blockSignals (bool block) |
| QObject * | child (const char *objName, const char *inheritsClass, bool recursiveSearch) const |
| const QObjectList & | children () const |
| const char * | className () const |
| bool | connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const |
| void | deleteLater () |
| void | destroyed (QObject *obj) |
| bool | disconnect (const QObject *receiver, const char *method) |
| bool | disconnect (const char *signal, const QObject *receiver, const char *method) |
| void | dumpObjectInfo () |
| void | dumpObjectTree () |
| QList< QByteArray > | dynamicPropertyNames () const |
| virtual bool | event (QEvent *e) |
| virtual bool | eventFilter (QObject *watched, QEvent *event) |
| T | findChild (const QString &name) const |
| QList< T > | findChildren (const QRegExp ®Exp) const |
| QList< T > | findChildren (const QString &name) const |
| bool | inherits (const char *className) const |
| void | insertChild (QObject *object) |
| void | installEventFilter (QObject *filterObj) |
| bool | isA (const char *className) const |
| bool | isWidgetType () const |
| void | killTimer (int id) |
| virtual const QMetaObject * | metaObject () const |
| void | moveToThread (QThread *targetThread) |
| const char * | name () const |
| const char * | name (const char *defaultName) const |
| QString | objectName () const |
| QObject * | parent () const |
| QVariant | property (const char *name) const |
| QObject (QObject *parent) | |
| QObject (QObject *parent, const char *name) | |
| void | removeChild (QObject *object) |
| void | removeEventFilter (QObject *obj) |
| void | setName (const char *name) |
| void | setObjectName (const QString &name) |
| void | setParent (QObject *parent) |
| bool | setProperty (const char *name, const QVariant &value) |
| bool | signalsBlocked () const |
| int | startTimer (int interval) |
| QThread * | thread () const |
| virtual | ~QObject () |
Protected Member Functions | |
| void | run () |
| Start multithread process (call when parameters are set up properly) More... | |
Protected Member Functions inherited from QThread | |
| int | exec () |
Protected Member Functions inherited from QObject | |
| bool | checkConnectArgs (const char *signal, const QObject *object, const char *method) |
| virtual void | childEvent (QChildEvent *event) |
| virtual void | connectNotify (const char *signal) |
| virtual void | customEvent (QEvent *event) |
| virtual void | disconnectNotify (const char *signal) |
| int | receivers (const char *signal) const |
| QObject * | sender () const |
| int | senderSignalIndex () const |
| virtual void | timerEvent (QTimerEvent *event) |
Private Member Functions | |
| ConversionLsmToMegaThread (const ConversionLsmToMegaThread &) | |
| ConversionLsmToMegaThread | operator= (const ConversionLsmToMegaThread &) |
Private Attributes | |
| std::string | m_BaseName |
| unsigned int | m_Column |
| unsigned int | m_Dim |
| GoFigure::FileType | m_FileType |
| std::string | m_LsmPath |
| std::vector< vtkLSMReader * > | m_LSMReaders |
| std::string | m_MegaPath |
| unsigned int | m_NumberOfChannels |
| unsigned int | m_NumberOfTimePoints |
| unsigned int | m_Plaque |
| unsigned int | m_Row |
| double | m_XOverlap |
| unsigned int | m_XTile |
| double | m_YOverlap |
| unsigned int | m_YTile |
| double | m_ZOverlap |
| unsigned int | m_ZTile |
Additional Inherited Members | |
Static Public Member Functions inherited from QThread | |
| QThread * | currentThread () |
| Qt::HANDLE | currentThreadId () |
| int | idealThreadCount () |
| void | yieldCurrentThread () |
Static Public Member Functions inherited from QObject | |
| bool | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type) |
| bool | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type) |
| bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method) |
| bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method) |
| QString | tr (const char *sourceText, const char *disambiguation, int n) |
| QString | trUtf8 (const char *sourceText, const char *disambiguation, int n) |
Static Protected Member Functions inherited from QThread | |
| void | msleep (unsigned long msecs) |
| void | setTerminationEnabled (bool enabled) |
| void | sleep (unsigned long secs) |
| void | usleep (unsigned long usecs) |
Static Protected Member Functions inherited from QObject | |
| QByteArray | normalizeSignalSlot (const char *signalSlot) |
Properties inherited from QObject | |
| objectName | |
Definition at line 48 of file ConversionLsmToMegaThread.h.
| ConversionLsmToMegaThread::ConversionLsmToMegaThread | ( | ) |
Constructor.
Definition at line 60 of file ConversionLsmToMegaThread.cxx.
|
virtual |
Destructor.
Definition at line 70 of file ConversionLsmToMegaThread.cxx.
|
private |
|
signal |
| void ConversionLsmToMegaThread::ExportWithReimplemented | ( | std::string | iMegaPath | ) |
Start the conversion to MegaCapture.
| [in] | iMegaPath | path of the output MegaCapture file |
Definition at line 151 of file ConversionLsmToMegaThread.cxx.
| int ConversionLsmToMegaThread::GetNumberOfPoints | ( | ) |
Returns the number of signals to be sent for the progress bar.
Definition at line 319 of file ConversionLsmToMegaThread.cxx.
|
signal |
|
private |
|
signal |
|
protectedvirtual |
Start multithread process (call when parameters are set up properly)
Reimplemented from QThread.
Definition at line 85 of file ConversionLsmToMegaThread.cxx.
| void ConversionLsmToMegaThread::SetBaseName | ( | std::string | iBaseName | ) |
Set the base name of the LSM file to convert.
| [in] | iBaseName | Name of the LSM file |
Definition at line 115 of file ConversionLsmToMegaThread.cxx.
| void ConversionLsmToMegaThread::SetLsmPath | ( | std::string | iLsmPath | ) |
Set the path to the LSM file to convert and initialise LSM reader.
| [in] | iLsmPath | Path of the LSM file |
Definition at line 124 of file ConversionLsmToMegaThread.cxx.
| void ConversionLsmToMegaThread::SetMegaPath | ( | std::string | iMegaPath | ) |
Set the path of the MegaCapture file to create.
| [in] | iMegaPath | Path of the MegaCapture file |
Definition at line 133 of file ConversionLsmToMegaThread.cxx.
| void ConversionLsmToMegaThread::SetOutputFileType | ( | const GoFigure::FileType & | iFileType | ) |
Set the output file type.
| [in] | iFileType | File type: PNG or TIFF |
Definition at line 142 of file ConversionLsmToMegaThread.cxx.
|
private |
Definition at line 115 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 122 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 131 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 118 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 116 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 119 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 117 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 129 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 130 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 120 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 121 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 126 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 123 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 127 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 124 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 128 of file ConversionLsmToMegaThread.h.
|
private |
Definition at line 125 of file ConversionLsmToMegaThread.h.
1.8.5