1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
// SPDX-FileCopyrightText: 2017 Thomas Eschenbacher <Thomas.Eschenbacher@gmx.de>
// SPDX-FileCopyrightText: 2024 Mark Penner <mrp@markpenner.space>
// SPDX-License-Identifier: GPL-2.0-or-later
/***************************************************************************
* K3BExportOptionsDialog.cpp - dialog for K3b export options
* -------------------
* begin : Thu Apr 13 2017
* copyright : (C) 2017 by Thomas Eschenbacher
* email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "config.h"
#include <libkwave/MessageBox.h>
#include "libkwave/Utils.h"
#include <QCheckBox>
#include <QDialogButtonBox>
#include <QLineEdit>
#include <KComboBox>
#include <KConfig>
#include <KConfigGroup>
#include <KSharedConfig>
#include "K3BExportDialog.h"
#define CFG_GROUP _("KwaveFileDialog-kwave_export_k3b")
//***************************************************************************
Kwave::K3BExportDialog::K3BExportDialog(
QWidget *parent,
QString &pattern,
bool selection_only,
bool have_selection,
Kwave::K3BExportPlugin::overwrite_policy_t overwrite_policy,
QUrl url
)
:QDialog(parent), Ui::K3BExportDialogBase()
{
setupUi(this);
cbLabelPattern->addItem(i18nc(
"default entry of the list of placeholder patterns in "
"the K3b export plugin (used for detecting title and artist "
"from a label description)",
"(auto detect)"
));
foreach (const QString &p, Kwave::K3BExportPlugin::knownPatterns())
cbLabelPattern->addItem(p);
Q_ASSERT(cbLabelPattern);
if (pattern.trimmed().length())
cbLabelPattern->setCurrentText(pattern.trimmed());
else
cbLabelPattern->setCurrentIndex(0);
// the "selection only" checkbox
Q_ASSERT(chkSelectionOnly);
if (have_selection) {
// we have a selection
chkSelectionOnly->setEnabled(true);
chkSelectionOnly->setChecked(selection_only);
} else {
// no selection -> force it to "off"
chkSelectionOnly->setEnabled(false);
chkSelectionOnly->setChecked(false);
}
// get the last project directory
QString path = url.adjusted(QUrl::RemoveFilename).toDisplayString();
KConfigGroup cfg = KSharedConfig::openConfig()->group(CFG_GROUP);
QUrl last_url = Kwave::URLfromUserInput(cfg.readEntry("last_url", path));
// construct the project file name
QFileInfo fi(url.path());
last_url.setPath(last_url.path() + fi.baseName() + _(".k3b"));
fileUrlRequester->setUrl(last_url);
fileUrlRequester->setNameFilter(
i18nc("file type filter when exporting to K3b", "K3b project file (*.k3b)")
);
dirUrlRequester->setUrl(last_url.adjusted(QUrl::RemoveFilename));
Q_ASSERT(cbOverwritePolicy);
cbOverwritePolicy->setCurrentIndex(static_cast<int>(overwrite_policy));
connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
}
//***************************************************************************
Kwave::K3BExportDialog::~K3BExportDialog()
{
}
//***************************************************************************
QString Kwave::K3BExportDialog::pattern() const
{
Q_ASSERT(cbLabelPattern);
if (!cbLabelPattern) return QString();
// special handling: the first entry in the list is the default pattern
// (which is "auto-detect") -> map this to empty pattern
QString p = cbLabelPattern->currentText().trimmed();
if (p == cbLabelPattern->itemText(0)) return QString();
return p;
}
//***************************************************************************
bool Kwave::K3BExportDialog::selectionOnly() const
{
Q_ASSERT(chkSelectionOnly);
return (chkSelectionOnly) ? chkSelectionOnly->isChecked() : false;
}
//***************************************************************************
Kwave::K3BExportPlugin::overwrite_policy_t
Kwave::K3BExportDialog::overwritePolicy() const
{
Q_ASSERT(cbOverwritePolicy);
return static_cast<Kwave::K3BExportPlugin::overwrite_policy_t>(
(cbOverwritePolicy) ?
cbOverwritePolicy->currentIndex() : 0
);
}
QUrl Kwave::K3BExportDialog::projectFile() const
{
QUrl url = fileUrlRequester->url();
if (url.isValid()) {
return url;
}
return QUrl();
}
QUrl Kwave::K3BExportDialog::exportLocation() const
{
QUrl url = dirUrlRequester->url();
if (url.isValid()) {
return url;
}
return QUrl();
}
void Kwave::K3BExportDialog::accept()
{
QUrl url = projectFile();
QString msg;
if (!url.isValid()) {
msg += i18n("Please choose a K3b project file name");
msg += _("\n");
}
if (!exportLocation().isValid()) {
msg += i18n("Please choose where to export the audio files");
}
if (msg.isEmpty()) {
KConfigGroup cfg = KSharedConfig::openConfig()->group(CFG_GROUP);
cfg.writeEntry("last_url", url.adjusted(QUrl::RemoveFilename));
cfg.sync();
QDialog::accept();
} else {
MessageBox::error(this, msg);
}
}
//***************************************************************************
//***************************************************************************
#include "moc_K3BExportDialog.cpp"
|