information.h

来自「一篇有关数字水印的程序」· C头文件 代码 · 共 67 行

H
67
字号
//{{AFX_INCLUDES()
#include "labelcontrol.h"
//}}AFX_INCLUDES
#if !defined(AFX_INFORMATION_H__31827E44_7F12_40B8_9A22_03406CB49FA7__INCLUDED_)
#define AFX_INFORMATION_H__31827E44_7F12_40B8_9A22_03406CB49FA7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Information.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CInformation dialog

class CInformation : public CDialog
{
// Construction

	int i_Mc,i_Nc,i_Mw,i_Nw;
	int water_block,i_max_message; 
	int bfont;
public:
	void Show();
	void Setdata(int imc, int inc,int imaxmage,int imw, int inw, int waterblock);
	CInformation(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CInformation)
	enum { IDD = IDD_INFORMATION };
	CLabelControl	m_imaxmage;
	CLabelControl	m_imc;
	CLabelControl	m_imw;
	CLabelControl	m_inc;
	CLabelControl	m_inw;
	CLabelControl	m_maximage;
	CLabelControl	m_waterblock;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CInformation)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CInformation)
	afx_msg void OnClickOk();
	afx_msg void OnClickCancel();
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnDestroy();
	DECLARE_EVENTSINK_MAP()
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_INFORMATION_H__31827E44_7F12_40B8_9A22_03406CB49FA7__INCLUDED_)

⌨️ 快捷键说明

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