You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
487 B
C++
35 lines
487 B
C++
#pragma once
|
|
|
|
#include "ZxObjWmLine.h"
|
|
#include "mGuiPlot_global.h"
|
|
|
|
class M_GUI_PLOT_EXPORT ZxObjWmLinePlus : public ZxObjWmLine
|
|
{
|
|
Q_OBJECT
|
|
ZX_DECLARE_DYNAMIC
|
|
|
|
public:
|
|
ZxObjWmLinePlus();
|
|
ZxObjWmLinePlus(const QString& sName,
|
|
ZxSubAxisX* pAxisX,
|
|
ZxSubAxisY* pAxisY);
|
|
~ZxObjWmLinePlus();
|
|
|
|
public:
|
|
|
|
|
|
protected:
|
|
|
|
public:
|
|
|
|
virtual void paintBack(QPainter* painter,
|
|
const ZxPaintParam& param);
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
|