44 lines
677 B
C++
44 lines
677 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef QTR_STATS_DIALOG_H
|
|
#define QTR_STATS_DIALOG_H
|
|
|
|
#include "BaseDialog.h"
|
|
|
|
#include "ui_StatsDialog.h"
|
|
|
|
class QTimer;
|
|
|
|
class Session;
|
|
|
|
class StatsDialog: public BaseDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StatsDialog (Session&, QWidget * parent = nullptr);
|
|
~StatsDialog ();
|
|
|
|
// QWidget
|
|
virtual void setVisible (bool visible);
|
|
|
|
private slots:
|
|
void updateStats ();
|
|
|
|
private:
|
|
Session& mySession;
|
|
|
|
Ui::StatsDialog ui;
|
|
|
|
QTimer * myTimer;
|
|
};
|
|
|
|
#endif // QTR_STATS_DIALOG_H
|