Browse Source

fixed #40

pull/61/head
Gitea 2 years ago
parent
commit
e477cf441b
  1. 7
      src/ServerTunnelPane.cpp
  2. 11
      src/ServerTunnelPane.h

7
src/ServerTunnelPane.cpp

@ -31,8 +31,8 @@ int ServerTunnelPane::appendServerTunnelForm( @@ -31,8 +31,8 @@ int ServerTunnelPane::appendServerTunnelForm(
gridLayoutWidget_2->setGeometry(QRect(0, 0, 561, h));
serverTunnelNameGroupBox->setGeometry(QRect(0, 0, 561, h));
const QString& type = tunnelConfig->getType();
{
const QString& type = tunnelConfig->getType();
int index=0;
if(type==i2p::client::I2P_TUNNELS_SECTION_TYPE_SERVER)tunnelTypeComboBox->setCurrentIndex(index);
++index;
@ -137,7 +137,8 @@ int ServerTunnelPane::appendServerTunnelForm( @@ -137,7 +137,8 @@ int ServerTunnelPane::appendServerTunnelForm(
horizontalLayout_2->addItem(horizontalSpacer);
tunnelGridLayout->addLayout(horizontalLayout_2);
}
{
if(type==i2p::client::I2P_TUNNELS_SECTION_TYPE_HTTP) {
std::string hostOverride = tunnelConfig->gethostOverride();
QHBoxLayout *horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
@ -148,7 +149,7 @@ int ServerTunnelPane::appendServerTunnelForm( @@ -148,7 +149,7 @@ int ServerTunnelPane::appendServerTunnelForm(
hostOverrideLineEdit->setObjectName(QStringLiteral("hostOverrideLineEdit"));
hostOverrideLineEdit->setText(hostOverride.c_str());
QObject::connect(hostOverrideLineEdit, SIGNAL(textChanged(const QString &)),
this, SLOT(updated()));
this, SLOT(updated()));
horizontalLayout_2->addWidget(hostOverrideLineEdit);
QSpacerItem * horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout_2->addItem(horizontalSpacer);

11
src/ServerTunnelPane.h

@ -107,7 +107,8 @@ private: @@ -107,7 +107,8 @@ private:
inPortLabel->setText(QApplication::translate("srvTunForm", "InPort:", 0));
cryptoTypeLabel->setText(QApplication::translate("srvTunForm", "Crypto type:", 0));
accessListLabel->setText(QApplication::translate("srvTunForm", "Access list:", 0));
hostOverrideLabel->setText(QApplication::translate("srvTunForm", "Host override:", 0));
if(tunnelConfig->getType()==i2p::client::I2P_TUNNELS_SECTION_TYPE_HTTP)
hostOverrideLabel->setText(QApplication::translate("srvTunForm", "Host override:", 0));
webIRCPassLabel->setText(QApplication::translate("srvTunForm", "WebIRC password:", 0));
addressLabel->setText(QApplication::translate("srvTunForm", "Address:", 0));
@ -131,7 +132,9 @@ protected: @@ -131,7 +132,9 @@ protected:
if(!isValidSingleLine(keysLineEdit))return false;
if(!isValidSingleLine(inPortLineEdit))return false;
if(!isValidSingleLine(accessListLineEdit))return false;
if(!isValidSingleLine(hostOverrideLineEdit))return false;
if(stc->getType()==i2p::client::I2P_TUNNELS_SECTION_TYPE_HTTP) {
if(!isValidSingleLine(hostOverrideLineEdit))return false;
}
if(!isValidSingleLine(webIRCPassLineEdit))return false;
if(!isValidSingleLine(addressLineEdit))return false;
@ -165,7 +168,9 @@ protected: @@ -165,7 +168,9 @@ protected:
stc->setaccessList(accessListLineEdit->text().toStdString());
stc->sethostOverride(hostOverrideLineEdit->text().toStdString());
if(stc->getType()==i2p::client::I2P_TUNNELS_SECTION_TYPE_HTTP) {
stc->sethostOverride(hostOverrideLineEdit->text().toStdString());
}
stc->setwebircpass(webIRCPassLineEdit->text().toStdString());

Loading…
Cancel
Save