-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZoomInfo_Multi.h
More file actions
31 lines (25 loc) · 890 Bytes
/
ZoomInfo_Multi.h
File metadata and controls
31 lines (25 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// ZoomInfo_Multi.h: interface for the CZoomInfo_Multi class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ZOOMINFO_MULTI_H__930C7D1C_6619_45ED_A70F_BB1C8B1D8AF5__INCLUDED_)
#define AFX_ZOOMINFO_MULTI_H__930C7D1C_6619_45ED_A70F_BB1C8B1D8AF5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "ZoomInfo.h"
class CZoomInfo_Multi : public CZoomInfo
{
public:
CRect GetImageRect(int nNum);
CPoint ToSubImageCoord(CPoint ptPoint);
int GetImageNum(CPoint ptPoint);
CZoomInfo_Multi(CSize szSize, CRect rcRect, int nImageNum, bool bRightRect = true);
CRect GetDestRect(int nNum);
CRect GetSourceRect(int nNum);
int GetTotalImageNum();
CZoomInfo_Multi();
virtual ~CZoomInfo_Multi();
private:
int m_nTotalImageNum;
};
#endif // !defined(AFX_ZOOMINFO_MULTI_H__930C7D1C_6619_45ED_A70F_BB1C8B1D8AF5__INCLUDED_)