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

书籍源码

开发平台:

Visual C++

  1. // IEOptionsDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "IEOptions.h"
  5. #include "IEOptionsDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CIEOptionsDlg dialog
  50. CIEOptionsDlg::CIEOptionsDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CIEOptionsDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CIEOptionsDlg)
  54. m_strTitle = _T("");
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CIEOptionsDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CIEOptionsDlg)
  63. DDX_Control(pDX, IDC_LIST_IE, m_ctrlIE);
  64. DDX_Text(pDX, IDC_TITLE, m_strTitle);
  65. //}}AFX_DATA_MAP
  66. }
  67. BEGIN_MESSAGE_MAP(CIEOptionsDlg, CDialog)
  68. //{{AFX_MSG_MAP(CIEOptionsDlg)
  69. ON_WM_SYSCOMMAND()
  70. ON_WM_PAINT()
  71. ON_WM_QUERYDRAGICON()
  72. ON_BN_CLICKED(IDC_SETTITLE, OnSettitle)
  73. ON_WM_DESTROY()
  74. //}}AFX_MSG_MAP
  75. END_MESSAGE_MAP()
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CIEOptionsDlg message handlers
  78. BOOL CIEOptionsDlg::OnInitDialog()
  79. {
  80. CDialog::OnInitDialog();
  81. // Add "About..." menu item to system menu.
  82. // IDM_ABOUTBOX must be in the system command range.
  83. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  84. ASSERT(IDM_ABOUTBOX < 0xF000);
  85. CMenu* pSysMenu = GetSystemMenu(FALSE);
  86. if (pSysMenu != NULL)
  87. {
  88. CString strAboutMenu;
  89. strAboutMenu.LoadString(IDS_ABOUTBOX);
  90. if (!strAboutMenu.IsEmpty())
  91. {
  92. pSysMenu->AppendMenu(MF_SEPARATOR);
  93. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  94. }
  95. }
  96. // Set the icon for this dialog.  The framework does this automatically
  97. //  when the application's main window is not a dialog
  98. SetIcon(m_hIcon, TRUE); // Set big icon
  99. SetIcon(m_hIcon, FALSE); // Set small icon
  100. // TODO: Add extra initialization here
  101. //设置列表控件的风格
  102. m_ctrlIE.SetExtendedStyle(LVS_EX_CHECKBOXES|LVS_EX_FLATSB
  103.  |LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES);
  104. //插入一列
  105. m_ctrlIE.InsertColumn(0, "IE", LVCFMT_LEFT, 500, -1);
  106. //初始化Com环境
  107. CoInitialize(NULL);
  108. if (m_spSHWinds == NULL)
  109. {
  110. //创建变量的实例
  111. if (m_spSHWinds.CreateInstance(
  112. __uuidof(SHDocVw::ShellWindows)) != S_OK)
  113. {
  114. AfxMessageBox("Createinstance Failed");
  115. CoUninitialize();
  116. EndDialog(1);
  117. }
  118. }
  119. //刷新列表控件
  120. Refresh();
  121. return TRUE;  // return TRUE  unless you set the focus to a control
  122. }
  123. void CIEOptionsDlg::OnSysCommand(UINT nID, LPARAM lParam)
  124. {
  125. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  126. {
  127. CAboutDlg dlgAbout;
  128. dlgAbout.DoModal();
  129. }
  130. else
  131. {
  132. CDialog::OnSysCommand(nID, lParam);
  133. }
  134. }
  135. // If you add a minimize button to your dialog, you will need the code below
  136. //  to draw the icon.  For MFC applications using the document/view model,
  137. //  this is automatically done for you by the framework.
  138. void CIEOptionsDlg::OnPaint() 
  139. {
  140. if (IsIconic())
  141. {
  142. CPaintDC dc(this); // device context for painting
  143. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  144. // Center icon in client rectangle
  145. int cxIcon = GetSystemMetrics(SM_CXICON);
  146. int cyIcon = GetSystemMetrics(SM_CYICON);
  147. CRect rect;
  148. GetClientRect(&rect);
  149. int x = (rect.Width() - cxIcon + 1) / 2;
  150. int y = (rect.Height() - cyIcon + 1) / 2;
  151. // Draw the icon
  152. dc.DrawIcon(x, y, m_hIcon);
  153. }
  154. else
  155. {
  156. CDialog::OnPaint();
  157. }
  158. }
  159. // The system calls this to obtain the cursor to display while the user drags
  160. //  the minimized window.
  161. HCURSOR CIEOptionsDlg::OnQueryDragIcon()
  162. {
  163. return (HCURSOR) m_hIcon;
  164. }
  165. //刷新列表框
  166. void CIEOptionsDlg::Refresh()
  167. {
  168. //清除所有条目
  169. int n = m_ctrlIE.GetItemCount();
  170. for (int i = 0; i < n; i ++)
  171. {
  172. //释放ie实例对象
  173. IWebBrowser2 *pBrowser = (IWebBrowser2 *)m_ctrlIE.GetItemData(i);
  174. if (pBrowser){
  175. pBrowser->Release();
  176. }
  177. }
  178. m_ctrlIE.DeleteAllItems();
  179. if(m_spSHWinds)
  180. {
  181. //获得ie数量
  182. int n = m_spSHWinds->GetCount();
  183. for (int i = 0; i < n; i++)
  184. {
  185. //获得第i个ie实例
  186. _variant_t v = (long)i;
  187. IDispatchPtr spDisp = m_spSHWinds->Item(v);
  188. SHDocVw::IWebBrowser2Ptr spBrowser(spDisp);
  189. if (spBrowser)
  190. {
  191. spBrowser->AddRef();
  192. //获得文档对象
  193. MSHTML::IHTMLDocument2Ptr spDoc = spBrowser->GetDocument();
  194. if(spDoc==NULL)
  195. continue;
  196. //获得文档标题
  197. BSTR bsTitle;
  198. spDoc->get_title(&bsTitle);
  199. CString strTitle = (CString)bsTitle;
  200. //填充列表框
  201. int nPos = m_ctrlIE.InsertItem(0, strTitle);
  202. void * pData = spBrowser;
  203. m_ctrlIE.SetItemData(nPos, (DWORD)(pData));
  204. }
  205. }
  206. }
  207. }
  208. //设定ie标题
  209. void CIEOptionsDlg::OnSettitle() 
  210. {
  211. //更新数据
  212. UpdateData(TRUE);
  213. //获得ie实例个数
  214. int n = m_ctrlIE.GetItemCount();
  215. for (int i = 0; i < n; i++)
  216. {
  217. //获得被选中的实例
  218. if (m_ctrlIE.GetCheck(i))
  219. {
  220. DWORD data = m_ctrlIE.GetItemData(i);
  221. //获得ie浏览器实例
  222. IWebBrowser2 *pBrowser = (IWebBrowser2 *)data;
  223. if (pBrowser)
  224. {
  225. //获得ie文档对象
  226. IDispatchPtr spDisp;
  227. pBrowser->get_Document(&spDisp);
  228. MSHTML::IHTMLDocument2Ptr spDoc(spDisp);
  229. if(spDoc==NULL)
  230. continue;
  231. //设定标题
  232. BSTR bsTitle = m_strTitle.AllocSysString();
  233. spDoc->title = bsTitle;
  234. }
  235. }
  236. }
  237. //刷新列表框控件
  238. Refresh();
  239. }
  240. //销毁窗口时,清除com环境
  241. void CIEOptionsDlg::OnDestroy() 
  242. {
  243. //清除所有com对象
  244. int n = m_ctrlIE.GetItemCount();
  245. for (int i = 0; i < n; i ++)
  246. {
  247. IWebBrowser2 *pBrowser = (IWebBrowser2 *)m_ctrlIE.GetItemData(i);
  248. if (pBrowser)
  249. {
  250. pBrowser->Release();
  251. }
  252. }
  253. m_ctrlIE.DeleteAllItems();
  254. if (m_spSHWinds)
  255. {
  256. m_spSHWinds.Release();
  257. m_spSHWinds = 0;
  258. }
  259. CoUninitialize();
  260. CDialog::OnDestroy();
  261. }