operatorlistdlg.h

来自「Retrieving list of known operators using」· C头文件 代码 · 共 46 行

H
46
字号
// OperatorListDlg.h : header file
//

#pragma once
#include "afxwin.h"

#define X_OFFSET		10
#define Y_OFFSET		10

// COperatorListDlg dialog
class COperatorListDlg : public CDialog
{
// Construction
public:
	COperatorListDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	enum { IDD = IDD_OPERATORLIST_DIALOG };


	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support

public:
	HRESULT GetOperatorListResult() const		
	{ return m_hResultOpList; }

	void AddToList(int nItem,RILOPERATORNAMES* pOpName);

// Implementation
protected:
	HICON m_hIcon;

private:
	CListCtrl	m_wndOpList;
	HRIL		m_hRIL;
	HRESULT		m_hResultOpList;

	// Generated message map functions
	virtual BOOL OnInitDialog();
	afx_msg void OnSize(UINT /*nType*/, int /*cx*/, int /*cy*/);
	afx_msg void OnDestroy();

	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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