mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
1. add the option the code to be used under GPLv2 or GPLv3; previously only GPLv2 was allowed 2. add the "proxy option" as described in GPLv3 so we can add future licenses without having to bulk-edit everything again :) 3. remove the awkward "exception for MIT code in Mac client" clause; it was unnecessary and confusing.
52 lines
911 B
C++
52 lines
911 B
C++
/*
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU Public License v2 or v3 licenses,
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef STATS_DIALOG_H
|
|
#define STATS_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class Session;
|
|
class QLabel;
|
|
class QTimer;
|
|
|
|
class StatsDialog: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
signals:
|
|
void accepted ();
|
|
|
|
public slots:
|
|
void updateStats ();
|
|
|
|
private slots:
|
|
void onTimer ();
|
|
|
|
public:
|
|
StatsDialog (Session&, QWidget * parent = 0);
|
|
~StatsDialog ();
|
|
virtual void setVisible (bool visible);
|
|
|
|
private:
|
|
Session & mySession;
|
|
QTimer * myTimer;
|
|
QLabel * myCurrentUp;
|
|
QLabel * myCurrentDown;
|
|
QLabel * myCurrentRatio;
|
|
QLabel * myCurrentDuration;
|
|
QLabel * myStartCount;
|
|
QLabel * myTotalUp;
|
|
QLabel * myTotalDown;
|
|
QLabel * myTotalRatio;
|
|
QLabel * myTotalDuration;
|
|
};
|
|
|
|
#endif
|