1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-03 21:45:49 +00:00
transmission/qt/FreeSpaceLabel.h
Charles Kerr 7f147c65fb
refactor: fix more sonarcloud warnings (#1508)
* refactor: const correctness

* refactor: use getpwuid_r instead of getpwuid

* chore: simplify dict walking loop logic

* refactor: remove dead store assignment in announcer

* refactor: use std::make_shared
2020-11-05 16:46:21 -06:00

42 lines
665 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>
#include "Macros.h"
class Session;
extern "C"
{
struct tr_variant;
}
class FreeSpaceLabel : public QLabel
{
Q_OBJECT
TR_DISABLE_COPY_MOVE(FreeSpaceLabel)
public:
explicit FreeSpaceLabel(QWidget* parent = nullptr);
void setSession(Session& session);
void setPath(QString const& folder);
private slots:
void onTimer();
private:
Session* session_ = {};
QString path_;
QTimer timer_;
};