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.
nmWATI/Include/iPlot/iPlotBase/ZxLayerItem.h

28 lines
371 B
C

#pragma once
#include "ZxRenderItem.h"
/// 2D通用图层
class I_PLOTBASE_EXPORT ZxLayerItem
: public ZxRenderItem
{
Q_OBJECT
ZX_DECLARE_DYNAMIC
public:
ZxLayerItem();
void paintBack(QPainter* painter, const ZxPaintParam& param);
virtual QIcon getIcon() const;
virtual bool isActive() const;
virtual void setActive(bool);
};