mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
25 lines
501 B
C++
25 lines
501 B
C++
#include "ui_BandwidthStatsWidget.h"
|
|
#include "BWGraph.h"
|
|
|
|
class BandwidthStatsWidget: public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BandwidthStatsWidget(QWidget *parent) ;
|
|
|
|
protected slots:
|
|
void updateFriendSelection(int n);
|
|
void updateServiceSelection(int n);
|
|
void updateComboBoxes() ;
|
|
void updateUpDownSelection(int n);
|
|
void updateUnitSelection(int n);
|
|
void toggleLogScale(bool b);
|
|
void updateLegendType(int n);
|
|
|
|
private:
|
|
Ui::BwStatsWidget ui;
|
|
|
|
QTimer *mTimer ;
|
|
};
|