?? dialdlg._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 + -