transmission/qt/StatsDialog.h

40 lines
597 B
C++

/*
* This file Copyright (C) 2009-2015 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 "BaseDialog.h"
#include "ui_StatsDialog.h"
class QTimer;
class Session;
class StatsDialog : public BaseDialog
{
Q_OBJECT
public:
StatsDialog(Session&, QWidget* parent = nullptr);
~StatsDialog() override;
// QWidget
void setVisible(bool visible) override;
private slots:
void updateStats();
private:
Session& mySession;
Ui::StatsDialog ui;
QTimer* myTimer;
};