Scribble.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:13k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // Scribble.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include <locale.h>
  22. #include "winnls.h"
  23. #include "Scribble.h"
  24. #include "MainFrm.h"
  25. #include "ChildFrm.h"
  26. //#include "IpFrame.h"
  27. #include "ScribDoc.h"
  28. #include "ScribVw.h"
  29. #ifdef _DEBUG
  30. #define new DEBUG_NEW
  31. #undef THIS_FILE
  32. static char THIS_FILE[] = __FILE__;
  33. #endif
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CScribbleApp
  36. BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp)
  37. //{{AFX_MSG_MAP(CScribbleApp)
  38. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  39. ON_COMMAND(ID_LANGUAGE_ENGLISH, OnLanguageEnglish)
  40. ON_UPDATE_COMMAND_UI(ID_LANGUAGE_ENGLISH, OnUpdateLanguageEnglish)
  41. ON_COMMAND(ID_LANGUAGE_RUSSIAN, OnLanguageRussian)
  42. ON_UPDATE_COMMAND_UI(ID_LANGUAGE_RUSSIAN, OnUpdateLanguageRussian)
  43. ON_COMMAND(ID_LANGUAGE_GERMAN, OnLanguageGerman)
  44. ON_UPDATE_COMMAND_UI(ID_LANGUAGE_GERMAN, OnUpdateLanguageGerman)
  45. ON_COMMAND(ID_LANGUAGE_JAPANESE, OnLanguageJapanese)
  46. ON_UPDATE_COMMAND_UI(ID_LANGUAGE_JAPANESE, OnUpdateLanguageJapanese)
  47. ON_COMMAND(ID_LANGUAGE_ARABIC, OnLanguageArabic)
  48. ON_UPDATE_COMMAND_UI(ID_LANGUAGE_ARABIC, OnUpdateLanguageArabic)
  49. ON_COMMAND(ID_FILE_NEW, OnFileNew)
  50. //}}AFX_MSG_MAP
  51. // Standard file based document commands
  52. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  53. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  54. // Standard print setup command
  55. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  56. END_MESSAGE_MAP()
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CScribbleApp construction
  59. CScribbleApp::CScribbleApp()
  60. : m_curLanguage(0)
  61. {
  62. OSVERSIONINFO osvi;
  63. osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
  64. VERIFY(GetVersionEx(&osvi));
  65. m_bIsWinNT = (osvi.dwPlatformId == VER_PLATFORM_WIN32_NT);
  66. m_bIsWin2000OrLater = (m_bIsWinNT && osvi.dwMajorVersion > 4);
  67. m_bIsRTL = FALSE;
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // The one and only CScribbleApp object
  71. CScribbleApp theApp;
  72. // This identifier was generated to be statistically unique for your app.
  73. // You may change it if you prefer to choose a specific identifier.
  74. // {7559FD90-9B93-11CE-B0F0-00AA006C28B3}
  75. static const CLSID clsid =
  76. { 0x7559fd90, 0x9b93, 0x11ce, { 0xb0, 0xf0, 0x0, 0xaa, 0x0, 0x6c, 0x28, 0xb3 } };
  77. /////////////////////////////////////////////////////////////////////////////
  78. // CScribbleApp initialization
  79. BOOL CScribbleApp::InitInstance()
  80. {
  81. // Initialize OLE libraries
  82. if (!AfxOleInit())
  83. {
  84. AfxMessageBox(IDP_OLE_INIT_FAILED);
  85. return FALSE;
  86. }
  87. // Standard initialization
  88. // If you are not using these features and wish to reduce the size
  89. //  of your final executable, you should remove from the following
  90. //  the specific initialization routines you do not need.
  91. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  92. #ifdef _AFXDLL
  93. Enable3dControls();         // Call this when using MFC in a shared DLL
  94. #else
  95. Enable3dControlsStatic();   // Call this when linking to MFC statically
  96. #endif
  97. #endif // MFC 6.0 or earlier
  98. SetRegistryKey(_T("Codejock Software Sample Applications"));
  99. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  100. // Register the application's document templates.  Document templates
  101. //  serve as the connection between documents, frame windows and views.
  102. CMultiDocTemplate* pDocTemplate;
  103. pDocTemplate = new CMultiDocTemplate(
  104. IDR_SCRIBBTYPE,
  105. RUNTIME_CLASS(CScribbleDoc),
  106. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  107. RUNTIME_CLASS(CScribbleView));
  108. AddDocTemplate(pDocTemplate);
  109. // Connect the COleTemplateServer to the document template.
  110. //  The COleTemplateServer creates new documents on behalf
  111. //  of requesting OLE containers by using information
  112. //  specified in the document template.
  113. m_server.ConnectTemplate(clsid, pDocTemplate, FALSE);
  114. // create main MDI Frame window
  115. CMainFrame* pMainFrame = new CMainFrame;
  116. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  117. return FALSE;
  118. m_pMainWnd = pMainFrame;
  119. // Enable drag/drop open.  We don't call this in Win32, since a
  120. //  document file extension wasn't chosen while running AppWizard.
  121. m_pMainWnd->DragAcceptFiles();
  122. // Parse command line for standard shell commands, DDE, file open
  123. CCommandLineInfo cmdInfo;
  124. ParseCommandLine(cmdInfo);
  125. // Check to see if launched as OLE server
  126. if (cmdInfo.m_bRunEmbedded || cmdInfo.m_bRunAutomated)
  127. {
  128. // Application was run with /Embedding or /Automation.  Don't show the
  129. //  main window in this case.
  130. return TRUE;
  131. }
  132. // Dispatch commands specified on the command line
  133. if (!ProcessShellCommand(cmdInfo))
  134. return FALSE;
  135. UINT curLanguage = GetProfileInt(_T("Settings"), _T("Current Language"), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
  136. switch (curLanguage & 0xFF)
  137. {
  138. case LANG_GERMAN:
  139. OnLanguageGerman();
  140. break;
  141. case LANG_JAPANESE:
  142. OnLanguageJapanese();
  143. break;
  144. case LANG_ARABIC:
  145. OnLanguageArabic();
  146. break;
  147. case LANG_RUSSIAN:
  148. OnLanguageRussian();
  149. break;
  150. default:
  151. OnLanguageEnglish();
  152. break;
  153. }
  154. // The main window has been initialized, so show and update it.
  155. pMainFrame->ShowWindow(m_nCmdShow);
  156. pMainFrame->UpdateWindow();
  157. return TRUE;
  158. }
  159. int CScribbleApp::ExitInstance()
  160. {
  161. WriteProfileInt(_T("Settings"), _T("Current Language"), m_curLanguage);
  162. XTPResourceManager()->Close();
  163. return CWinApp::ExitInstance();
  164. }
  165. /////////////////////////////////////////////////////////////////////////////
  166. // CScribbleApp commands
  167. BOOL CScribbleApp::IsUnicodeAndLayoutSupport()
  168. {
  169. #ifdef _UNICODE
  170. return m_bIsWin2000OrLater;
  171. #else
  172. return FALSE;
  173. #endif
  174. }
  175. BOOL CScribbleApp::SetLocale(LCID Locale, LPCTSTR szLocale, LPCTSTR szFileName, BOOL bIsRTL)
  176. {
  177. if (szFileName)
  178. {
  179. if (CXTPPropExchangeXMLNode::IsXMLSupported())  // Try to load from XML. Needs IE 4.0 installed
  180. {
  181. CString strPath;
  182. VERIFY(::GetModuleFileName(AfxGetApp()->m_hInstance, strPath.GetBufferSetLength(_MAX_PATH), _MAX_PATH));
  183. strPath.ReleaseBuffer();
  184. int nIndex  = strPath.ReverseFind(_T('\'));
  185. if (nIndex > 0) strPath = strPath.Left(nIndex + 1); else strPath.Empty();
  186. strPath = strPath + _T("Translations\") + szFileName + _T(".xml");
  187. if (!XTPResourceManager()->SetResourceManager(new CXTPResourceManagerXML(strPath)))
  188. return FALSE;
  189. }
  190. else
  191. {
  192. CString strPath;
  193. VERIFY(::GetModuleFileName(AfxGetApp()->m_hInstance, strPath.GetBufferSetLength(_MAX_PATH), _MAX_PATH));
  194. strPath.ReleaseBuffer();
  195. int nIndex  = strPath.ReverseFind(_T('\'));
  196. if (nIndex > 0) strPath = strPath.Left(nIndex + 1); else strPath.Empty();
  197. strPath = strPath + _T("Translations\") + szFileName + _T(".dll");
  198. XTPResourceManager()->SetResourceManager(new CXTPResourceManager());
  199. XTPResourceManager()->SetResourceFile(strPath);
  200. }
  201. }
  202. else
  203. {
  204. if (!XTPResourceManager()->SetResourceManager(new CXTPResourceManager()))
  205. return FALSE;
  206. }
  207. ::SetThreadLocale(MAKELCID(Locale, SORT_DEFAULT)); 
  208. ::_tsetlocale(LC_ALL, szLocale); 
  209. m_curLanguage = Locale;
  210. SetRTLLayout(bIsRTL);
  211. ReloadDefaultMenu();
  212. return TRUE;
  213. }
  214. void CScribbleApp::OnLanguageEnglish()
  215. {
  216. SetLocale(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),
  217. _T("English.1252"), NULL, FALSE);
  218. }
  219. void CScribbleApp::OnUpdateLanguageEnglish(CCmdUI* pCmdUI)
  220. {
  221. pCmdUI->SetCheck(m_curLanguage == MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US));
  222. }
  223. void CScribbleApp::OnLanguageGerman()
  224. {
  225. SetLocale(MAKELANGID(LANG_GERMAN,SUBLANG_GERMAN),
  226. _T("German.1252"), _T("Scribble.ResourceDe"), FALSE);
  227. }
  228. void CScribbleApp::OnUpdateLanguageGerman(CCmdUI* pCmdUI)
  229. {
  230. pCmdUI->SetCheck(m_curLanguage == MAKELANGID(LANG_GERMAN,SUBLANG_GERMAN));
  231. }
  232. void CScribbleApp::OnLanguageJapanese()
  233. {
  234. SetLocale(MAKELANGID(LANG_JAPANESE, SUBLANG_DEFAULT),
  235. _T("Japanese.932"), _T("Scribble.ResourceJa"), FALSE);
  236. }
  237. void CScribbleApp::OnUpdateLanguageJapanese(CCmdUI* pCmdUI)
  238. {
  239. pCmdUI->SetCheck(m_curLanguage == MAKELANGID(LANG_JAPANESE, SUBLANG_DEFAULT));
  240. pCmdUI->Enable((IsUnicodeAndLayoutSupport() && m_bIsWinNT) || (GetSystemDefaultLangID() == 0x411));
  241. }
  242. void CScribbleApp::OnLanguageArabic()
  243. {
  244. SetLocale(MAKELANGID(LANG_ARABIC, SUBLANG_ARABIC_SAUDI_ARABIA),
  245. _T("Arabic.1256"), _T("Scribble.ResourceArSa"), TRUE);
  246. }
  247. void CScribbleApp::OnUpdateLanguageArabic(CCmdUI* pCmdUI)
  248. {
  249. pCmdUI->SetCheck(m_curLanguage == MAKELANGID(LANG_ARABIC, SUBLANG_ARABIC_SAUDI_ARABIA));
  250. pCmdUI->Enable((IsUnicodeAndLayoutSupport() && m_bIsWinNT) || (GetSystemDefaultLangID() == 0x401));
  251. }
  252. void CScribbleApp::OnLanguageRussian()
  253. {
  254. SetLocale(MAKELANGID(LANG_RUSSIAN, SUBLANG_DEFAULT),
  255. _T("Russian"), _T("Scribble.ResourceRu"), FALSE);
  256. }
  257. void CScribbleApp::OnUpdateLanguageRussian(CCmdUI* pCmdUI)
  258. {
  259. pCmdUI->SetCheck(m_curLanguage == MAKELANGID(LANG_RUSSIAN, SUBLANG_DEFAULT));
  260. pCmdUI->Enable(IsUnicodeAndLayoutSupport() || (GetSystemDefaultLangID() == 0x419));
  261. }
  262. void CScribbleApp::ReloadDefaultMenu()
  263. {
  264. CMainFrame* pMainFrame = DYNAMIC_DOWNCAST(CMainFrame, m_pMainWnd);
  265. if (pMainFrame)
  266. {
  267. pMainFrame->ResetCommandBars();
  268. }
  269. }
  270. void SetRTLLayout(CWnd* pWnd, BOOL bRTLLayout)
  271. {
  272. pWnd->ModifyStyleEx(bRTLLayout? 0: WS_EX_LAYOUTRTL, !bRTLLayout? 0: WS_EX_LAYOUTRTL, SWP_FRAMECHANGED);
  273. // walk through HWNDs to avoid creating temporary CWnd objects
  274. // unless we need to call this function recursively
  275. for (CWnd* pChild = pWnd->GetWindow(GW_CHILD); pChild != NULL;
  276. pChild = pChild->GetWindow(GW_HWNDNEXT))
  277. {
  278. // send to child windows after parent
  279. SetRTLLayout(pChild, bRTLLayout);
  280. }
  281. }
  282. void CScribbleApp::SetRTLLayout(BOOL bRTLLayout)
  283. {
  284. if ((BYTE)::GetVersion() < 4)
  285. return;
  286. if (m_bIsRTL == bRTLLayout)
  287. return;
  288. m_bIsRTL = bRTLLayout;
  289. if (m_pMainWnd)
  290. {
  291. ::SetRTLLayout(m_pMainWnd, bRTLLayout);
  292. // then update the state of all floating windows owned by the parent
  293. HWND hWnd = ::GetWindow(::GetDesktopWindow(), GW_CHILD);
  294. while (hWnd != NULL)
  295. {
  296. if (m_pMainWnd->m_hWnd == ::GetParent(hWnd))
  297. ::SetRTLLayout(CWnd::FromHandle(hWnd), bRTLLayout);
  298. hWnd = ::GetWindow(hWnd, GW_HWNDNEXT);
  299. }
  300. }
  301. XTPImageManager()->DrawReverted(bRTLLayout);
  302. }
  303. CDocument* CScribbleApp::OpenDocumentFile(LPCTSTR lpszFileName)
  304. {
  305. CDocument* pDoc = CWinApp::OpenDocumentFile(lpszFileName);
  306. return pDoc;
  307. }
  308. void CScribbleApp::OnFileNew()
  309. {
  310. CWinApp::OnFileNew();
  311. }
  312. /////////////////////////////////////////////////////////////////////////////
  313. // CAboutDlgLoc dialog used for App About
  314. class CAboutDlgLoc : public CDialog
  315. {
  316. public:
  317. CAboutDlgLoc();
  318. // Dialog Data
  319. //{{AFX_DATA(CAboutDlgLoc)
  320. enum { IDD = IDD_ABOUTBOX };
  321. //}}AFX_DATA
  322. // ClassWizard generated virtual function overrides
  323. //{{AFX_VIRTUAL(CAboutDlgLoc)
  324. protected:
  325. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  326. //}}AFX_VIRTUAL
  327. // Implementation
  328. protected:
  329. //{{AFX_MSG(CAboutDlgLoc)
  330. virtual BOOL OnInitDialog();
  331. //}}AFX_MSG
  332. DECLARE_MESSAGE_MAP()
  333. CFont m_DlgFont;
  334. };
  335. CAboutDlgLoc::CAboutDlgLoc()
  336. {
  337. InitModalIndirect(XTPResourceManager()->LoadDialogTemplate(IDD_ABOUTBOX));
  338. //{{AFX_DATA_INIT(CAboutDlgLoc)
  339. //}}AFX_DATA_INIT
  340. }
  341. void CAboutDlgLoc::DoDataExchange(CDataExchange* pDX)
  342. {
  343. CDialog::DoDataExchange(pDX);
  344. //{{AFX_DATA_MAP(CAboutDlgLoc)
  345. //}}AFX_DATA_MAP
  346. }
  347. BEGIN_MESSAGE_MAP(CAboutDlgLoc, CDialog)
  348. //{{AFX_MSG_MAP(CAboutDlgLoc)
  349. //}}AFX_MSG_MAP
  350. END_MESSAGE_MAP()
  351. // App command to run the dialog
  352. void CScribbleApp::OnAppAbout()
  353. {
  354. CAboutDlgLoc aboutDlg;
  355. aboutDlg.DoModal();
  356. }
  357. BOOL CAboutDlgLoc::OnInitDialog()
  358. {
  359. CDialog::OnInitDialog();
  360. LCID lcid = GetThreadLocale();
  361. if ( lcid == MAKELANGID(LANG_JAPANESE, SUBLANG_DEFAULT))
  362. { // set the characterset explicitly
  363. // -> to run the applicatin in Japanese on a non Japanges Windows
  364. CFont* pFont = GetFont();
  365. LOGFONT lf;
  366. if ( pFont != NULL  )
  367. {
  368. pFont->GetLogFont(&lf);
  369. lf.lfCharSet = SHIFTJIS_CHARSET;
  370. m_DlgFont.CreateFontIndirect(&lf);
  371. GetDlgItem(IDC_STATIC_LANGUAGE)->SetFont(&m_DlgFont);
  372. GetDlgItem(IDC_STATIC_MULLANG)->SetFont(&m_DlgFont);
  373. GetDlgItem(IDC_STATIC_SCRIBBLE)->SetFont(&m_DlgFont);
  374. }
  375. }
  376. return TRUE;  // return TRUE unless you set the focus to a control
  377.               // EXCEPTION: OCX Property Pages should return FALSE
  378. }