drawgraphfx.h

来自「Calculator program written by DLLs with 」· C头文件 代码 · 共 28 行

H
28
字号
// DrawGraphFx.h: interface for the DrawGraphFx class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DRAWGRAPHFX_H__BC7C1FCA_9320_40DB_846B_0B64304CEBB3__INCLUDED_)
#define AFX_DRAWGRAPHFX_H__BC7C1FCA_9320_40DB_846B_0B64304CEBB3__INCLUDED_

#include "Lib/MyPoint.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class DrawGraphFx  
{
public:
	_declspec(dllexport) void drawScreen(CDC *dc,int maxxw,int minxw,int maxyw,int minyw);
	_declspec(dllexport) void drawAxis(CDC *dc,CMyPoint &C,int rx,int ry,int maxxw,int minxw,int maxyw,int minyw);
	_declspec(dllexport) CString ReplaceX(CString fx,double x);
	_declspec(dllexport) BOOL GetValue(CString fx,double x1,double &y1);
	_declspec(dllexport) void Get_CAxis_Rx_Ry(CMyPoint &C,int &rx,int &ry,CString fx, int a, int b,int maxxw,int minxw,int maxyw,int minyw);
	_declspec(dllexport) CString onDraw(CDC *dc,CString fx,double a,double b,int maxxw,int minxw,int maxyw,int minyw);
	_declspec(dllexport) DrawGraphFx();
	_declspec(dllexport) virtual ~DrawGraphFx();

};

#endif // !defined(AFX_DRAWGRAPHFX_H__BC7C1FCA_9320_40DB_846B_0B64304CEBB3__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?