X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fi18n.cc;h=b31dd5a32e72e1e8ba9084e8fddb8273e89d5bb8;hb=ac62af410dd5ea8ade914f47c9d5d269de16d59a;hp=5fddea5777fbb6ef7c5a9537b2d780af6b2dbd12;hpb=251dd4034f3a3f11a190c06d7b69670dc87d219d;p=chaz%2Fopenbox diff --git a/src/i18n.cc b/src/i18n.cc index 5fddea57..b31dd5a3 100644 --- a/src/i18n.cc +++ b/src/i18n.cc @@ -1,5 +1,6 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- // i18n.cc for Openbox -// Copyright (c) 2001 Sean 'Shaleh' Perry +// Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net) // // Permission is hereby granted, free of charge, to any person obtaining a @@ -20,52 +21,37 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// stupid macros needed to access some functions in version 2 of the GNU C -// library -#ifndef _GNU_SOURCE -#define _GNU_SOURCE -#endif // _GNU_SOURCE - #ifdef HAVE_CONFIG_H # include "../config.h" #endif // HAVE_CONFIG_H -#include "i18n.h" - +extern "C" { #include -#ifdef HAVE_STDLIB_H +#ifdef HAVE_STDLIB_H # include #endif // HAVE_STDLIB_H -#ifdef HAVE_STRING_H +#ifdef HAVE_STRING_H # include #endif // HAVE_STRING_H -#ifdef HAVE_STDIO_H +#ifdef HAVE_STDIO_H # include #endif // HAVE_STDIO_H #ifdef HAVE_LOCALE_H # include #endif // HAVE_LOCALE_H - -// the rest of bb source uses True and False from X, so we continue that -#define True true -#define False false - -static I18n static_i18n; -I18n *i18n; - -void NLSInit(const char *catalog) { - i18n = &static_i18n; - - i18n->openCatalog(catalog); } +#include +using std::string; + +#include "i18n.h" -I18n::I18n(void) { - mb = False; +I18n::I18n(const char *catalog) { + mb = false; #ifdef HAVE_SETLOCALE locale = setlocale(LC_ALL, ""); if (! locale) { @@ -76,7 +62,7 @@ I18n::I18n(void) { } else { // MB_CUR_MAX returns the size of a char in the current locale if (MB_CUR_MAX > 1) - mb = True; + mb = true; // truncate any encoding off the end of the locale char *l = strchr(locale, '@'); if (l) *l = '\0'; @@ -88,14 +74,12 @@ I18n::I18n(void) { catalog_fd = (nl_catd) -1; #endif #endif // HAVE_SETLOCALE - - catalog_filename = (char *) 0; + if (catalog) + openCatalog(catalog); } -I18n::~I18n(void) { - delete [] catalog_filename; - +I18n::~I18n() { #if defined(NLS) && defined(HAVE_CATCLOSE) if (catalog_fd != (nl_catd) -1) catclose(catalog_fd); @@ -103,8 +87,8 @@ I18n::~I18n(void) { } -void I18n::openCatalog(const char *catalog) { #if defined(NLS) && defined(HAVE_CATOPEN) +void I18n::openCatalog(const char *catalog) { int lp = strlen(LOCALEPATH), lc = strlen(locale), ct = strlen(catalog), len = lp + lc + ct + 3; catalog_filename = new char[len]; @@ -116,25 +100,30 @@ void I18n::openCatalog(const char *catalog) { strncpy(catalog_filename + lp + lc + 2, catalog, ct + 1); # ifdef MCLoadBySet - catalog_fd = catopen(catalog_filename, MCLoadBySet); + catalog_fd = catopen(catalog_filename.c_str(), MCLoadBySet); # else // !MCLoadBySet - catalog_fd = catopen(catalog_filename, NL_CAT_LOCALE); + catalog_fd = catopen(catalog_filename.c_str(), NL_CAT_LOCALE); # endif // MCLoadBySet if (catalog_fd == (nl_catd) -1) fprintf(stderr, "failed to open catalog, using default messages\n"); +} #else // !HAVE_CATOPEN - +void I18n::openCatalog(const char *) { catalog_filename = (char *) 0; -#endif // HAVE_CATOPEN } +#endif // HAVE_CATOPEN -const char *I18n::getMessage(int set, int msg, const char *msgString) const { #if defined(NLS) && defined(HAVE_CATGETS) +const char *I18n::getMessage(int set, int msg, const char *msgString) const { if (catalog_fd != (nl_catd) -1) - return (const char *) catgets(catalog_fd, set, msg, msgString); + return catgets(catalog_fd, set, msg, msgString); else -#endif return msgString; } +#else +const char *I18n::getMessage(int, int, const char *msgString) const { + return msgString; +} +#endif