sdidde.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:10k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: sdidde.cpp,v 1.2.36.3 2004/07/09 01:43:33 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #pragma data_seg("_DATA")
  50. #include "hxtypes.h"
  51. #include <windows.h>
  52. #include <ddeml.h>
  53. #include "sdidde.h"
  54. #include "hxwinver.h"
  55. #include "hxassert.h" // needed for HX_TRACE and HX_ASSERT stuff...
  56. #include "hxheap.h"
  57. #ifdef _DEBUG
  58. #undef HX_THIS_FILE
  59. static const char HX_THIS_FILE[] = __FILE__;
  60. #endif
  61. // These SPI_ flags are defined MSDEV 6.0 only when WINVER >= 0x0500
  62. // see windows.h for details on when WINVER is set to >= 0x0500
  63. #ifndef SPI_GETFOREGROUNDLOCKTIMEOUT
  64. #define SPI_GETFOREGROUNDLOCKTIMEOUT 0x2000
  65. #endif /* SPI_GETFOREGROUNDLOCKTIMEOUT */
  66. #ifndef SPI_SETFOREGROUNDLOCKTIMEOUT
  67. #define SPI_SETFOREGROUNDLOCKTIMEOUT 0x2001
  68. #endif /* SPI_SETFOREGROUNDLOCKTIMEOUT */
  69. DWORD     g_dwIdInst = 0; // DDE Instance information
  70. DWORD     g_dwNumInstances = 0;
  71. HSZ     g_hszWWWService = NULL;
  72. typedef struct 
  73. {
  74.     const char* szDDEName;
  75.     const char* szFileName;
  76. } DDE_Browsers;
  77. DDE_Browsers g_BrowsersSupportingDDE[] = 
  78. {
  79.     { "IEXPLORE", "iexplore.exe" },
  80.     { "NETSCAPE", "netscape.exe" },
  81.     { "OPERA",    "opera.exe"  },
  82.     { "MOSAIC",   "mosaic.exe"  }  
  83. };
  84. HDDEDATA HXEXPORT DdeCallback
  85. (
  86.     UINT uType, // transaction type
  87.     UINT uFmt, // clipboard data format
  88.     HCONV hconv, // handle of the conversation
  89.     HSZ hsz1, // handle of a string
  90.     HSZ hsz2, // handle of a string
  91.     HDDEDATA hdata, // handle of a global memory object
  92.     DWORD dwData1, // transaction-specific data
  93.     DWORD dwData2  // transaction-specific data
  94. )
  95. {
  96.     return 0;
  97. }
  98. void DDEInit(IHXPreferences* pPreferences)
  99. {
  100.     return;
  101. }
  102. BOOL DDEStartup()
  103. {
  104.     HX_TRACE("DDEStartup()rn");
  105.     HX_ASSERT(g_dwNumInstances == 0 || g_dwIdInst);
  106.     if (g_dwIdInst > 0)
  107.     {
  108. goto exit;
  109.     }
  110.     if (DMLERR_NO_ERROR != DdeInitialize(&g_dwIdInst, DdeCallback, CBF_SKIP_ALLNOTIFICATIONS, 0))
  111.     {
  112. return FALSE;
  113.     }
  114. exit:
  115.     g_dwNumInstances++;    
  116.     return TRUE;
  117. }
  118. void DDEShutdown()
  119. {
  120.     HX_TRACE("DDEShutdown()rn");
  121.     HX_ASSERT(g_dwNumInstances > 0 && g_dwIdInst);
  122.     if (g_dwNumInstances > 0)
  123.     {
  124. g_dwNumInstances--;
  125.     }
  126.     if (g_dwNumInstances == 0 && g_dwIdInst)
  127.     {
  128. if (g_hszWWWService)
  129. {
  130.     DdeFreeStringHandle(g_dwIdInst, g_hszWWWService);
  131.     g_hszWWWService = NULL;
  132. }
  133. DdeUninitialize(g_dwIdInst);
  134. g_dwIdInst = NULL;
  135.     }
  136. }
  137. BOOL BrowserOpenURL(const char* pszUrl, const char* pszTarget, const char* pszDefBrowser) 
  138. {
  139.     HX_TRACE("BrowserOpenURL()rn");
  140.     BOOL result = TRUE;
  141.     DWORD dwResult = 0;
  142.     HDDEDATA hOpenRetVal = NULL;
  143.     HSZ hszOpenTopic = NULL;
  144.     HSZ hszOpenItem = NULL;
  145.     HCONV hOpenConv = NULL;
  146.     HDDEDATA hActivateRetVal = NULL;
  147.     HSZ hszActivateTopic = NULL;
  148.     HSZ hszActivateItem = NULL;
  149.     HCONV hActivateConv = NULL;
  150.     UINT16 i = 0;
  151.     UINT16 nNumberOfBrowsers = 0;
  152.     char* pMessage = NULL;
  153.     DWORD dwWindowID = 0xFFFFFFFF;     // -1 = last active window
  154.     DWORD dwLockTimeout = 0;
  155.     BOOL bForceBroswserToForeground = FALSE;
  156.     HXVERSIONINFO versionInfo;
  157.     if (!pszUrl)
  158.     {
  159. result = FALSE;
  160. goto cleanup;
  161.     }
  162.     pMessage = new char[strlen(pszUrl)+48];
  163.     if (!pMessage)
  164.     {
  165. result = FALSE;
  166. goto cleanup;
  167.     }
  168.     ZeroInit(&versionInfo);
  169.     HXGetWinVer(&versionInfo);
  170.     bForceBroswserToForeground = ((versionInfo.dwPlatformId == HX_PLATFORM_WIN98) || (versionInfo.dwPlatformId == HX_PLATFORM_WINNT && versionInfo.wMajorVersion > 4));
  171.     
  172.     DDEStartup();
  173.     // establish browser
  174.     if (NULL == g_hszWWWService)
  175.     {
  176. hszOpenTopic = DdeCreateStringHandle(g_dwIdInst, "WWW_OpenURL", CP_WINANSI);
  177. if (hszOpenTopic)
  178. {
  179.     nNumberOfBrowsers = sizeof(g_BrowsersSupportingDDE)/sizeof(DDE_Browsers);
  180.     // Look for a browser that supports DDE???
  181.     while (i < nNumberOfBrowsers)
  182.     {
  183. g_hszWWWService = DdeCreateStringHandle(g_dwIdInst,
  184.         g_BrowsersSupportingDDE[i].szDDEName,
  185. CP_WINANSI);
  186. hOpenConv = DdeConnect(g_dwIdInst, g_hszWWWService, hszOpenTopic, NULL);
  187. if (hOpenConv)
  188. {
  189.     break;
  190. }
  191. if(g_hszWWWService)
  192. {
  193.     DdeFreeStringHandle(g_dwIdInst, g_hszWWWService);
  194.     g_hszWWWService = NULL;  
  195. }
  196. i++;
  197.     }
  198. }
  199. if (NULL == g_hszWWWService)
  200. {
  201.     result = FALSE;
  202.     goto cleanup;
  203. }
  204.     }
  205.     else
  206.     {
  207. hszOpenTopic = DdeCreateStringHandle(g_dwIdInst,"WWW_OpenURL", CP_WINANSI);
  208. hOpenConv = DdeConnect(g_dwIdInst, g_hszWWWService, hszOpenTopic, NULL);
  209.     }
  210.     if (!hOpenConv)
  211.     {
  212. HX_TRACE("Conversation failed to start...rn");
  213. DdeFreeStringHandle(g_dwIdInst, g_hszWWWService);
  214. g_hszWWWService = NULL;
  215. result = FALSE;
  216. goto cleanup;
  217.     }
  218.     wsprintf(pMessage,""%s",,%lu,0,,,,", pszUrl, dwWindowID); 
  219.     hszOpenItem = DdeCreateStringHandle(g_dwIdInst, pMessage, CP_WINANSI);
  220.     HX_TRACE("Conversation started, sending URL command...rn");
  221.     // Request
  222.     hOpenRetVal = DdeClientTransaction(NULL, 0, hOpenConv, hszOpenItem, CF_TEXT, XTYP_REQUEST, 60000, NULL);
  223.     if (DDE_FNOTPROCESSED != hOpenRetVal)
  224.     {
  225. DdeGetData(hOpenRetVal, (LPBYTE)&dwResult, sizeof(dwResult), 0);
  226. if (!dwResult)
  227. {
  228.     result = FALSE;
  229.     goto cleanup;
  230. }
  231.     }
  232.     // force the browser to the foreground then do it here.  This does not actually put the browser
  233.     // in the foreground instead it enables the browser's call to SetForegroundWindow to bring the window to the
  234.     // front instead of flashing it on the taskbar
  235.     if (bForceBroswserToForeground)
  236.     {
  237. // These are new flags that work on Win98 and WinNT5 ONLY.  First get the current foreground lock timeout and save
  238. // it off and then set it to 0.
  239. ::SystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT,0,&dwLockTimeout,0);
  240. ::SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT,0,0,0);
  241.     }
  242.     // activate the browser
  243.     wsprintf(pMessage, "%lu,0", dwWindowID); 
  244.     hszActivateItem = DdeCreateStringHandle(g_dwIdInst, pMessage, CP_WINANSI);
  245.     hszActivateTopic = DdeCreateStringHandle(g_dwIdInst,"WWW_Activate", CP_WINANSI);
  246.     // Connect to server
  247.     if (hszActivateTopic && hszActivateItem)
  248.     {
  249. hActivateConv = DdeConnect(g_dwIdInst, g_hszWWWService, hszActivateTopic, NULL);
  250. if (hActivateConv)
  251. {
  252.     hActivateRetVal = DdeClientTransaction(NULL, 0, hActivateConv, hszActivateItem, CF_TEXT, XTYP_REQUEST, 10000, NULL);
  253. }
  254.     }
  255.     if (bForceBroswserToForeground)
  256.     {
  257. // Restore the old foreground lock timeout
  258. ::SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT,0,(PVOID)dwLockTimeout,0);
  259.     }
  260. cleanup:
  261.     if (hOpenRetVal)
  262. DdeFreeDataHandle(hOpenRetVal);
  263.     if (hActivateRetVal)
  264. DdeFreeDataHandle(hActivateRetVal);
  265.     if (hszOpenTopic)
  266. DdeFreeStringHandle(g_dwIdInst, hszOpenTopic);    
  267.     if (hszActivateTopic)
  268. DdeFreeStringHandle(g_dwIdInst, hszActivateTopic);    
  269.     if (hszOpenItem)    
  270. DdeFreeStringHandle(g_dwIdInst, hszOpenItem);
  271.     if (hszActivateItem)    
  272. DdeFreeStringHandle(g_dwIdInst, hszActivateItem);
  273.     if (hOpenConv)
  274. DdeDisconnect(hOpenConv);
  275.     if (hActivateConv)
  276. DdeDisconnect(hActivateConv);
  277.     HX_VECTOR_DELETE(pMessage);
  278.     
  279.     DDEShutdown();
  280.     return result;
  281. }