transmission/gtk/StatsDialog.h

35 lines
653 B
C
Raw Normal View History

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