00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 Open Download Manager Copyright (c) 2008-2010 OpenDownloadManager.ORG 00004 */ 00005 00006 #if !defined(AFX_FSMFCLANGMGR_H__90628146_B368_4966_A4F2_F7F9CB7E50CC__INCLUDED_) 00007 #define AFX_FSMFCLANGMGR_H__90628146_B368_4966_A4F2_F7F9CB7E50CC__INCLUDED_ 00008 00009 #if _MSC_VER > 1000 00010 #pragma once 00011 #endif 00012 00013 #include "fsLangMgr.h" 00014 00015 struct fsDlgLngInfo 00016 { 00017 UINT nCtrlID; 00018 UINT nIDStr; 00019 BOOL bAddColon; 00020 00021 fsDlgLngInfo (UINT u1, UINT u2, BOOL bAddColon = FALSE) : nCtrlID (u1), nIDStr (u2), bAddColon (bAddColon) {} 00022 }; 00023 00024 class fsMFCLangMgr : public fsLangMgr 00025 { 00026 public: 00027 00028 void ApplyLanguage (CDialog* dlg, fsDlgLngInfo* lnginfo, int cInfo, UINT uIDStrTitle = 0); 00029 00030 fsMFCLangMgr(); 00031 virtual ~fsMFCLangMgr(); 00032 00033 }; 00034 00035 #endif
1.5.6