source:
dev/trunk/abdev/ProjectEditor/Ruler.h@
157
Last change on this file since 157 was 3, checked in by , 18 years ago | |
---|---|
File size: 320 bytes |
Line | |
---|---|
1 | |
2 | #define HEIGHT_RULER 10 |
3 | |
4 | LRESULT CALLBACK RulerProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam); |
5 | |
6 | class CRuler{ |
7 | int m_WndNum; |
8 | HDC memdc; |
9 | HBITMAP hMemBmp; |
10 | public: |
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.