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.
64 lines
894 B
64 lines
894 B
#include <memory> |
|
#include "mainwindow.h" |
|
#include <QApplication> |
|
#include <stdlib.h> |
|
#include "../../Daemon.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace util |
|
{ |
|
class DaemonQTImpl: public std::enable_shared_from_this<DaemonQTImpl> |
|
{ |
|
public: |
|
|
|
DaemonQTImpl (int argc, char* argv[]): |
|
m_App (argc, argv) |
|
{ |
|
} |
|
|
|
void Run () |
|
{ |
|
MainWindow w; |
|
w.show (); |
|
m_App.exec(); |
|
} |
|
|
|
private: |
|
|
|
void StartDaemon () |
|
{ |
|
Daemon.start (); |
|
} |
|
|
|
void StopDaemon () |
|
{ |
|
Daemon.stop (); |
|
} |
|
|
|
bool IsRunning () const |
|
{ |
|
return Daemon.running; |
|
} |
|
|
|
private: |
|
|
|
QApplication m_App; |
|
}; |
|
|
|
bool DaemonQT::init(int argc, char* argv[]) |
|
{ |
|
m_Impl = std::make_shared<DaemonQTImpl> (argc, argv); |
|
return Daemon_Singleton::init(argc, argv); |
|
} |
|
|
|
void DaemonQT::run () |
|
{ |
|
if (m_Impl) |
|
{ |
|
m_Impl->Run (); |
|
m_Impl = nullptr; |
|
} |
|
} |
|
} |
|
}
|
|
|