POSupport.cpp
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /*
  2.  * POSupport.cpp
  3.  * Celestia
  4.  *
  5.  * Created by Da Woon Jung on 2008-01-13.
  6.  * Copyright 2008 Da Woon Jung. All rights reserved.
  7.  * 
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version 2
  11.  * of the License, or (at your option) any later version.
  12.  * 
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  * 
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  21.  */
  22. #include <Carbon/Carbon.h>
  23. #include "POSupport.h"
  24. #include <string>
  25. #include <map>
  26. #define LOCALIZED_STR_BUFSIZE   1024
  27. typedef std::map<std::string, std::string> StringMap;
  28. typedef std::map<std::string, StringMap> MapMap;
  29. MapMap domainDict;
  30. const char *localizedUTF8String(const char *key)
  31. {
  32.     return localizedUTF8StringWithDomain("po", key);
  33. }
  34. const char *localizedUTF8StringWithDomain(const char *domain, const char *key)
  35. {
  36.     std::string domainStr(domain);
  37.     std::string keyStr(key);
  38.     MapMap::iterator iter = domainDict.find(domainStr);
  39.     if (iter == domainDict.end())
  40.     {
  41.         StringMap strMap;
  42.         domainDict[domainStr] = strMap;
  43.         iter = domainDict.find(domainStr);
  44.     }
  45.     StringMap &localizedDict = iter->second;
  46.     StringMap::iterator strIter = localizedDict.find(keyStr);
  47.     if (strIter == localizedDict.end())
  48.     {
  49.         CFStringRef domainRef = CFStringCreateWithCStringNoCopy(NULL, domain, kCFStringEncodingUTF8, kCFAllocatorNull);
  50.         CFStringRef keyRef = CFStringCreateWithCStringNoCopy(NULL, key, kCFStringEncodingUTF8, kCFAllocatorNull);
  51.         CFStringRef localizedRef = CFCopyLocalizedStringFromTable(keyRef, domainRef, "");
  52.         char localizedBuf[LOCALIZED_STR_BUFSIZE];
  53.         CFStringGetCString(localizedRef, localizedBuf, LOCALIZED_STR_BUFSIZE, kCFStringEncodingUTF8);
  54.         std::string localizedStr(localizedBuf);
  55.         localizedDict[keyStr] = localizedStr;
  56.         CFRelease(localizedRef);
  57.         CFRelease(keyRef);
  58.         CFRelease(domainRef);
  59.         strIter = localizedDict.find(keyStr);
  60.     }
  61.     std::string &localized = strIter->second;
  62.     return localized.c_str();
  63. }