10#include "transformmanager.h"
11#include "exportexecutor.h"
12#include "DataManager.h"
14#include "logmanager.h"
15#include "stringcontainer.h"
16#include "terminalinteraction.h"
68 std::vector<bool> m_ITransfromSelection = std::vector<bool>();
The DataManager class is a Facade for the data holding classes in the model. It delegates most of it'...
Definition DataManager.h:29
The ExportExecutor class manages the export and its progress. It encapsules the export process and pr...
Definition exportexecutor.h:38
The LogFile class logs progress as well as information about a process (e.g. Inport,...
Definition logfile.h:23
The Progressable interface is used to by multithreaded actions such as sampling or exporting to repor...
Definition progressable.h:18
The Resolution class encapsulates an image resolution (width and height). It provides functionality f...
Definition resolution.h:17
The noUIExport class is used to run the export without a ui.
Definition nouiexport.h:31
void slot_exportFinished(ExportResult result)
slot_exportFinished Connected to the ExportExecutor, called when the export is finished
Definition nouiexport.cpp:127
void slot_displayProgress(int progress, QString currentProgress)
slot_makeProgress Connected to the ExportExecutor, called to display progress
Definition nouiexport.cpp:143
void sig_exportFinished()
sig_exportFinished Connected to the AutomaticExecutor to signal that the export is finished
void slot_displayMessage(QString message)
slot_displayMessage Connected to the ExportExecutor, called to display a message
Definition nouiexport.cpp:138
void runExport()
runExport Runs the export. This method is similar to ExportController::slot_export
Definition nouiexport.cpp:49
ExportResult holds the result of an export operation.
Definition exportthread.h:62