source:
dev/trunk/ab5.0/abdev/abdev/Ruler.h@
657
Last change on this file since 657 was 657, checked in by , 17 years ago | |
---|---|
File size: 353 bytes |
Line | |
---|---|
1 | |
2 | #define HEIGHT_RULER 10 |
3 | |
4 | LRESULT CALLBACK RulerProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam); |
5 | |
6 | struct MDIINFO; |
7 | |
8 | class CRuler |
9 | { |
10 | MDIINFO *pMdiInfo; |
11 | HDC memdc; |
12 | HBITMAP hMemBmp; |
13 | public: |
14 | HWND hRulerWnd; |
15 | CRuler(HWND hParent,MDIINFO *pMdiInfo); |
16 | ~CRuler(); |
17 | |
18 | void resize(int x,int y,int cx,int cy); |
19 | void draw(HDC hdc); |
20 | }; |
Note:
See TracBrowser
for help on using the repository browser.