Files
transmission/qt/RelocateDialog.h
Yat Ho f495047a33 ci(qt): run clang-tidy on Linux (#8557)
* ci(qt): run clang-tidy

* chore(qt): silence warnings
2026-02-19 09:30:05 -06:00

41 lines
1.0 KiB
C++

// This file Copyright © Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#include "BaseDialog.h"
#include "Typedefs.h"
#include "ui_RelocateDialog.h"
class Session;
class TorrentModel;
class RelocateDialog : public BaseDialog
{
Q_OBJECT
public:
RelocateDialog(Session& session, TorrentModel const& model, torrent_ids_t ids, QWidget* parent = nullptr);
~RelocateDialog() override = default;
RelocateDialog(RelocateDialog&&) = delete;
RelocateDialog(RelocateDialog const&) = delete;
RelocateDialog& operator=(RelocateDialog&&) = delete;
RelocateDialog& operator=(RelocateDialog const&) = delete;
private slots:
void onSetLocation();
void onMoveToggled(bool b) const;
private:
QString newLocation() const;
Session& session_;
torrent_ids_t const ids_;
Ui::RelocateDialog ui_ = {};
static bool move_flag;
};