mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 16:56:30 -06:00
105 lines
2.0 KiB
C++
105 lines
2.0 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2020, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// ConfigWindow.h - Configuration window
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "ConfigWindow.h"
|
|
#include "ui_ConfigWindow.h"
|
|
|
|
ConfigWindow::ConfigWindow(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::ConfigWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
ConfigWindow::~ConfigWindow()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void ConfigWindow::on_buttonBox_accepted()
|
|
{
|
|
this->close();
|
|
}
|
|
|
|
void ConfigWindow::on_buttonBox_rejected()
|
|
{
|
|
this->close();
|
|
}
|
|
|
|
void ConfigWindow::on_chkFixedPort_stateChanged(int state)
|
|
{
|
|
if (state == Qt::Checked)
|
|
ui->spinPortNumber->setEnabled(true);
|
|
else
|
|
ui->spinPortNumber->setEnabled(false);
|
|
}
|
|
|
|
QString ConfigWindow::getBrowserCommand()
|
|
{
|
|
return ui->browserCommandLineEdit->text();
|
|
}
|
|
|
|
bool ConfigWindow::getFixedPort()
|
|
{
|
|
return ui->chkFixedPort->isChecked();
|
|
}
|
|
|
|
int ConfigWindow::getPortNumber()
|
|
{
|
|
return ui->spinPortNumber->value();
|
|
}
|
|
|
|
QString ConfigWindow::getPythonPath()
|
|
{
|
|
return ui->pythonPathLineEdit->text();
|
|
}
|
|
|
|
QString ConfigWindow::getApplicationPath()
|
|
{
|
|
return ui->applicationPathLineEdit->text();
|
|
}
|
|
|
|
|
|
void ConfigWindow::setBrowserCommand(QString command)
|
|
{
|
|
ui->browserCommandLineEdit->setText(command);
|
|
}
|
|
|
|
void ConfigWindow::setFixedPort(bool fixedPort)
|
|
{
|
|
if (fixedPort)
|
|
{
|
|
ui->chkFixedPort->setCheckState(Qt::Checked);
|
|
ui->spinPortNumber->setEnabled(true);
|
|
}
|
|
else
|
|
{
|
|
ui->chkFixedPort->setCheckState(Qt::Unchecked);
|
|
ui->spinPortNumber->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
void ConfigWindow::setPortNumber(int port)
|
|
{
|
|
ui->spinPortNumber->setValue(port);
|
|
}
|
|
|
|
void ConfigWindow::setPythonPath(QString path)
|
|
{
|
|
ui->pythonPathLineEdit->setText(path);
|
|
}
|
|
|
|
void ConfigWindow::setApplicationPath(QString path)
|
|
{
|
|
ui->applicationPathLineEdit->setText(path);
|
|
}
|
|
|