mirror of
https://github.com/transmission/transmission
synced 2024-12-30 11:36:07 +00:00
971cc6d2d9
We don't currently (if ever) provide context help, so the button is useless. Moreover, on Windows 10 it's even larger than before and sometimes title text doesn't fit because of it.
56 lines
950 B
C++
56 lines
950 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef QTR_MAKE_DIALOG_H
|
|
#define QTR_MAKE_DIALOG_H
|
|
|
|
#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
|
|
virtual void dragEnterEvent (QDragEnterEvent *);
|
|
virtual void dropEvent (QDropEvent *);
|
|
|
|
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;
|
|
};
|
|
|
|
#endif // QTR_MAKE_DIALOG_H
|