53 lines
856 B
C++
53 lines
856 B
C++
/*
|
|
* This file Copyright (C) 2009-2015 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "BaseDialog.h"
|
|
|
|
#include "ui_MakeDialog.h"
|
|
|
|
class QAbstractButton;
|
|
|
|
class Session;
|
|
|
|
extern "C"
|
|
{
|
|
struct tr_metainfo_builder;
|
|
}
|
|
|
|
class MakeDialog : public BaseDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MakeDialog(Session&, QWidget* parent = nullptr);
|
|
virtual ~MakeDialog();
|
|
|
|
protected:
|
|
// QWidget
|
|
void dragEnterEvent(QDragEnterEvent*) override;
|
|
void dropEvent(QDropEvent*) override;
|
|
|
|
private:
|
|
QString getSource() const;
|
|
|
|
private slots:
|
|
void onSourceChanged();
|
|
void makeTorrent();
|
|
|
|
private:
|
|
Session& mySession;
|
|
|
|
Ui::MakeDialog ui;
|
|
|
|
std::unique_ptr<tr_metainfo_builder, void (*)(tr_metainfo_builder*)> myBuilder;
|
|
};
|