?? drawer.h
字號:
// Drawer.h: interface for the Drawer class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_)
#define AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Drawer
{
public:
Drawer(HDC hDC);
~Drawer();
void Enlarge(RECT rt);
void Reset();
void DrawJulia(HDC hDC);
void Resize(HDC hDC,RECT Rect);
public:
BOOL SaveBMP();
void DrawTnCurve(HDC hDC);
RECT m_Rect;
int m_times;
double m_OutR;
float nEnlarge;
float Large;
private:
HBITMAP m_hBitmap;
HDC m_hDC;
BOOL bReDraw;
ParaWin ParaWindow;
};
#endif // !defined(AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -