AuthDialog.cpp
上传用户:sbftbdw
上传日期:2007-01-03
资源大小:379k
文件大小:3k
源码类别:

远程控制编程

开发平台:

Visual C++

  1. //  Copyright (C) 1997, 1998 Olivetti & Oracle Research Laboratory
  2. //
  3. //  This file is part of the VNC system.
  4. //
  5. //  The VNC system is free software; you can redistribute it and/or modify
  6. //  it under the terms of the GNU General Public License as published by
  7. //  the Free Software Foundation; either version 2 of the License, or
  8. //  (at your option) any later version.
  9. //
  10. //  This program is distributed in the hope that it will be useful,
  11. //  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. //  GNU General Public License for more details.
  14. //
  15. //  You should have received a copy of the GNU General Public License
  16. //  along with this program; if not, write to the Free Software
  17. //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
  18. //  USA.
  19. //
  20. // If the source code for the VNC system is not available from the place 
  21. // whence you received this file, check http://www.orl.co.uk/vnc or contact
  22. // the authors on vnc@orl.co.uk for information on obtaining it.
  23. // AuthDialog.cpp: implementation of the AuthDialog class.
  24. #include "stdhdrs.h"
  25. #include "vncviewer.h"
  26. #include "AuthDialog.h"
  27. #include "Exception.h"
  28. //////////////////////////////////////////////////////////////////////
  29. // Construction/Destruction
  30. //////////////////////////////////////////////////////////////////////
  31. AuthDialog::AuthDialog()
  32. {
  33. m_passwd[0]=__T('');
  34. }
  35. AuthDialog::~AuthDialog()
  36. {
  37. }
  38. int AuthDialog::DoDialog()
  39. {
  40. return DialogBoxParam(pApp->m_instance, MAKEINTRESOURCE(IDD_AUTH_DIALOG), 
  41. NULL, (DLGPROC) DlgProc, (LONG) this);
  42. }
  43. BOOL CALLBACK AuthDialog::DlgProc(  HWND hwnd,  UINT uMsg,  
  44.    WPARAM wParam, LPARAM lParam ) {
  45. // This is a static method, so we don't know which instantiation we're 
  46. // dealing with. But we can get a pseudo-this from the parameter to 
  47. // WM_INITDIALOG, which we therafter store with the window and retrieve
  48. // as follows:
  49. AuthDialog *_this = (AuthDialog *) GetWindowLong(hwnd, GWL_USERDATA);
  50. switch (uMsg) {
  51. case WM_INITDIALOG:
  52. {
  53. SetWindowLong(hwnd, GWL_USERDATA, lParam);
  54. _this = (AuthDialog *) lParam;
  55. CentreWindow(hwnd);
  56. return TRUE;
  57. }
  58. case WM_COMMAND:
  59. switch (LOWORD(wParam)) {
  60. case IDOK:
  61. {
  62. UINT res= GetDlgItemText( hwnd,  IDC_PASSWD_EDIT,
  63. _this->m_passwd, 256);
  64. EndDialog(hwnd, TRUE);
  65. return TRUE;
  66. }
  67. case IDCANCEL:
  68. EndDialog(hwnd, FALSE);
  69. return TRUE;
  70. }
  71. break;
  72. case WM_DESTROY:
  73. EndDialog(hwnd, FALSE);
  74. return TRUE;
  75. }
  76. return 0;
  77. }