mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-06 03:20:33 +00:00
67 lines
1.2 KiB
C++
67 lines
1.2 KiB
C++
#ifndef DAEMONQT_H
|
|
#define DAEMONQT_H
|
|
|
|
#include <QObject>
|
|
#include <QThread>
|
|
|
|
namespace i2p
|
|
{
|
|
namespace util
|
|
{
|
|
namespace DaemonQt
|
|
{
|
|
class Worker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
void startDaemon();
|
|
void restartDaemon();
|
|
void stopDaemon();
|
|
|
|
signals:
|
|
void resultReady();
|
|
};
|
|
|
|
class DaemonQTImpl
|
|
{
|
|
public:
|
|
typedef void (*runningChangedCallback)();
|
|
|
|
/**
|
|
* @brief init
|
|
* @param argc
|
|
* @param argv
|
|
* @return success
|
|
*/
|
|
bool static init(int argc, char* argv[]);
|
|
void static deinit();
|
|
void static start();
|
|
void static stop();
|
|
void static restart();
|
|
void static setRunningCallback(runningChangedCallback cb);
|
|
bool static isRunning();
|
|
private:
|
|
void static setRunning(bool running);
|
|
};
|
|
|
|
class Controller : public QObject
|
|
{
|
|
Q_OBJECT
|
|
QThread workerThread;
|
|
public:
|
|
Controller();
|
|
~Controller();
|
|
public slots:
|
|
void handleResults(){}
|
|
signals:
|
|
void startDaemon();
|
|
void stopDaemon();
|
|
void restartDaemon();
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif // DAEMONQT_H
|