DialupDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // DialupDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Dialup.h"
  5. #include "DialupDlg.h"
  6. #include "ras.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CDialupDlg dialog
  51. CDialupDlg::CDialupDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CDialupDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CDialupDlg)
  55. // NOTE: the ClassWizard will add member initialization here
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. }
  60. void CDialupDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CDialupDlg)
  64. DDX_Control(pDX, IDC_DIALCOMBO, m_DialCombo);
  65. DDX_Control(pDX, IDC_USERID, m_UserId);
  66. DDX_Control(pDX, IDC_PASSWORD, m_PassWordEdit);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CDialupDlg, CDialog)
  70. //{{AFX_MSG_MAP(CDialupDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_CBN_SELCHANGE(IDC_DIALCOMBO, OnSelchangeDialcombo)
  75. ON_BN_CLICKED(IDC_CONNECT, OnConnect)
  76. //}}AFX_MSG_MAP
  77. END_MESSAGE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CDialupDlg message handlers
  80. BOOL CDialupDlg::OnInitDialog()
  81. {
  82. CDialog::OnInitDialog();
  83. // Add "About..." menu item to system menu.
  84. // IDM_ABOUTBOX must be in the system command range.
  85. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  86. ASSERT(IDM_ABOUTBOX < 0xF000);
  87. CMenu* pSysMenu = GetSystemMenu(FALSE);
  88. if (pSysMenu != NULL)
  89. {
  90. CString strAboutMenu;
  91. strAboutMenu.LoadString(IDS_ABOUTBOX);
  92. if (!strAboutMenu.IsEmpty())
  93. {
  94. pSysMenu->AppendMenu(MF_SEPARATOR);
  95. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  96. }
  97. }
  98. // Set the icon for this dialog.  The framework does this automatically
  99. //  when the application's main window is not a dialog
  100. SetIcon(m_hIcon, TRUE); // Set big icon
  101. SetIcon(m_hIcon, FALSE); // Set small icon
  102. // TODO: Add extra initialization here
  103. SetupDialupCombo();
  104. return TRUE;  // return TRUE  unless you set the focus to a control
  105. }
  106. void CDialupDlg::OnSysCommand(UINT nID, LPARAM lParam)
  107. {
  108. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  109. {
  110. CAboutDlg dlgAbout;
  111. dlgAbout.DoModal();
  112. }
  113. else
  114. {
  115. CDialog::OnSysCommand(nID, lParam);
  116. }
  117. }
  118. // If you add a minimize button to your dialog, you will need the code below
  119. //  to draw the icon.  For MFC applications using the document/view model,
  120. //  this is automatically done for you by the framework.
  121. void CDialupDlg::OnPaint() 
  122. {
  123. if (IsIconic())
  124. {
  125. CPaintDC dc(this); // device context for painting
  126. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  127. // Center icon in client rectangle
  128. int cxIcon = GetSystemMetrics(SM_CXICON);
  129. int cyIcon = GetSystemMetrics(SM_CYICON);
  130. CRect rect;
  131. GetClientRect(&rect);
  132. int x = (rect.Width() - cxIcon + 1) / 2;
  133. int y = (rect.Height() - cyIcon + 1) / 2;
  134. // Draw the icon
  135. dc.DrawIcon(x, y, m_hIcon);
  136. }
  137. else
  138. {
  139. CDialog::OnPaint();
  140. }
  141. }
  142. // The system calls this to obtain the cursor to display while the user drags
  143. //  the minimized window.
  144. HCURSOR CDialupDlg::OnQueryDragIcon()
  145. {
  146. return (HCURSOR) m_hIcon;
  147. }
  148. void CDialupDlg::OnSelchangeDialcombo() 
  149. {
  150. RASDIALPARAMS params;
  151. memset(&params, '',sizeof(params));
  152. params.dwSize=sizeof(RASDIALPARAMS);
  153. int sel=m_DialCombo.GetCurSel();
  154. if(sel>=0)
  155. {
  156. m_DialCombo.GetLBText(sel, params.szEntryName); 
  157. TRACE("%sn",params.szEntryName);
  158. BOOL p;
  159. //根据连接名获得用户名和密码
  160. RasGetEntryDialParams(NULL, &params, &p);
  161. m_UserId.SetWindowText(params.szUserName);
  162. m_PassWordEdit.SetWindowText(params.szPassword);
  163. }
  164. }
  165. void CDialupDlg::SetupDialupCombo()
  166. {
  167. m_DialCombo.ResetContent();
  168. //m_DialCombo是对话框中Combox控件的命名
  169. DWORD n;
  170. DWORD dwSize=0;
  171. //枚举出本地电脑中的所有拨号连接。
  172. DWORD ret=RasEnumEntries(NULL, NULL, NULL, &dwSize,&n);
  173. n=dwSize/sizeof(RASENTRYNAME);
  174. RASENTRYNAME *entry=new RASENTRYNAME[n];
  175. if (entry) {
  176. entry[0].dwSize=sizeof(RASENTRYNAME);
  177. DWORD ret=RasEnumEntries(NULL, NULL, entry, &dwSize,&n);
  178. for (DWORD i=0;i<n;i++) {
  179. m_DialCombo.AddString(entry[i].szEntryName);
  180. }
  181. delete[] entry;
  182. }
  183. }
  184. void CDialupDlg::OnConnect() 
  185. {
  186. CWaitCursor wait;
  187. RASDIALPARAMS params;
  188. memset(&params, '', sizeof(params));
  189. params.dwSize=sizeof(params);
  190. m_DialCombo.GetWindowText(params.szEntryName,sizeof(params.szEntryName)-1);
  191. strcpy(params.szPhoneNumber,"");
  192. m_UserId.GetWindowText(params.szUserName,sizeof(params.szUserName)-1);
  193. m_PassWordEdit.GetWindowText(params.szPassword,sizeof(params.szPassword)-1);
  194. //m_UserId 和m_PasswordEdit是对话框中两个Edit控件的命名
  195. HRASCONN handle;
  196. //指定的拨号连接。
  197. if (RasDial(NULL, NULL,&params,NULL, NULL, &handle)==0) 
  198. {
  199. MessageBox("已联接,如果按“确定”就会切断电话");
  200. }
  201. else
  202. {
  203. MessageBox("正在拨打的计算机没有应答,稍后请再试");
  204. }
  205. wait.Restore();
  206. //挂断
  207. RasHangUp(handle);
  208. }