source: dev/trunk/abdev/ProjectEditor/Ruler.h@ 151

Last change on this file since 151 was 3, checked in by dai_9181, 17 years ago
File size: 320 bytes
Line 
1
2#define HEIGHT_RULER 10
3
4LRESULT CALLBACK RulerProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
5
6class CRuler{
7 int m_WndNum;
8 HDC memdc;
9 HBITMAP hMemBmp;
10public:
11 HWND hRulerWnd;
12 CRuler(HWND hParent,int WndNum);
13 ~CRuler();
14
15 void resize(int x,int y,int cx,int cy);
16 void draw(HDC hdc);
17};
Note: See TracBrowser for help on using the repository browser.