fractaldoc.h
来自「这是分行用于图像压缩的经典的程序,在正常的情况下可达到7:1左右的压缩比.」· C头文件 代码 · 共 71 行
H
71 行
// fractalDoc.h : interface of the CFractalDoc class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_FRACTALDOC_H__0996F4AE_D950_42A0_A889_EB084FB17470__INCLUDED_)
#define AFX_FRACTALDOC_H__0996F4AE_D950_42A0_A889_EB084FB17470__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CFractalDoc : public CDocument
{
protected: // create from serialization only
CFractalDoc();
DECLARE_DYNCREATE(CFractalDoc)
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFractalDoc)
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CFractalDoc();
RGBQUAD *quad;
CString bitmapName;
CString bmPath;
CFile file;
BITMAPINFOHEADER bi;
BITMAPFILEHEADER bf;
BYTE *lpBuf;
BITMAPINFO *pbi;
int flag; //标志是否打开BMP文件
int numQuad;
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CFractalDoc)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_FRACTALDOC_H__0996F4AE_D950_42A0_A889_EB084FB17470__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?