comprat.cpp
来自「图象压缩算法的实现,十分具有参考价值的,赫赫有名」· C++ 代码 · 共 44 行
CPP
44 行
// CompRat.cpp : implementation file
//
#include "stdafx.h"
#include "JPEG.h"
#include "CompRat.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCompRat dialog
CCompRat::CCompRat(CWnd* pParent /*=NULL*/)
: CDialog(CCompRat::IDD, pParent)
{
//{{AFX_DATA_INIT(CCompRat)
m_ratio = 0;
//}}AFX_DATA_INIT
}
void CCompRat::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCompRat)
DDX_Slider(pDX, IDC_SLIDER1, m_ratio);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCompRat, CDialog)
//{{AFX_MSG_MAP(CCompRat)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCompRat message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?