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.
20 lines
327 B
C++
20 lines
327 B
C++
#pragma once
|
|
|
|
#include "iGridRowItemUnt.h"
|
|
|
|
// double
|
|
class X_GUI_GRIDPTY_EXPORT iGridRowItemFloat : \
|
|
public iGridRowItemUnt
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit iGridRowItemFloat(iGridRowItem* pParent = NULL);
|
|
~iGridRowItemFloat();
|
|
|
|
protected:
|
|
|
|
// 绘图
|
|
virtual void paint(QPainter* pPainter);
|
|
};
|