transmission/qt/FreeSpaceLabel.h

40 lines
594 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);
void setSession(Session& session);
void setPath(QString const& folder);
2015-06-12 22:12:12 +00:00
private slots:
void onTimer();
private:
Session* session_ = {};
QString path_;
QTimer timer_;
};