2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2009-2022 Mnemosyne LLC.
|
2022-02-07 16:25:02 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "MakeDialog.h"
|
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <future>
|
2022-08-17 16:08:36 +00:00
|
|
|
#include <utility>
|
Qt 6 support (#2069)
* Bump minimum Qt version to 5.6
* Switch from QRegExp to QRegularExpression
While still available, QRegExp has been moved to Qt6::Core5Compat module
and is not part of Qt6::Core.
* Use qIsEffectiveTLD instead of QUrl::topLevelDomain
The latter is not part of Qt6::Core. The former is a private utility in
Qt6::Network; using it for now, until (and if) we switch to something
non-Qt-specific.
* Use QStyle::State_Horizontal state when drawing progress bars
Although available for a long time, this state either didn't apply to
progress bars before Qt 6, or was deduced based on bar size. With Qt 6,
failing to specify it results in bad rendering.
* Don't use QStringRef (and associated methods)
While still available, QStringRef has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core. Related method (e.g.
QString::midRef) have been removed in Qt 6.
* Use Qt::ItemIsAutoTristate instead of Qt::ItemIsTristate
The latter was deprecated and replaced with the former in Qt 5.6.
* Don't use QApplication::globalStrut
This property has been deprecated in Qt 5.15 and removed in Qt 6.
* Use QImage::fromHICON instead of QtWin::fromHICON
WinExtras module (providind the latter helper) has been removed in Qt 6.
* Use QStringDecoder instead of QTextCodec
While still available, QTextCodec has been moved to Qt6::Core5Compat
module and is not part of Qt6::Core.
* Don't forward-declare QStringList
Instead of being a standalone class, its definition has changed to
QList<QString> template specialization in Qt 6.
* Use explicit (since Qt 6) QFileInfo constructor
* Use QDateTime's {to,from}SecsSinceEpoch instead of {to,from}Time_t
The latter was deprecated in Qt 5.8 and removed in Qt 6.
* Don't use QFuture<>'s operator==
It has been removed in Qt 6. Since the original issue this code was
solving was caused by future reuse, just don't reuse futures and create
new finished ones when necessary.
* Use std::vector<> instead of QVector<>
The latter has been changed to a typedef for QList<>, which might not be
what one wants, and which also changed behavior a bit leading to
compilation errors.
* Don't use + for flags, cast to int explicitly
Operator+ for enum values has been deleted in Qt 6, so using operator|
instead. Then, there's no conversion from QFlags<> to QVariant, so need
to cast to int.
* Support Qt 6 in CMake and for MSI packaging
* Remove extra (empty) CMake variable use when constructing Qt target names
* Simplify logic in tr_qt_add_translation CMake helper
Co-authored-by: Charles Kerr <charles@charleskerr.com>
2021-11-03 21:20:11 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-12-31 22:27:46 +00:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFileInfo>
|
2013-07-27 21:58:14 +00:00
|
|
|
#include <QMimeData>
|
2009-10-05 19:53:38 +00:00
|
|
|
#include <QPushButton>
|
|
|
|
#include <QTimer>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
#include <libtransmission/error.h>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <libtransmission/makemeta.h>
|
2020-08-11 18:11:55 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "ColumnResizer.h"
|
|
|
|
#include "Formatter.h"
|
|
|
|
#include "Session.h"
|
|
|
|
#include "Utils.h"
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "ui_MakeProgressDialog.h"
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2014-12-31 22:27:46 +00:00
|
|
|
namespace
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class MakeProgressDialog : public BaseDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-08-02 19:46:08 +00:00
|
|
|
MakeProgressDialog(
|
|
|
|
Session& session,
|
|
|
|
tr_metainfo_builder& builder,
|
|
|
|
std::future<tr_error*> future,
|
|
|
|
QString outfile,
|
|
|
|
QWidget* parent = nullptr);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
private slots:
|
2020-05-20 01:32:51 +00:00
|
|
|
void onButtonBoxClicked(QAbstractButton* button);
|
2017-04-19 12:04:45 +00:00
|
|
|
void onProgress();
|
|
|
|
|
|
|
|
private:
|
2020-05-27 21:53:12 +00:00
|
|
|
Session& session_;
|
|
|
|
tr_metainfo_builder& builder_;
|
2022-08-02 19:46:08 +00:00
|
|
|
std::future<tr_error*> future_;
|
|
|
|
QString const outfile_;
|
2020-06-05 19:02:11 +00:00
|
|
|
Ui::MakeProgressDialog ui_ = {};
|
2020-05-27 21:53:12 +00:00
|
|
|
QTimer timer_;
|
2017-04-19 12:04:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
MakeProgressDialog::MakeProgressDialog(
|
|
|
|
Session& session,
|
|
|
|
tr_metainfo_builder& builder,
|
|
|
|
std::future<tr_error*> future,
|
|
|
|
QString outfile,
|
|
|
|
QWidget* parent)
|
2021-08-15 09:41:48 +00:00
|
|
|
: BaseDialog(parent)
|
|
|
|
, session_(session)
|
|
|
|
, builder_(builder)
|
2022-08-02 19:46:08 +00:00
|
|
|
, future_(std::move(future))
|
|
|
|
, outfile_(std::move(outfile))
|
2014-12-31 22:27:46 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.setupUi(this);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.dialogButtons, &QDialogButtonBox::clicked, this, &MakeProgressDialog::onButtonBoxClicked);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(&timer_, &QTimer::timeout, this, &MakeProgressDialog::onProgress);
|
2020-05-27 21:53:12 +00:00
|
|
|
timer_.start(100);
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
onProgress();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeProgressDialog::onButtonBoxClicked(QAbstractButton* button)
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
switch (ui_.dialogButtons->standardButton(button))
|
2009-10-05 19:53:38 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
case QDialogButtonBox::Open:
|
2022-08-02 19:46:08 +00:00
|
|
|
session_.addNewlyCreatedTorrent(outfile_, QFileInfo(QString::fromStdString(builder_.top())).dir().path());
|
2013-09-14 22:45:04 +00:00
|
|
|
break;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
case QDialogButtonBox::Abort:
|
2022-08-02 19:46:08 +00:00
|
|
|
builder_.cancelChecksums();
|
2013-09-14 22:45:04 +00:00
|
|
|
break;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
default: // QDialogButtonBox::Ok:
|
2013-09-14 22:45:04 +00:00
|
|
|
break;
|
2009-10-05 19:53:38 +00:00
|
|
|
}
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
close();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeProgressDialog::onProgress()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
auto const is_done = !future_.valid() || future_.wait_for(std::chrono::seconds(0)) == std::future_status::ready;
|
|
|
|
|
|
|
|
if (is_done)
|
|
|
|
{
|
|
|
|
timer_.stop();
|
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// progress bar
|
2022-08-02 19:46:08 +00:00
|
|
|
auto progress = int{ 100 }; // [0..100]
|
|
|
|
if (!is_done)
|
|
|
|
{
|
|
|
|
auto const [current, total] = builder_.checksumStatus();
|
|
|
|
progress = static_cast<int>((100.0 * current) / total);
|
|
|
|
}
|
|
|
|
ui_.progressBar->setValue(progress);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// progress label
|
2022-08-02 19:46:08 +00:00
|
|
|
auto const top = QString::fromStdString(builder_.top());
|
2022-02-09 02:25:19 +00:00
|
|
|
auto const base = QFileInfo(top).completeBaseName();
|
2017-04-19 12:04:45 +00:00
|
|
|
QString str;
|
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
auto success = false;
|
|
|
|
if (!is_done)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
str = tr("Creating \"%1\"").arg(base);
|
|
|
|
}
|
2022-08-02 19:46:08 +00:00
|
|
|
else
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
tr_error* error = future_.get();
|
|
|
|
|
|
|
|
if (error == nullptr)
|
|
|
|
{
|
|
|
|
builder_.save(outfile_.toStdString(), &error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error == nullptr)
|
|
|
|
{
|
|
|
|
str = tr("Created \"%1\"!").arg(base);
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
str = tr("Couldn't create \"%1\": %2 (%3)").arg(base).arg(QString::fromUtf8(error->message)).arg(error->code);
|
|
|
|
tr_error_free(error);
|
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.progressLabel->setText(str);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// buttons
|
2022-08-02 19:46:08 +00:00
|
|
|
ui_.dialogButtons->button(QDialogButtonBox::Abort)->setEnabled(!is_done);
|
|
|
|
ui_.dialogButtons->button(QDialogButtonBox::Ok)->setEnabled(is_done);
|
|
|
|
ui_.dialogButtons->button(QDialogButtonBox::Open)->setEnabled(is_done && success);
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "MakeDialog.moc"
|
2014-12-31 22:27:46 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2009-10-05 19:53:38 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeDialog::makeTorrent()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
if (!builder_)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-09-14 22:45:04 +00:00
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
// get the announce list
|
|
|
|
auto trackers = tr_announce_list();
|
|
|
|
trackers.parse(ui_.trackersEdit->toPlainText().toStdString());
|
|
|
|
builder_->setAnnounceList(std::move(trackers));
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
// the file to create
|
2022-08-02 19:46:08 +00:00
|
|
|
auto const path = QString::fromStdString(builder_->top());
|
2020-05-29 17:40:07 +00:00
|
|
|
auto const torrent_name = QFileInfo(path).completeBaseName() + QStringLiteral(".torrent");
|
2022-08-02 19:46:08 +00:00
|
|
|
auto const outfile = QDir(ui_.destinationButton->path()).filePath(torrent_name);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// comment
|
2020-05-27 21:53:12 +00:00
|
|
|
if (ui_.commentCheck->isChecked())
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
builder_->setComment(ui_.commentEdit->text().toStdString());
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
|
2021-10-18 23:05:39 +00:00
|
|
|
// source
|
|
|
|
if (ui_.sourceCheck->isChecked())
|
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
builder_->setSource(ui_.sourceEdit->text().toStdString());
|
2021-10-18 23:05:39 +00:00
|
|
|
}
|
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
builder_->setPrivate(ui_.privateCheck->isChecked());
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
// pop up the dialog
|
2022-08-02 19:46:08 +00:00
|
|
|
auto* dialog = new MakeProgressDialog(session_, *builder_, builder_->makeChecksums(), outfile, this);
|
2017-04-19 12:04:45 +00:00
|
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
dialog->open();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2009-10-05 19:53:38 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
QString MakeDialog::getSource() const
|
2009-10-05 19:53:38 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
return (ui_.sourceFileRadio->isChecked() ? ui_.sourceFileButton : ui_.sourceFolderButton)->path();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeDialog::onSourceChanged()
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
builder_.reset();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2022-02-03 13:02:11 +00:00
|
|
|
if (auto const filename = getSource(); !filename.isEmpty())
|
2013-09-14 22:45:04 +00:00
|
|
|
{
|
2022-08-02 19:46:08 +00:00
|
|
|
builder_.emplace(filename.toStdString());
|
2013-09-14 22:45:04 +00:00
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2022-08-02 19:46:08 +00:00
|
|
|
if (!builder_)
|
2013-09-14 22:45:04 +00:00
|
|
|
{
|
2022-09-06 15:17:47 +00:00
|
|
|
updatePiecesLabel();
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-06 15:17:47 +00:00
|
|
|
ui_.pieceSizeSlider->setValue(log2(builder_->pieceSize()));
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
MakeDialog::MakeDialog(Session& session, QWidget* parent)
|
|
|
|
: BaseDialog(parent)
|
|
|
|
, session_(session)
|
2009-04-09 18:55:47 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.setupUi(this);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.destinationButton->setMode(PathButton::DirectoryMode);
|
|
|
|
ui_.destinationButton->setPath(QDir::homePath());
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceFolderButton->setMode(PathButton::DirectoryMode);
|
|
|
|
ui_.sourceFileButton->setMode(PathButton::FileMode);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-05-20 01:32:51 +00:00
|
|
|
auto* cr = new ColumnResizer(this);
|
2020-05-27 21:53:12 +00:00
|
|
|
cr->addLayout(ui_.filesSectionLayout);
|
|
|
|
cr->addLayout(ui_.propertiesSectionLayout);
|
2017-04-19 12:04:45 +00:00
|
|
|
cr->update();
|
2015-01-21 21:14:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
resize(minimumSizeHint());
|
2015-01-21 21:14:00 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.sourceFolderRadio, &QAbstractButton::toggled, this, &MakeDialog::onSourceChanged);
|
|
|
|
connect(ui_.sourceFolderButton, &PathButton::pathChanged, this, &MakeDialog::onSourceChanged);
|
|
|
|
connect(ui_.sourceFileRadio, &QAbstractButton::toggled, this, &MakeDialog::onSourceChanged);
|
|
|
|
connect(ui_.sourceFileButton, &PathButton::pathChanged, this, &MakeDialog::onSourceChanged);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2020-10-31 18:56:12 +00:00
|
|
|
connect(ui_.dialogButtons, &QDialogButtonBox::accepted, this, &MakeDialog::makeTorrent);
|
|
|
|
connect(ui_.dialogButtons, &QDialogButtonBox::rejected, this, &MakeDialog::close);
|
2022-09-06 15:17:47 +00:00
|
|
|
connect(ui_.pieceSizeSlider, &QSlider::valueChanged, this, &MakeDialog::onPieceSizeUpdated);
|
2014-12-31 22:27:46 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
onSourceChanged();
|
2009-04-09 18:55:47 +00:00
|
|
|
}
|
|
|
|
|
2010-08-02 20:55:11 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeDialog::dragEnterEvent(QDragEnterEvent* event)
|
2010-08-02 20:55:11 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
QMimeData const* mime = event->mimeData();
|
2010-08-02 20:55:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
if (!mime->urls().isEmpty() && QFileInfo(mime->urls().front().path()).exists())
|
|
|
|
{
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
2010-08-02 20:55:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void MakeDialog::dropEvent(QDropEvent* event)
|
2010-08-02 20:55:11 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
QString const filename = event->mimeData()->urls().front().path();
|
2020-05-27 21:53:12 +00:00
|
|
|
QFileInfo const file_info(filename);
|
2010-08-02 20:55:11 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
if (file_info.exists())
|
2010-08-02 20:55:11 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
if (file_info.isDir())
|
2010-08-02 20:55:11 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceFolderRadio->setChecked(true);
|
|
|
|
ui_.sourceFolderButton->setPath(filename);
|
2010-08-02 20:55:11 +00:00
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
else // it's a file
|
2010-08-02 20:55:11 +00:00
|
|
|
{
|
2020-05-27 21:53:12 +00:00
|
|
|
ui_.sourceFileRadio->setChecked(true);
|
|
|
|
ui_.sourceFileButton->setPath(filename);
|
2010-08-02 20:55:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-06 15:17:47 +00:00
|
|
|
|
|
|
|
void MakeDialog::updatePiecesLabel()
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
|
|
|
|
if (!builder_)
|
|
|
|
{
|
|
|
|
text = tr("<i>No source selected</i>");
|
|
|
|
ui_.pieceSizeSlider->setEnabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto const files = tr("%Ln File(s)", nullptr, builder_->fileCount());
|
|
|
|
auto const pieces = tr("%Ln Piece(s)", nullptr, builder_->pieceCount());
|
|
|
|
text = tr("%1 in %2; %3 @ %4")
|
|
|
|
.arg(Formatter::get().sizeToString(builder_->totalSize()))
|
|
|
|
.arg(files)
|
|
|
|
.arg(pieces)
|
|
|
|
.arg(Formatter::get().memToString(static_cast<uint64_t>(builder_->pieceSize())));
|
|
|
|
ui_.pieceSizeSlider->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_.sourceSizeLabel->setText(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MakeDialog::onPieceSizeUpdated(int value)
|
|
|
|
{
|
|
|
|
auto new_size = static_cast<uint64_t>(pow(2, value));
|
2022-11-12 15:53:09 +00:00
|
|
|
|
|
|
|
if (builder_)
|
|
|
|
{
|
|
|
|
builder_->setPieceSize(new_size);
|
|
|
|
}
|
|
|
|
|
2022-09-06 15:17:47 +00:00
|
|
|
updatePiecesLabel();
|
|
|
|
}
|