⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialdlg._h

📁 串口调试助手的源代码
💻 _H
字号:
// DialDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CDialDlg dialog

class CDialDlg : public CDialog
{
// Construction
public:
	CDialDlg(CTapiConnection*  pConn, CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CDialDlg)
	enum { IDD = IDD_DIALDLG };
	CEdit	m_callingCard;
	CButton	m_dialButton;
	CButton	m_dialingProperties;
	CButton	m_configureLine;
	CComboBox	m_locationBox;
	CButton	m_useDialingRules;
	CComboBox	m_countryCode;
	CStatic	m_lineIcon;
	CEdit	m_areaCode;
	CEdit	m_phoneNumber;
	CComboBox	m_tapiLineBox;
	CString	m_strCanonicalNumber;
	CString	m_strDialableNumber;
	CString	m_strDisplayableNumber;
	//}}AFX_DATA


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

public:
	CTapiConnection*	m_pConn;
	LPVOID	m_lpDeviceConfig;
	DWORD	m_dwDeviceID;

public:
	DWORD	GetDeviceID(void);
	void	FillTAPILine(void);
	void	FillLocationInfo(CString*  lpszCurrentLocation,
		LPDWORD lpdwCountryID, CString*  lpszAreaCode);
	void	UseDialingRules(void);
	void	DisplayPhoneNumber(void);
	void	FillCountryCodeList(DWORD  dwDefaultCountryID);
	BOOL	VerifyAndWarnUsableLine(void);
	void	PreConfigureDevice(DWORD  dwDeviceID);
	long	VerifyUsableLine(DWORD  dwDeviceID);

	LPLINETRANSLATEOUTPUT	I_lineTranslateAddress(
		LPLINETRANSLATEOUTPUT lpLineTranslateOutput,
		DWORD dwDeviceID, DWORD dwAPIVersion,
		LPCSTR lpszDialAddress);

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CDialDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSeleTapiline();
	afx_msg void OnConfigureline();
	afx_msg void OnSeleCountrycode();
	afx_msg void OnChangeAreacode();
	afx_msg void OnChangePhonenumber();
	afx_msg void OnUsedialingrules();
	afx_msg void OnCloseupLocation();
	afx_msg void OnDialingproperties();
	afx_msg void OnDial();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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