mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 19:27:49 +02:00
restart button now has a handler
This commit is contained in:
parent
a83be187f3
commit
3118d7bede
3 changed files with 27 additions and 0 deletions
|
@ -17,6 +17,8 @@
|
|||
|
||||
#include <fstream>
|
||||
|
||||
#include "DaemonQT.h"
|
||||
|
||||
std::string programOptionsWriterCurrentSection;
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent) :
|
||||
|
@ -25,6 +27,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||
,quitting(false)
|
||||
#endif
|
||||
,ui(new Ui::MainWindow)
|
||||
,i2pController(nullptr)
|
||||
,configItems()
|
||||
,datadir()
|
||||
,confpath()
|
||||
|
@ -75,6 +78,8 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||
QObject::connect(ui->fastQuitPushButton, SIGNAL(released()), this, SLOT(handleQuitButton()));
|
||||
QObject::connect(ui->gracefulQuitPushButton, SIGNAL(released()), this, SLOT(handleGracefulQuitButton()));
|
||||
|
||||
QObject::connect(ui->doRestartI2PDPushButton, SIGNAL(released()), this, SLOT(handleDoRestartButton()));
|
||||
|
||||
# define OPTION(section,option,defaultValueGetter) ConfigOption(QString(section),QString(option))
|
||||
|
||||
initFileChooser( OPTION("","conf",[](){return "";}), ui->configFileLineEdit, ui->configFileBrowsePushButton);
|
||||
|
@ -326,6 +331,12 @@ void MainWindow::handleGracefulQuitButton() {
|
|||
, this, SLOT(handleGracefulQuitTimerEvent()));
|
||||
}
|
||||
|
||||
void MainWindow::handleDoRestartButton() {
|
||||
qDebug()<<"Do Restart pressed.";
|
||||
emit i2pController->restartDaemon();
|
||||
}
|
||||
|
||||
|
||||
void MainWindow::handleGracefulQuitTimerEvent() {
|
||||
qDebug("Hiding the main window");
|
||||
#ifndef ANDROID
|
||||
|
@ -614,3 +625,7 @@ void MainWindow::addServerTunnelPushButtonReleased() {
|
|||
void MainWindow::addClientTunnelPushButtonReleased() {
|
||||
CreateDefaultClientTunnel();
|
||||
}
|
||||
|
||||
void MainWindow::setI2PController(i2p::qt::Controller* controller_) {
|
||||
this->i2pController = controller_;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue