transmission/qt/make-dialog.h

95 lines
2.1 KiB
C
Raw Normal View History

2009-04-09 18:55:47 +00:00
/*
* This file Copyright (C) 2009-2014 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 MAKE_DIALOG_H
#define MAKE_DIALOG_H
#include <QDialog>
#include <QTimer>
class QAbstractButton;
class QPlainTextEdit;
class QLineEdit;
class QCheckBox;
class QLabel;
class QPushButton;
class QRadioButton;
class Session;
class QProgressBar;
class QDialogButtonBox;
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 onButtonBoxClicked (QAbstractButton*);
void onNewButtonBoxClicked (QAbstractButton*);
void onNewDialogDestroyed (QObject*);
void onProgress ();
2013-09-14 22:45:04 +00:00
void onFolderClicked ();
void onFolderSelected (const QString&);
void onFolderSelected (const QStringList&);
2013-09-14 22:45:04 +00:00
void onFileClicked ();
void onFileSelected (const QString&);
void onFileSelected (const QStringList&);
2013-09-14 22:45:04 +00:00
void onDestinationClicked ();
void onDestinationSelected (const QString&);
void onDestinationSelected (const QStringList&);
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private:
void makeTorrent ();
QString getSource () const;
void enableBuddyWhenChecked (QCheckBox *, QWidget *);
void enableBuddyWhenChecked (QRadioButton *, QWidget *);
2009-04-09 18:55:47 +00:00
2013-09-14 22:45:04 +00:00
private:
Session& mySession;
QString myDestination;
QString myTarget;
QString myFile;
QString myFolder;
QTimer myTimer;
QRadioButton * myFolderRadio;
QRadioButton * myFileRadio;
QPushButton * myDestinationButton;
QPushButton * myFileButton;
QPushButton * myFolderButton;
QPlainTextEdit * myTrackerEdit;
QCheckBox * myCommentCheck;
QLineEdit * myCommentEdit;
QCheckBox * myPrivateCheck;
QLabel * mySourceLabel;
QDialogButtonBox * myButtonBox;
QProgressBar * myNewProgress;
QLabel * myNewLabel;
QDialogButtonBox * myNewButtonBox;
QDialog * myNewDialog;
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);
~MakeDialog ();
2009-04-09 18:55:47 +00:00
};
#endif