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.
nmWTAI-Platform/Include/iGui/iGuiGridPty/iGridRowItemDouble.h

22 lines
409 B
C++

#pragma once
#include "iGridRowItemUnt.h"
// double
class X_GUI_GRIDPTY_EXPORT iGridRowItemDouble : \
public iGridRowItemUnt
{
Q_OBJECT
public:
explicit iGridRowItemDouble(iGridRowItem* pParent = nullptr);
~iGridRowItemDouble();
protected:
// 绘图
virtual void paint(QPainter* pPainter);
virtual QString getShowValue(); //非激活时显示在右侧的文本
};