transmission/gtk/StatsDialog.h

32 lines
712 B
C
Raw Normal View History

// This file Copyright © 2007-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.
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_;
};