mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
7c9c7e6fe4
* Add symbol exports required for external native plugins to work on Windows * Make Linux build behave more like Windows so that missing export annotations can be more easily detected.
32 lines
686 B
C++
32 lines
686 B
C++
|
|
#ifndef COMMANDTASK_H
|
|
#define COMMANDTASK_H
|
|
|
|
#include "common/AsyncTask.h"
|
|
#include "core/Cutter.h"
|
|
|
|
class CUTTER_EXPORT CommandTask : public AsyncTask
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum ColorMode {DISABLED=COLOR_MODE_DISABLED, MODE_16=COLOR_MODE_16, MODE_256=COLOR_MODE_256, MODE_16M=COLOR_MODE_16M};
|
|
|
|
CommandTask(const QString &cmd, ColorMode colorMode=ColorMode::DISABLED, bool outFormatHtml=false);
|
|
|
|
QString getTitle() override { return tr("Running Command"); }
|
|
|
|
signals:
|
|
void finished(const QString &result);
|
|
|
|
protected:
|
|
void runTask() override;
|
|
|
|
private:
|
|
QString cmd;
|
|
ColorMode colorMode;
|
|
bool outFormatHtml;
|
|
};
|
|
|
|
#endif //COMMANDTASK_H
|