transmission/qt/FreeSpaceLabel.h

44 lines
635 B
C
Raw Normal View History

/*
* 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
2015-06-12 22:12:12 +00:00
#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);
2015-06-12 22:12:12 +00:00
private slots:
void onTimer();
private:
Session* mySession;
QString myPath;
QTimer myTimer;
};