mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
120 lines
4.1 KiB
C++
120 lines
4.1 KiB
C++
#include <QtWidgets>
|
|
#include "vfileinfodialog.h"
|
|
#include "vdirectory.h"
|
|
#include "vfile.h"
|
|
#include "vconfigmanager.h"
|
|
#include "utils/vutils.h"
|
|
|
|
extern VConfigManager *g_config;
|
|
|
|
VFileInfoDialog::VFileInfoDialog(const QString &title, const QString &info,
|
|
VDirectory *directory, const VFile *file,
|
|
QWidget *parent)
|
|
: QDialog(parent), title(title), info(info),
|
|
m_directory(directory), m_file(file)
|
|
{
|
|
setupUI();
|
|
|
|
connect(nameEdit, &QLineEdit::textChanged, this, &VFileInfoDialog::handleInputChanged);
|
|
|
|
handleInputChanged();
|
|
}
|
|
|
|
void VFileInfoDialog::setupUI()
|
|
{
|
|
QLabel *infoLabel = NULL;
|
|
if (!info.isEmpty()) {
|
|
infoLabel = new QLabel(info);
|
|
}
|
|
|
|
// File name.
|
|
QString name = m_file->getName();
|
|
nameEdit = new QLineEdit(name);
|
|
int baseStart = 0, baseLength = name.size();
|
|
int dotIdx = name.lastIndexOf('.');
|
|
if (dotIdx != -1) {
|
|
baseLength = dotIdx;
|
|
}
|
|
|
|
// Select without suffix.
|
|
nameEdit->setSelection(baseStart, baseLength);
|
|
|
|
// Created time.
|
|
QString createdTimeStr = m_file->getCreatedTimeUtc().toLocalTime()
|
|
.toString(Qt::DefaultLocaleLongDate);
|
|
QLabel *createdTimeLabel = new QLabel(createdTimeStr);
|
|
|
|
// Modified time.
|
|
createdTimeStr = m_file->getModifiedTimeUtc().toLocalTime()
|
|
.toString(Qt::DefaultLocaleLongDate);
|
|
QLabel *modifiedTimeLabel = new QLabel(createdTimeStr);
|
|
modifiedTimeLabel->setToolTip(tr("Last modified time within VNote"));
|
|
|
|
QFormLayout *topLayout = new QFormLayout();
|
|
topLayout->addRow(tr("Note &name:"), nameEdit);
|
|
topLayout->addRow(tr("Created time:"), createdTimeLabel);
|
|
topLayout->addRow(tr("Modified time:"), modifiedTimeLabel);
|
|
|
|
m_warnLabel = new QLabel();
|
|
m_warnLabel->setWordWrap(true);
|
|
m_warnLabel->hide();
|
|
|
|
// Ok is the default button.
|
|
m_btnBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
connect(m_btnBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
|
connect(m_btnBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
|
|
QPushButton *okBtn = m_btnBox->button(QDialogButtonBox::Ok);
|
|
nameEdit->setMinimumWidth(okBtn->sizeHint().width() * 3);
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout();
|
|
if (infoLabel) {
|
|
mainLayout->addWidget(infoLabel);
|
|
}
|
|
|
|
mainLayout->addLayout(topLayout);
|
|
mainLayout->addWidget(m_warnLabel);
|
|
mainLayout->addWidget(m_btnBox);
|
|
mainLayout->setSizeConstraint(QLayout::SetFixedSize);
|
|
setLayout(mainLayout);
|
|
|
|
setWindowTitle(title);
|
|
}
|
|
|
|
void VFileInfoDialog::handleInputChanged()
|
|
{
|
|
bool showWarnLabel = false;
|
|
QString name = nameEdit->text();
|
|
bool nameOk = !name.isEmpty();
|
|
if (nameOk && name != m_file->getName()) {
|
|
// Check if the name conflicts with existing note name.
|
|
// Case-insensitive when creating note.
|
|
if (m_directory->findFile(name, false)) {
|
|
nameOk = false;
|
|
showWarnLabel = true;
|
|
QString nameConflictText = tr("<span style=\"%1\">WARNING</span>: Name (case-insensitive) already exists. "
|
|
"Please choose another name.")
|
|
.arg(g_config->c_warningTextStyle);
|
|
m_warnLabel->setText(nameConflictText);
|
|
} else if (VUtils::docTypeFromName(name) != m_file->getDocType()) {
|
|
// Check if the name change the doc type.
|
|
nameOk = false;
|
|
showWarnLabel = true;
|
|
QString nameConflictText = tr("<span style=\"%1\">WARNING</span>: Changing type of the note is not supported. "
|
|
"Please use the same suffix as the old one.")
|
|
.arg(g_config->c_warningTextStyle);
|
|
m_warnLabel->setText(nameConflictText);
|
|
}
|
|
}
|
|
|
|
m_warnLabel->setVisible(showWarnLabel);
|
|
|
|
QPushButton *okBtn = m_btnBox->button(QDialogButtonBox::Ok);
|
|
okBtn->setEnabled(nameOk);
|
|
}
|
|
|
|
QString VFileInfoDialog::getNameInput() const
|
|
{
|
|
return nameEdit->text();
|
|
}
|