fix for Linux
This commit is contained in:
parent
37d826630d
commit
b52fd5ed9e
2 changed files with 4 additions and 4 deletions
|
@ -47,7 +47,7 @@ CHistoryGraph::CHistoryGraph() :
|
||||||
PlotTextColor ( Qt::black ), // black text
|
PlotTextColor ( Qt::black ), // black text
|
||||||
PlotMarkerNewColor ( Qt::blue ), // blue marker for new connection
|
PlotMarkerNewColor ( Qt::blue ), // blue marker for new connection
|
||||||
PlotMarkerStopColor ( Qt::red ), // red marker server stop
|
PlotMarkerStopColor ( Qt::red ), // red marker server stop
|
||||||
PlotPixmap ( 1, 1 )
|
PlotPixmap ( 1, 1, QImage::Format_RGB32 )
|
||||||
{
|
{
|
||||||
// generate plot grid frame rectangle
|
// generate plot grid frame rectangle
|
||||||
PlotGridFrame.setCoords ( PlotCanvasRect.x() + iGridFrameOffset,
|
PlotGridFrame.setCoords ( PlotCanvasRect.x() + iGridFrameOffset,
|
||||||
|
@ -91,7 +91,7 @@ void CHistoryGraph::DrawFrame ( const int iNewNumTicksX )
|
||||||
iNumTicksX = iNewNumTicksX;
|
iNumTicksX = iNewNumTicksX;
|
||||||
|
|
||||||
// clear base pixmap for new plotting
|
// clear base pixmap for new plotting
|
||||||
PlotPixmap.fill ( PlotBackgroundColor ); // fill background
|
PlotPixmap.fill ( PlotBackgroundColor.rgb() ); // fill background
|
||||||
|
|
||||||
// create painter
|
// create painter
|
||||||
QPainter PlotPainter ( &PlotPixmap );
|
QPainter PlotPainter ( &PlotPixmap );
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#if !defined ( SERVERLOGGING_HOIHOKIH83JH8_3_43445KJIUHF1912__INCLUDED_ )
|
#if !defined ( SERVERLOGGING_HOIHOKIH83JH8_3_43445KJIUHF1912__INCLUDED_ )
|
||||||
#define SERVERLOGGING_HOIHOKIH83JH8_3_43445KJIUHF1912__INCLUDED_
|
#define SERVERLOGGING_HOIHOKIH83JH8_3_43445KJIUHF1912__INCLUDED_
|
||||||
|
|
||||||
#include <qpixmap.h>
|
#include <qimage.h>
|
||||||
#include <qpainter.h>
|
#include <qpainter.h>
|
||||||
#include <qdatetime.h>
|
#include <qdatetime.h>
|
||||||
#include <qhostaddress.h>
|
#include <qhostaddress.h>
|
||||||
|
@ -77,7 +77,7 @@ protected:
|
||||||
QColor PlotMarkerNewColor;
|
QColor PlotMarkerNewColor;
|
||||||
QColor PlotMarkerStopColor;
|
QColor PlotMarkerStopColor;
|
||||||
QDate curDate;
|
QDate curDate;
|
||||||
QPixmap PlotPixmap;
|
QImage PlotPixmap;
|
||||||
QRect PlotCanvasRect;
|
QRect PlotCanvasRect;
|
||||||
QRect PlotGridFrame;
|
QRect PlotGridFrame;
|
||||||
QString sFileName;
|
QString sFileName;
|
||||||
|
|
Loading…
Reference in a new issue