RedPanda-CPP/RedPandaIDE/widgets/newheaderdialog.cpp

94 lines
2.2 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2022-01-31 11:57:33 +08:00
#include "newheaderdialog.h"
#include "ui_newheaderdialog.h"
#include "../iconsmanager.h"
#include "../settings.h"
#include <QFileDialog>
2022-01-31 11:57:33 +08:00
NewHeaderDialog::NewHeaderDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::NewHeaderDialog)
{
setWindowFlag(Qt::WindowContextHelpButtonHint,false);
2022-01-31 11:57:33 +08:00
ui->setupUi(this);
resize(pSettings->ui().newHeaderDialogWidth(),pSettings->ui().newHeaderDialogHeight());
onUpdateIcons();
connect(pIconsManager,&IconsManager::actionIconsUpdated,
this, &NewHeaderDialog::onUpdateIcons);
ui->txtHeader->setFocus();
2022-01-31 11:57:33 +08:00
}
NewHeaderDialog::~NewHeaderDialog()
{
delete ui;
}
QString NewHeaderDialog::headerName() const
{
return ui->txtHeader->text();
}
QString NewHeaderDialog::path() const
{
return ui->txtPath->text();
}
void NewHeaderDialog::setHeaderName(const QString &name)
{
ui->txtHeader->setText(name);
ui->txtHeader->selectAll();
}
void NewHeaderDialog::setPath(const QString &location)
{
ui->txtPath->setText(location);
}
void NewHeaderDialog::onUpdateIcons()
{
pIconsManager->setIcon(ui->btnBrowse, IconsManager::ACTION_FILE_OPEN_FOLDER);
}
void NewHeaderDialog::closeEvent(QCloseEvent */*event*/)
{
reject();
}
void NewHeaderDialog::on_btnCreate_clicked()
{
accept();
}
void NewHeaderDialog::on_btnCancel_clicked()
{
reject();
}
void NewHeaderDialog::on_btnBrowse_clicked()
{
QString fileName = QFileDialog::getExistingDirectory(
this,
tr("Path"),
ui->txtPath->text());
ui->txtPath->setText(fileName);
}