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.
21 lines
317 B
C++
21 lines
317 B
C++
#pragma once
|
|
#include "item.h"
|
|
|
|
namespace NItem
|
|
{
|
|
class CItemBkGrid :
|
|
public CItem
|
|
{
|
|
public:
|
|
CItemBkGrid(CSigmaDoc * ppDoc);
|
|
virtual ~CItemBkGrid(void);
|
|
|
|
void DrawGrid(double stepX, double stepY, BOOL nSel);
|
|
double GetGridRY(long y);
|
|
double GetGridRX(long x);
|
|
void GetGridPoint(CPoint &point);
|
|
|
|
private:
|
|
};
|
|
}
|