transmission/qt/MakeDialog.h

54 lines
919 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
*
* $Id$
2009-04-09 18:55:47 +00:00
*/
#ifndef QTR_MAKE_DIALOG_H
#define QTR_MAKE_DIALOG_H
2009-04-09 18:55:47 +00:00
#include <memory>
2009-04-09 18:55:47 +00:00
#include <QDialog>
#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 QDialog
{
2013-09-14 22:45:04 +00:00
Q_OBJECT
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private slots:
void onSourceChanged ();
void makeTorrent ();
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private:
QString getSource () const;
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private:
Session& mySession;
Ui::MakeDialog ui;
std::unique_ptr<tr_metainfo_builder, void(*)(tr_metainfo_builder*)> myBuilder;
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
protected:
virtual void dragEnterEvent (QDragEnterEvent *);
virtual void dropEvent (QDropEvent *);
2013-09-14 22:45:04 +00:00
public:
MakeDialog (Session&, QWidget * parent = 0);
virtual ~MakeDialog ();
2009-04-09 18:55:47 +00:00
};
#endif // QTR_MAKE_DIALOG_H