transmission/gtk/makemeta-ui.h

31 lines
567 B
C++

/*
* This file Copyright (C) 2007-2021 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
#include <memory>
#include <gtkmm.h>
class TrCore;
class MakeDialog : public Gtk::Dialog
{
public:
~MakeDialog() override;
static std::unique_ptr<MakeDialog> create(Gtk::Window& parent, Glib::RefPtr<TrCore> const& core);
protected:
MakeDialog(Gtk::Window& parent, Glib::RefPtr<TrCore> const& core);
private:
class Impl;
std::unique_ptr<Impl> const impl_;
};