75 lines
1.6 KiB
C++
75 lines
1.6 KiB
C++
// This file Copyright © 2009-2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
#include <QDir>
|
|
#include <QFile>
|
|
#include <QMap>
|
|
#include <QSet>
|
|
#include <QString>
|
|
#include <QTimer>
|
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
#include "AddData.h" // AddData
|
|
#include "BaseDialog.h"
|
|
#include "Torrent.h" // FileList
|
|
#include "ui_OptionsDialog.h"
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
#include <libtransmission/torrent-metainfo.h>
|
|
|
|
class Prefs;
|
|
class Session;
|
|
|
|
extern "C"
|
|
{
|
|
struct tr_variant;
|
|
}
|
|
|
|
class OptionsDialog : public BaseDialog
|
|
{
|
|
Q_OBJECT
|
|
TR_DISABLE_COPY_MOVE(OptionsDialog)
|
|
|
|
public:
|
|
OptionsDialog(Session& session, Prefs const& prefs, AddData addme, QWidget* parent = nullptr);
|
|
~OptionsDialog() override;
|
|
|
|
private slots:
|
|
void onAccepted();
|
|
void onPriorityChanged(QSet<int> const& file_indices, int);
|
|
void onWantedChanged(QSet<int> const& file_indices, bool);
|
|
|
|
void onSourceChanged();
|
|
void onDestinationChanged();
|
|
|
|
void onSessionUpdated();
|
|
|
|
private:
|
|
using mybins_t = QMap<uint32_t, int32_t>;
|
|
|
|
void reload();
|
|
void updateWidgetsLocality();
|
|
void clearInfo();
|
|
|
|
AddData add_;
|
|
FileList files_;
|
|
|
|
QDir local_destination_;
|
|
QTimer edit_timer_;
|
|
std::vector<bool> wanted_;
|
|
std::vector<int> priorities_;
|
|
Session& session_;
|
|
Ui::OptionsDialog ui_ = {};
|
|
std::optional<tr_torrent_metainfo> metainfo_;
|
|
bool is_local_ = {};
|
|
};
|