/*************************************************************************** * Copyright (C) 2021 by Ilya Kotov * * forkotov02@ya.ru * * * * 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 2 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, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include #include #include #include #include #include #include #include #include #include "cueeditor_p.h" #include "filedialog.h" #include "ui_cueeditor.h" class CueSyntaxHighlighter : public QSyntaxHighlighter { public: CueSyntaxHighlighter(QTextDocument *parent) : QSyntaxHighlighter(parent) {} private: void highlightBlock(const QString &text) override { QTextCharFormat textFormat; textFormat.setForeground(Qt::darkGreen); QRegularExpression textExpr("\\\".*\\\""); QRegularExpressionMatchIterator i = textExpr.globalMatch(text); while(i.hasNext()) { QRegularExpressionMatch match = i.next(); setFormat(match.capturedStart(), match.capturedLength(), textFormat); } QTextCharFormat trackFormat; trackFormat.setFontWeight(QFont::Bold); QRegularExpression trackExpr("TRACK\\s+\\d+\\s*\\D*"); i = trackExpr.globalMatch(text); while(i.hasNext()) { QRegularExpressionMatch match = i.next(); setFormat(match.capturedStart(), match.capturedLength(), trackFormat); } } }; CueEditor::CueEditor(MetaDataModel *model, const TrackInfo &info, QWidget *parent) : QWidget(parent), m_ui(new Ui::CueEditor), m_model(model), m_info(info) { m_ui->setupUi(this); m_ui->plainTextEdit->setPlainText(model->cue()); m_parser.loadData(model->cue().toUtf8()); QSettings settings(Qmmp::configFile(), QSettings::IniFormat); m_lastDir = settings.value("CueEditor/last_dir", QDir::homePath()).toString(); m_editable = m_model && (m_model->dialogHints() & MetaDataModel::IsCueEditable) && !m_model->isReadOnly(); new CueSyntaxHighlighter(m_ui->plainTextEdit->document()); if(!m_editable) { m_ui->deleteButton->setEnabled(false); m_ui->loadButton->setEnabled(false); m_ui->plainTextEdit->setReadOnly(true); } } CueEditor::~CueEditor() { QSettings settings(Qmmp::configFile(), QSettings::IniFormat); settings.setValue("CueEditor/last_dir", m_lastDir); delete m_ui; } void CueEditor::save() { QString data = m_ui->plainTextEdit->toPlainText().trimmed(); if(data.isEmpty()) { m_model->removeCue(); m_parser.clear(); } else { data.append(QChar::LineFeed); m_model->setCue(data); m_parser.loadData(data.toUtf8()); } } bool CueEditor::isEditable() const { return m_editable; } int CueEditor::trackCount() const { return m_parser.count(); } void CueEditor::on_loadButton_clicked() { QString path = FileDialog::getOpenFileName(this, tr("Open CUE File"), m_lastDir, tr("CUE Files") +" (*.cue)"); if(!path.isEmpty()) { m_lastDir = QFileInfo(path).absoluteDir().path(); QFile file(path); file.open(QIODevice::ReadOnly); m_ui->plainTextEdit->setPlainText(QString::fromUtf8(file.readAll())); } } void CueEditor::on_deleteButton_clicked() { m_ui->plainTextEdit->clear(); } void CueEditor::on_saveAsButton_clicked() { QString path = FileDialog::getSaveFileName(this, tr("Save CUE File"), m_lastDir + "/" + m_info.value(Qmmp::TITLE) + ".cue", tr("CUE Files") +" (*.cue)"); if(!path.isEmpty()) { m_lastDir = QFileInfo(path).absoluteDir().path(); QString data = m_ui->plainTextEdit->toPlainText().trimmed(); data.append(QChar::LineFeed); QFile file(path); file.open(QIODevice::WriteOnly); file.write(data.toUtf8()); } }