transmission/qt/MakeDialog.h

46 lines
983 B
C
Raw Permalink Normal View History

// This file Copyright © Mnemosyne LLC.
2022-08-08 18:05:39 +00:00
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// 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
#pragma once
2009-04-09 18:55:47 +00:00
#include <optional>
#include <libtransmission/tr-macros.h>
#include <libtransmission/makemeta.h>
#include "BaseDialog.h"
#include "ui_MakeDialog.h"
2009-04-09 18:55:47 +00:00
class QAbstractButton;
class Session;
2009-04-09 18:55:47 +00:00
class MakeDialog : public BaseDialog
2009-04-09 18:55:47 +00:00
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
TR_DISABLE_COPY_MOVE(MakeDialog)
2009-04-09 18:55:47 +00:00
public:
MakeDialog(Session&, QWidget* parent = nullptr);
2015-06-12 22:12:12 +00:00
protected:
2015-06-12 22:12:12 +00:00
// QWidget
void dragEnterEvent(QDragEnterEvent*) override;
void dropEvent(QDropEvent*) override;
2009-04-09 18:55:47 +00:00
private slots:
void onSourceChanged();
void makeTorrent();
void onPieceSizeUpdated(int);
2015-06-12 22:12:12 +00:00
private:
QString getSource() const;
void updatePiecesLabel();
Session& session_;
2009-04-09 18:55:47 +00:00
Ui::MakeDialog ui_ = {};
std::optional<tr_metainfo_builder> builder_;
2009-04-09 18:55:47 +00:00
};