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

📄 dialdlg.h

📁 三汇CTI示例程序源码
💻 H
字号:
// DialDlg.h : header file
//

#if !defined(AFX_DIALDLG_H__8C29F646_9DC7_11D4_8EBC_00108804A3F0__INCLUDED_)
#define AFX_DIALDLG_H__8C29F646_9DC7_11D4_8EBC_00108804A3F0__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

enum APP_USER_STATE {
	USER_IDLE,
	USER_GET_PHONE_NUM,
	USER_WAIT_DIAL_TONE,
	USER_WAIT_REMOTE_PICKUP,
	USER_TALKING,
	USER_WAIT_HANGUP
};

typedef struct{
	// trunck channel vars
	bool  EnCalled;
	int   lineState;
	int InUse;
	char DtmfBuf[251];
	// user channel  vars
	APP_USER_STATE	nStep;
	int				nToTrkCh;
	char			pPhoNumBuf[31];
	int				nTimeOut;
}CH_INFO;

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

class CDialDlg : public CDialog
{
// Construction
public:
	int myGetAnIdleChannel();
	BOOL InitCtiBoard();
	void DrawTrunkChState();
	void DrawUserChState();
	void DoUserWork();
	void InitUserChList();
	void InitTrunkChList();
	
	WORD	nTotalCh;

	CH_INFO ChInfo[1000];
	
	CDialDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CDialDlg)
	enum { IDD = IDD_DIAL_DIALOG };
	CListCtrl	m_UserChList;
	CListCtrl	m_TrkChList;
	int		m_PhoNumLen;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CDialDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnChangePhoneNumLen();
	afx_msg void OnDestroy();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_DIALDLG_H__8C29F646_9DC7_11D4_8EBC_00108804A3F0__INCLUDED_)

⌨️ 快捷键说明

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