Browse Source

separate DaemonQT and DaemonQTImpl

pull/520/head
orignal 8 years ago
parent
commit
eb96edbd31
  1. 8
      Daemon.h
  2. 61
      qt/i2pd_qt/DaemonQT.cpp

8
Daemon.h

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#ifndef DAEMON_H__
#define DAEMON_H__
#include <memory>
#include <string>
namespace i2p
@ -32,6 +33,7 @@ namespace i2p @@ -32,6 +33,7 @@ namespace i2p
#if defined(QT_GUI_LIB) // check if QT
#define Daemon i2p::util::DaemonQT::Instance()
class DaemonQTImpl;
class DaemonQT: public i2p::util::Daemon_Singleton
{
public:
@ -43,9 +45,11 @@ namespace i2p @@ -43,9 +45,11 @@ namespace i2p
}
bool init(int argc, char* argv[]);
bool start();
bool stop();
void run ();
private:
std::shared_ptr<DaemonQTImpl> m_Impl;
};
#elif defined(_WIN32)

61
qt/i2pd_qt/DaemonQT.cpp

@ -8,32 +8,57 @@ namespace i2p @@ -8,32 +8,57 @@ namespace i2p
{
namespace util
{
std::unique_ptr<QApplication> app;
bool DaemonQT::init(int argc, char* argv[])
class DaemonQTImpl: public std::enable_shared_from_this<DaemonQTImpl>
{
app.reset (new QApplication (argc, argv));
return Daemon_Singleton::init(argc, argv);
}
public:
bool DaemonQT::start()
{
return Daemon_Singleton::start();
}
DaemonQTImpl (int argc, char* argv[]):
m_App (argc, argv)
{
}
void Run ()
{
MainWindow w;
w.show ();
m_App.exec();
}
private:
bool DaemonQT::stop()
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[])
{
return Daemon_Singleton::stop();
m_Impl = std::make_shared<DaemonQTImpl> (argc, argv);
return Daemon_Singleton::init(argc, argv);
}
void DaemonQT::run ()
{
MainWindow w;
w.show ();
if (app)
{
app->exec();
app.reset (nullptr);
}
if (m_Impl)
{
m_Impl->Run ();
m_Impl = nullptr;
}
}
}
}

Loading…
Cancel
Save