bitmapview.h

来自「这是我替别人做的一个DSP图象处理的程序」· C头文件 代码 · 共 80 行

H
80
字号
// BitmapView.h : interface of the CBitmapView class
//
/////////////////////////////////////////////////////////////////////////////



typedef struct rgbp {
	int r;
	int g;
	int b;
}rgbp ;


#if !defined(AFX_BITMAPVIEW_H__F6EF3651_DDD2_44BF_AF87_F13D16F1C86A__INCLUDED_)
#define AFX_BITMAPVIEW_H__F6EF3651_DDD2_44BF_AF87_F13D16F1C86A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CBitmapView : public CView
{
protected: // create from serialization only
	CBitmapView();
	DECLARE_DYNCREATE(CBitmapView)

// Attributes
public:
	CBitmapDoc* GetDocument();

// Operations
public:
    int bmHeight;
	int bmWidth;
	rgbp rgbp[2500][2500];
    int data[2500][2500];
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBitmapView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CBitmapView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CBitmapView)
	afx_msg void OnMenuitem32771();
	afx_msg void OnMenuitem32772();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in BitmapView.cpp
inline CBitmapDoc* CBitmapView::GetDocument()
   { return (CBitmapDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_BITMAPVIEW_H__F6EF3651_DDD2_44BF_AF87_F13D16F1C86A__INCLUDED_)

⌨️ 快捷键说明

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