transmission/qt/MakeDialog.h

52 lines
884 B
C
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
2009-04-09 18:55:47 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2009-04-09 18:55:47 +00:00
*
*/
#pragma once
2009-04-09 18:55:47 +00:00
#include <memory>
#include "BaseDialog.h"
#include "Macros.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
extern "C"
{
struct tr_metainfo_builder;
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();
2015-06-12 22:12:12 +00:00
private:
QString getSource() const;
Session& session_;
2009-04-09 18:55:47 +00:00
Ui::MakeDialog ui_ = {};
std::unique_ptr<tr_metainfo_builder, void (*)(tr_metainfo_builder*)> builder_;
2009-04-09 18:55:47 +00:00
};