2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2010-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <memory>
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <gtkmm.h>
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2021-12-14 08:43:27 +00:00
|
|
|
#include <libtransmission/tr-macros.h>
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session;
|
2021-10-18 20:22:31 +00:00
|
|
|
typedef struct tr_ctor tr_ctor;
|
|
|
|
|
|
|
|
class TorrentUrlChooserDialog : public Gtk::Dialog
|
|
|
|
{
|
|
|
|
public:
|
2021-12-14 08:43:27 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(TorrentUrlChooserDialog)
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
static std::unique_ptr<TorrentUrlChooserDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
protected:
|
2021-11-01 00:11:23 +00:00
|
|
|
TorrentUrlChooserDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
private:
|
2021-11-01 00:11:23 +00:00
|
|
|
void onOpenURLResponse(int response, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TorrentFileChooserDialog : public Gtk::FileChooserDialog
|
|
|
|
{
|
|
|
|
public:
|
2021-12-14 08:43:27 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(TorrentFileChooserDialog)
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
static std::unique_ptr<TorrentFileChooserDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
protected:
|
2021-11-01 00:11:23 +00:00
|
|
|
TorrentFileChooserDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
private:
|
2021-11-01 00:11:23 +00:00
|
|
|
void onOpenDialogResponse(int response, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class OptionsDialog : public Gtk::Dialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~OptionsDialog() override;
|
|
|
|
|
2021-12-14 08:43:27 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(OptionsDialog)
|
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
static std::unique_ptr<OptionsDialog> create(
|
|
|
|
Gtk::Window& parent,
|
2021-11-01 00:11:23 +00:00
|
|
|
Glib::RefPtr<Session> const& core,
|
2021-10-18 20:22:31 +00:00
|
|
|
std::unique_ptr<tr_ctor, void (*)(tr_ctor*)> ctor);
|
|
|
|
|
|
|
|
protected:
|
2021-11-01 00:11:23 +00:00
|
|
|
OptionsDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core, std::unique_ptr<tr_ctor, void (*)(tr_ctor*)> ctor);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|