Last change
on this file since 829 was 829, checked in by イグトランス (egtra), 13 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
|
Rev | Line | |
---|
[829] | 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.