1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00
transmission/qt/FreeSpaceLabel.h
2016-09-02 23:10:15 +03:00

41 lines
640 B
C++

/*
* This file Copyright (C) 2013-2016 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 <QLabel>
#include <QString>
#include <QTimer>
class Session;
extern "C"
{
struct tr_variant;
}
class FreeSpaceLabel: public QLabel
{
Q_OBJECT
public:
FreeSpaceLabel (QWidget * parent = nullptr);
virtual ~FreeSpaceLabel () {}
void setSession (Session& session);
void setPath (const QString& folder);
private slots:
void onTimer ();
private:
Session * mySession;
QString myPath;
QTimer myTimer;
};