2023-02-11 21:49:42 +01:00
|
|
|
// This file Copyright © 2007-2023 Mnemosyne LLC.
|
2022-08-08 13:05:39 -05:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 12:27:56 -06:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2022-12-26 13:13:21 -08:00
|
|
|
#include <libtransmission/tr-macros.h>
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2022-12-26 17:43:20 -08:00
|
|
|
#include <glibmm/refptr.h>
|
|
|
|
#include <gtkmm/builder.h>
|
|
|
|
#include <gtkmm/dialog.h>
|
|
|
|
#include <gtkmm/window.h>
|
2021-10-18 23:22:31 +03:00
|
|
|
|
2022-12-26 13:13:21 -08:00
|
|
|
#include <memory>
|
2021-12-14 11:43:27 +03:00
|
|
|
|
2021-11-01 03:11:23 +03:00
|
|
|
class Session;
|
2021-10-18 23:22:31 +03:00
|
|
|
|
|
|
|
class MakeDialog : public Gtk::Dialog
|
|
|
|
{
|
|
|
|
public:
|
2022-09-08 01:25:04 +03:00
|
|
|
MakeDialog(
|
|
|
|
BaseObjectType* cast_item,
|
|
|
|
Glib::RefPtr<Gtk::Builder> const& builder,
|
|
|
|
Gtk::Window& parent,
|
|
|
|
Glib::RefPtr<Session> const& core);
|
2021-10-18 23:22:31 +03:00
|
|
|
~MakeDialog() override;
|
|
|
|
|
2021-12-14 11:43:27 +03:00
|
|
|
TR_DISABLE_COPY_MOVE(MakeDialog)
|
|
|
|
|
2021-11-01 03:11:23 +03:00
|
|
|
static std::unique_ptr<MakeDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 23:22:31 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|