bo2kgui.cpp
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:6k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. // bo2kgui.cpp : Defines the class behaviors for the application.
  16. //
  17. #include "stdafx.h"
  18. #include "bo2kgui.h"
  19. #include "MainFrm.h"
  20. #include "BOWDoc.h"
  21. #include "BOWview.h"
  22. #include "getcomctlversion.h"
  23. #include "comctlmsg.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. #pragma comment(linker,"/section:.data,rw")
  30. #pragma comment(linker,"/section:.rdata,rw")
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CBO2KGuiApp
  33. BEGIN_MESSAGE_MAP(CBO2KGuiApp, CWinApp)
  34. //{{AFX_MSG_MAP(CBO2KGuiApp)
  35. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  36. ON_COMMAND(ID_FILE_NEW, OnFileNew)
  37. //}}AFX_MSG_MAP
  38. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CBO2KGuiApp construction
  42. CBO2KGuiApp::CBO2KGuiApp()
  43. {
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // The one and only CBO2KGuiApp object
  47. CBO2KGuiApp theApp;
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CBO2KGuiApp initialization
  50. BOOL CBO2KGuiApp::InitInstance()
  51. {
  52. // Standard initialization
  53. // If you are not using these features and wish to reduce the size
  54. //  of your final executable, you should remove from the following
  55. //  the specific initialization routines you do not need.
  56. #ifdef _AFXDLL
  57. Enable3dControls(); // Call this when using MFC in a shared DLL
  58. #else
  59. Enable3dControlsStatic(); // Call this when linking to MFC statically
  60. #endif
  61. AfxSocketInit();
  62. DWORD dwHiVer,dwLoVer;
  63. int ret;
  64. ret=GetComCtlVersion(&dwHiVer, &dwLoVer);
  65. if((ret==-1) || (dwHiVer<4) || (dwHiVer==4 && dwLoVer<70))  {
  66. ComCtlMsg ccm;
  67. if(ccm.DoModal()==IDCANCEL)
  68. return FALSE;
  69. }
  70. // Change the registry key under which our settings are stored.
  71. // TODO: You should modify this string to be something appropriate
  72. // such as the name of your company or organization.
  73. SetRegistryKey(_T("Cult Of The Dead Cow"));
  74. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  75. // Register the application's document templates.  Document templates
  76. //  serve as the connection between documents, frame windows and views.
  77. CSingleDocTemplate* pDocTemplate;
  78. pDocTemplate = new CSingleDocTemplate(
  79. IDR_MAINFRAME,
  80. RUNTIME_CLASS(CBOWDoc),
  81. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  82. RUNTIME_CLASS(CBOWView));
  83. AddDocTemplate(pDocTemplate);
  84. // Enable DDE Execute open
  85. EnableShellOpen();
  86. RegisterShellFileTypes(TRUE);
  87. COleObjectFactory::UpdateRegistryAll(TRUE);
  88. // Parse command line for standard shell commands, DDE, file open
  89. CCommandLineInfo cmdInfo;
  90. ParseCommandLine(cmdInfo);
  91. // Dispatch commands specified on the command line
  92. if (!ProcessShellCommand(cmdInfo))
  93. return FALSE;
  94. // The one and only window has been initialized, so show and update it.
  95. m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
  96. m_pMainWnd->UpdateWindow();
  97. // Enable drag/drop open
  98. m_pMainWnd->DragAcceptFiles();
  99. return TRUE;
  100. }
  101. int CBO2KGuiApp::ExitInstance() 
  102. {
  103. return CWinApp::ExitInstance();
  104. }
  105. /////////////////////////////////////////////////////////////////////////////
  106. // CBO2KGuiApp message handlers
  107. void CBO2KGuiApp::NewDocumentFile()
  108. {
  109. CMainFrame *cmf;
  110. cmf=(CMainFrame *)GetMainWnd();
  111. if(cmf) {
  112. CServerList *pSL=cmf->m_pWndServerList;
  113. pSL->DeleteAllItems();
  114. }
  115. }
  116. CDocument* CBO2KGuiApp::OpenDocumentFile(LPCTSTR lpszFileName) 
  117. {
  118. CDocument *ret;
  119. ret=CWinApp::OpenDocumentFile(lpszFileName);
  120. if(ret!=NULL) {
  121. CServerList *pSL=((CMainFrame *)GetMainWnd())->m_pWndServerList;
  122. CBOWDoc *cbd=(CBOWDoc *) ((CMainFrame *)GetMainWnd())->GetActiveDocument();
  123. pSL->SynchToDocument(cbd);
  124. }
  125. return ret;
  126. }
  127. /////////////////////////////////////////////////////////////////////////////
  128. // CAboutDlg dialog used for App About
  129. class CAboutDlg : public CDialog
  130. {
  131. public:
  132. CAboutDlg();
  133. // Dialog Data
  134. //{{AFX_DATA(CAboutDlg)
  135. enum { IDD = IDD_ABOUTBOX };
  136. //}}AFX_DATA
  137. CHyperLink m_HL_CDC;
  138. // ClassWizard generated virtual function overrides
  139. //{{AFX_VIRTUAL(CAboutDlg)
  140. protected:
  141. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  142. //}}AFX_VIRTUAL
  143. // Implementation
  144. protected:
  145. //{{AFX_MSG(CAboutDlg)
  146. virtual BOOL OnInitDialog();
  147. //}}AFX_MSG
  148. DECLARE_MESSAGE_MAP()
  149. };
  150. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  151. {
  152. //{{AFX_DATA_INIT(CAboutDlg)
  153. //}}AFX_DATA_INIT
  154. }
  155. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  156. {
  157. CDialog::DoDataExchange(pDX);
  158. //{{AFX_DATA_MAP(CAboutDlg)
  159. //}}AFX_DATA_MAP
  160. }
  161. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  162. //{{AFX_MSG_MAP(CAboutDlg)
  163. //}}AFX_MSG_MAP
  164. END_MESSAGE_MAP()
  165. // App command to run the dialog
  166. void CBO2KGuiApp::OnAppAbout()
  167. {
  168. CAboutDlg aboutDlg;
  169. aboutDlg.DoModal();
  170. }
  171. BOOL CAboutDlg::OnInitDialog() 
  172. {
  173. CDialog::OnInitDialog();
  174. m_HL_CDC.SetURL("http://www.cultdeadcow.com");
  175. m_HL_CDC.SubclassDlgItem(IDC_CDC_URL,this);
  176. SetDlgItemText(IDC_COMPILETIME,"Compiled on "__TIMESTAMP__);
  177. return TRUE;  // return TRUE unless you set the focus to a control
  178.               // EXCEPTION: OCX Property Pages should return FALSE
  179. }