mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 14:17:05 +08:00
37 lines
718 B
C
37 lines
718 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef ADDTORRENTDIALOG_H
|
||
|
#define ADDTORRENTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
#include "ui_addtorrentform.h"
|
||
|
|
||
|
class AddTorrentDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
AddTorrentDialog(QWidget *parent = nullptr);
|
||
|
|
||
|
QString torrentFileName() const;
|
||
|
QString destinationFolder() const;
|
||
|
|
||
|
public slots:
|
||
|
void setTorrent(const QString &torrentFile);
|
||
|
|
||
|
private slots:
|
||
|
void selectTorrent();
|
||
|
void selectDestination();
|
||
|
void enableOkButton();
|
||
|
|
||
|
private:
|
||
|
Ui_AddTorrentFile ui;
|
||
|
QString destinationDirectory;
|
||
|
QString lastDirectory;
|
||
|
QString lastDestinationDirectory;
|
||
|
};
|
||
|
|
||
|
#endif
|