167 lines
5.1 KiB
C++
167 lines
5.1 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/uilocale.h
|
|
// Purpose: wxUILocale class declaration.
|
|
// Author: Vadim Zeitlin
|
|
// Created: 2021-07-31
|
|
// Copyright: (c) 2021 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_UILOCALE_H_
|
|
#define _WX_UILOCALE_H_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_INTL
|
|
|
|
#include "wx/localedefs.h"
|
|
#include "wx/string.h"
|
|
|
|
class wxUILocaleImpl;
|
|
|
|
// Flags for wxUILocale::CompareStrings().
|
|
enum
|
|
{
|
|
wxCompare_CaseSensitive = 0,
|
|
wxCompare_CaseInsensitive = 1
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxLocaleIdent: allows to fully identify a locale under all platforms
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_BASE wxLocaleIdent
|
|
{
|
|
public:
|
|
// Create the object from BCP 47-like language tag: the string must contain
|
|
// at least the language part (2 or 3 ASCII letters) and may contain script
|
|
// and region separated by dashes.
|
|
static wxLocaleIdent FromTag(const wxString& tag);
|
|
|
|
// Default ctor creates an empty, invalid identifier.
|
|
wxLocaleIdent() { }
|
|
|
|
// Set language
|
|
wxLocaleIdent& Language(const wxString& language);
|
|
|
|
// Set region
|
|
wxLocaleIdent& Region(const wxString& region);
|
|
|
|
// Set script (not supported and ignored under Unix)
|
|
wxLocaleIdent& Script(const wxString& script);
|
|
|
|
// Set charset (only supported under Unix)
|
|
wxLocaleIdent& Charset(const wxString& charset);
|
|
|
|
// Set modifier (only supported under Unix)
|
|
wxLocaleIdent& Modifier(const wxString& modifier);
|
|
|
|
// Accessors for the individual fields.
|
|
const wxString& GetLanguage() const { return m_language; }
|
|
const wxString& GetRegion() const { return m_region; }
|
|
const wxString& GetScript() const { return m_script; }
|
|
const wxString& GetCharset() const { return m_charset; }
|
|
const wxString& GetModifier() const { return m_modifier; }
|
|
|
|
// Construct platform dependent name
|
|
wxString GetName() const;
|
|
|
|
// Get the language tag: for the objects created with FromTag() returns the
|
|
// string passed to it directly, otherwise reconstructs this string from
|
|
// the components.
|
|
wxString GetTag() const;
|
|
|
|
// Empty locale identifier is invalid. at least Language() must be called.
|
|
bool IsEmpty() const
|
|
{
|
|
return m_language.empty();
|
|
}
|
|
|
|
private:
|
|
wxString m_tag;
|
|
|
|
wxString m_language;
|
|
wxString m_region;
|
|
wxString m_script;
|
|
wxString m_charset;
|
|
wxString m_modifier;
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxUILocale allows to use the default UI locale and get information about it
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_BASE wxUILocale
|
|
{
|
|
public:
|
|
// Configure the UI to use the default user locale.
|
|
static bool UseDefault();
|
|
|
|
// Use the locale corresponding to the given language.
|
|
//
|
|
// This is a compatibility function used by wxWidgets itself, don't use it
|
|
// in the new code.
|
|
static bool UseLanguage(const wxLanguageInfo& info);
|
|
|
|
// Get the object corresponding to the currently used locale.
|
|
static const wxUILocale& GetCurrent();
|
|
|
|
// A helper just to avoid writing wxUILocale(wxLocaleIdent::FromTag(...)).
|
|
static wxUILocale FromTag(const wxString& tag)
|
|
{
|
|
return wxUILocale(wxLocaleIdent::FromTag(tag));
|
|
}
|
|
|
|
// Create the object corresponding to the given locale.
|
|
explicit wxUILocale(const wxLocaleIdent& localeId);
|
|
|
|
// Objects of this class can be (cheaply) copied.
|
|
wxUILocale(const wxUILocale& loc);
|
|
wxUILocale& operator=(const wxUILocale& loc);
|
|
|
|
// Check if the locale is actually supported by the current system: if it's
|
|
// not supported, the other functions will behave as for the "C" locale.
|
|
bool IsSupported() const;
|
|
|
|
// Get the platform-dependent name of the current locale.
|
|
wxString GetName() const;
|
|
|
|
// Query the locale for the specified information.
|
|
wxString GetInfo(wxLocaleInfo index,
|
|
wxLocaleCategory cat = wxLOCALE_CAT_DEFAULT) const;
|
|
|
|
// Compares two strings in the order defined by this locale.
|
|
int CompareStrings(const wxString& lhs, const wxString& rhs,
|
|
int flags = wxCompare_CaseSensitive) const;
|
|
|
|
// Note that this class is not supposed to be used polymorphically, hence
|
|
// its dtor is not virtual.
|
|
~wxUILocale();
|
|
|
|
private:
|
|
// This ctor is private and exists only for implementation reasons.
|
|
// It takes ownership of the provided pointer.
|
|
explicit wxUILocale(wxUILocaleImpl* impl = NULL) : m_impl(impl) { }
|
|
|
|
|
|
static wxUILocale ms_current;
|
|
|
|
wxUILocaleImpl* m_impl;
|
|
};
|
|
|
|
inline wxString wxGetUIDateFormat()
|
|
{
|
|
return wxUILocale::GetCurrent().GetInfo(wxLOCALE_SHORT_DATE_FMT);
|
|
}
|
|
|
|
#else // !wxUSE_INTL
|
|
|
|
inline wxString wxGetUIDateFormat()
|
|
{
|
|
return wxString(wxS("%x"));
|
|
}
|
|
|
|
#endif // wxUSE_INTL/!wxUSE_INTL
|
|
|
|
#endif // _WX_UILOCALE_H_
|