2013-02-23 18:36:49 +01:00
|
|
|
/******************************************************************************\
|
2020-01-01 15:41:43 +01:00
|
|
|
* Copyright (c) 2004-2020
|
2013-02-23 18:36:49 +01:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Volker Fischer
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* 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.,
|
2020-06-08 22:58:11 +02:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2013-02-23 18:36:49 +01:00
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2019-07-09 08:52:38 +02:00
|
|
|
#pragma once
|
2013-02-23 18:36:49 +01:00
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QTabWidget>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QImage>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QTimer>
|
|
|
|
#include "client.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
|
|
// defines the update time of the error rate graph
|
|
|
|
#define ERR_RATE_GRAPH_UPDATE_TIME_MS 200 // ms
|
|
|
|
|
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
|
|
class CAnalyzerConsole : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CAnalyzerConsole ( CClient* pNCliP,
|
2019-05-17 22:55:46 +02:00
|
|
|
QWidget* parent = nullptr,
|
|
|
|
Qt::WindowFlags f = nullptr );
|
2013-02-23 18:36:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
protected:
|
2013-03-02 20:52:13 +01:00
|
|
|
virtual void showEvent ( QShowEvent* );
|
|
|
|
virtual void hideEvent ( QHideEvent* );
|
|
|
|
|
2013-02-23 18:36:49 +01:00
|
|
|
void DrawFrame();
|
|
|
|
void DrawErrorRateTrace();
|
|
|
|
int CalcYPosInGraph ( const double dAxisMin,
|
|
|
|
const double dAxisMax,
|
|
|
|
const double dValue ) const;
|
|
|
|
|
|
|
|
CClient* pClient;
|
|
|
|
|
|
|
|
QTabWidget* pMainTabWidget;
|
|
|
|
QWidget* pTabWidgetBufErrRate;
|
|
|
|
|
|
|
|
QLabel* pGraphErrRate;
|
|
|
|
QImage GraphImage;
|
|
|
|
|
|
|
|
QRect GraphErrRateCanvasRect;
|
|
|
|
QRect GraphGridFrame;
|
|
|
|
|
|
|
|
int iGridFrameOffset;
|
|
|
|
int iLineWidth;
|
|
|
|
int iMarkerSize;
|
|
|
|
int iXAxisTextHeight;
|
|
|
|
|
|
|
|
QColor GraphBackgroundColor;
|
|
|
|
QColor GraphFrameColor;
|
|
|
|
QColor GraphGridColor;
|
|
|
|
QColor LineColor;
|
|
|
|
QColor LineLimitColor;
|
2015-03-14 17:54:36 +01:00
|
|
|
QColor LineMaxUpLimitColor;
|
2013-02-23 18:36:49 +01:00
|
|
|
|
|
|
|
QTimer TimerErrRateUpdate;
|
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnTimerErrRateUpdate();
|
|
|
|
};
|