source: dev/trunk/ab5.0/abdev/abdev/Ruler.h@ 829

Last change on this file since 829 was 829, checked in by イグトランス (egtra), 12 years ago

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 333 bytes
RevLine 
[829]1
2#define HEIGHT_RULER 10
3
4LRESULT CALLBACK RulerProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
5
6struct MDIINFO;
7
8class CRuler
9{
10 MDIINFO *pMdiInfo;
11 HDC memdc;
12 HBITMAP hMemBmp;
13public:
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.