2007-06-18 03:40:41 +00:00
|
|
|
/*
|
2021-10-18 20:22:31 +00:00
|
|
|
* This file Copyright (C) 2007-2021 Mnemosyne LLC
|
2007-06-18 03:40:41 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2008-09-23 19:11:04 +00:00
|
|
|
*
|
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
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <memory>
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session;
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
class MakeDialog : public Gtk::Dialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~MakeDialog() override;
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
static std::unique_ptr<MakeDialog> 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
|
|
|
MakeDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|