mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.2 KiB
63 lines
1.2 KiB
#ifndef DAEMONQT_H |
|
#define DAEMONQT_H |
|
|
|
#include <QObject> |
|
#include <QThread> |
|
|
|
namespace i2p |
|
{ |
|
namespace qt |
|
{ |
|
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
|
|
|