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

远程控制编程

开发平台:

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. #include "stdhdrs.h"
  24. #include "vncviewer.h"
  25. #include "Exception.h"
  26. #ifdef UNDER_CE
  27. #include "omnithreadce.h"
  28. #else
  29. #include "omnithread.h"
  30. #include "VNCviewerApp32.h"
  31. #endif
  32. // All logging is done via the log object
  33. Log log;
  34. #ifdef UNDER_CE
  35. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR szCmdLine, int iCmdShow)
  36. #else
  37. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
  38. #endif
  39. {
  40. // The state of the application as a whole is contained in the one app object
  41. #ifdef _WIN32_WCE
  42. VNCviewerApp app(hInstance, szCmdLine);
  43. #else
  44. VNCviewerApp32 app(hInstance, szCmdLine);
  45. #endif
  46. // Start a new connection if specified on command line
  47. // or if not in listening mode
  48. if (app.m_options.m_connectionSpecified) {
  49. app.NewConnection(app.m_options.m_host, app.m_options.m_port);
  50. } else if (!app.m_options.m_listening) {
  51. app.NewConnection();
  52. }
  53. MSG msg;
  54. try {
  55. while ( GetMessage(&msg, NULL, 0,0) ) {
  56. DispatchMessage(&msg);
  57. } catch (WarningException &e) {
  58. e.Report();
  59. } catch (QuietException &e) {
  60. e.Report();
  61. }
  62. // Clean up winsock
  63. WSACleanup();
  64.     log.Print(3, _T("Exitingn"));
  65. return msg.wParam;
  66. }
  67. // Move the given window to the centre of the screen
  68. // and bring it to the top.
  69. void CentreWindow(HWND hwnd)
  70. {
  71. RECT winrect, workrect;
  72. // Find how large the desktop work area is
  73. SystemParametersInfo(SPI_GETWORKAREA, 0, &workrect, 0);
  74. int workwidth = workrect.right -  workrect.left;
  75. int workheight = workrect.bottom - workrect.top;
  76. // And how big the window is
  77. GetWindowRect(hwnd, &winrect);
  78. int winwidth = winrect.right - winrect.left;
  79. int winheight = winrect.bottom - winrect.top;
  80. // Make sure it's not bigger than the work area
  81. winwidth = min(winwidth, workwidth);
  82. winheight = min(winheight, workheight);
  83. // Now centre it
  84. SetWindowPos(hwnd, 
  85. HWND_TOP,
  86. workrect.left + (workwidth-winwidth) / 2,
  87. workrect.top + (workheight-winheight) / 2,
  88. winwidth, winheight, 
  89. SWP_SHOWWINDOW);
  90. SetForegroundWindow(hwnd);
  91. }
  92. // Convert "host:display" into host and port
  93. // Returns true if valid format, false if not.
  94. // Takes initial string, addresses of results and size of host buffer in wchars.
  95. // If the display info passed in is longer than the size of the host buffer, it
  96. // is assumed to be invalid, so false is returned.
  97. bool ParseDisplay(LPTSTR display, LPTSTR phost, int hostlen, int *pport) 
  98. {
  99.     int tmpport;
  100.     if (hostlen < (int) _tcslen(display))
  101.         return false;
  102.     TCHAR *colonpos = _tcschr( display, L':' );
  103.     if (colonpos == NULL) 
  104.         return false;
  105.     _tcsncpy(phost, display, colonpos-display);
  106.     phost[colonpos-display] = L'';
  107.     if (_stscanf(colonpos+1, TEXT("%d"), &tmpport) != 1) 
  108.         return false;
  109.     if (tmpport < 100)
  110.         tmpport += RFB_PORT_OFFSET;
  111.     *pport = tmpport;
  112.     return true;
  113. }