mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
91 lines
2.1 KiB
C++
91 lines
2.1 KiB
C++
/*
|
|
KSysGuard, the KDE System Guard
|
|
|
|
Copyright (c) 1999 - 2001 Chris Schlaeger <cs@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License version 2 or at your option version 3 as published by
|
|
the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#ifndef KSG_BARGRAPH_H
|
|
#define KSG_BARGRAPH_H
|
|
|
|
#include <QWidget>
|
|
#include <QPaintEvent>
|
|
|
|
class BarGraph : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class DancingBars;
|
|
|
|
public:
|
|
explicit BarGraph( QWidget *parent );
|
|
~BarGraph();
|
|
|
|
bool addBar( const QString &footer );
|
|
bool removeBar( uint idx );
|
|
|
|
void updateSamples( const QVector<double> &newSamples );
|
|
|
|
double getMin() const
|
|
{
|
|
return minValue;
|
|
}
|
|
|
|
double getMax() const
|
|
{
|
|
return maxValue;
|
|
}
|
|
|
|
void getLimits( double &l, bool &la, double &u, bool &ua ) const
|
|
{
|
|
l = lowerLimit;
|
|
la = lowerLimitActive;
|
|
u = upperLimit;
|
|
ua = upperLimitActive;
|
|
}
|
|
|
|
void setLimits( double l, bool la, double u, bool ua )
|
|
{
|
|
lowerLimit = l;
|
|
lowerLimitActive = la;
|
|
upperLimit = u;
|
|
upperLimitActive = ua;
|
|
}
|
|
|
|
void changeRange( double min, double max );
|
|
|
|
protected:
|
|
virtual void paintEvent( QPaintEvent* );
|
|
|
|
private:
|
|
double minValue;
|
|
double maxValue;
|
|
double lowerLimit;
|
|
double lowerLimitActive;
|
|
double upperLimit;
|
|
bool upperLimitActive;
|
|
bool autoRange;
|
|
QVector<double> samples;
|
|
QStringList footers;
|
|
uint bars;
|
|
QColor normalColor;
|
|
QColor alarmColor;
|
|
QColor mBackgroundColor;
|
|
int fontSize;
|
|
};
|
|
|
|
#endif
|