jpegshowview.h
来自「JPEG压缩标准。这是我在数字图像编码的书书中找到的」· C头文件 代码 · 共 66 行
H
66 行
// jpegshowView.h : interface of the CJpegshowView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_JPEGSHOWVIEW_H__F85799E0_F920_4FB4_BFF9_BE219DD1D8D6__INCLUDED_)
#define AFX_JPEGSHOWVIEW_H__F85799E0_F920_4FB4_BFF9_BE219DD1D8D6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CJpegshowView : public CView
{
protected: // create from serialization only
CJpegshowView();
DECLARE_DYNCREATE(CJpegshowView)
// Attributes
public:
CJpegshowDoc* GetDocument();
// Operations
public:
CDib m_dib;
//CString postfix; //设立关于后缀的标志
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CJpegshowView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CJpegshowView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CJpegshowView)
afx_msg void OnFileOpen();
afx_msg void OnFileSaveAs();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in jpegshowView.cpp
inline CJpegshowDoc* CJpegshowView::GetDocument()
{ return (CJpegshowDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_JPEGSHOWVIEW_H__F85799E0_F920_4FB4_BFF9_BE219DD1D8D6__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?