summaryrefslogtreecommitdiff
path: root/sal/inc/rtl/locale.hxx
blob: 9fb4960d2aa311c1182e2ea908e798a078b8a87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef _RTL_LOCALE_HXX_
#define _RTL_LOCALE_HXX_

#include <rtl/locale.h>
#include <rtl/ustring.hxx>

#ifdef __cplusplus

namespace rtl
{

/**
    A <code>OLocale</code> object represents a specific geographical, political,
    or cultural region. An operation that requires a <code>OLocale</code> to perform
    its task is called <em>locale-sensitive</em> and uses the <code>OLocale</code>
    to tailor information for the user. For example, displaying a number
    is a locale-sensitive operation--the number should be formatted
    according to the customs/conventions of the user's native country,
    region, or culture.

    <P>
    You create a <code>OLocale</code> object using one of the two constructors in
    this class:
    <blockquote>
    <pre>
    OLocale(String language, String country)
    OLocale(String language, String country, String variant)
    </pre>
    </blockquote>
    The first argument to both constructors is a valid <STRONG>ISO
    Language Code.</STRONG> These codes are the lower-case two-letter
    codes as defined by ISO-639.
    You can find a full list of these codes at a number of sites, such as:
    <BR><a href ="http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt">
    <code>http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt</code></a>

    <P>
    The second argument to both constructors is a valid <STRONG>ISO Country
    Code.</STRONG> These codes are the upper-case two-letter codes
    as defined by ISO-3166.
    You can find a full list of these codes at a number of sites, such as:
    <BR><a href="http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html">
    <code>http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html</code></a>

    <P>
    The second constructor requires a third argument--the <STRONG>Variant.</STRONG>
    The Variant codes are vendor and browser-specific.
    For example, use WIN for Windows, MAC for Macintosh, and POSIX for POSIX.
    Where there are two variants, separate them with an underscore, and
    put the most important one first. For
    example, a Traditional Spanish collation might be referenced, with
    "ES", "ES", "Traditional_WIN".

    <P>
    Because a <code>OLocale</code> object is just an identifier for a region,
    no validity check is performed when you construct a <code>OLocale</code>.
    If you want to see whether particular resources are available for the
    <code>OLocale</code> you construct, you must query those resources. For
    example, ask the <code>NumberFormat</code> for the locales it supports
    using its <code>getAvailableLocales</code> method.
    <BR><STRONG>Note:</STRONG> When you ask for a resource for a particular
    locale, you get back the best available match, not necessarily
    precisely what you asked for. For more information, look at
    <a href="java.util.ResourceBundle.html"><code>ResourceBundle</code></a>.

    <P>
    The <code>OLocale</code> class provides a number of convenient constants
    that you can use to create <code>OLocale</code> objects for commonly used
    locales. For example, the following creates a <code>OLocale</code> object
    for the United States:
    <blockquote>
    <pre>
    OLocale.US
    </pre>
    </blockquote>

    <P>
    Once you've created a <code>OLocale</code> you can query it for information about
    itself. Use <code>getCountry</code> to get the ISO Country Code and
    <code>getLanguage</code> to get the ISO Language Code. You can
    use <code>getDisplayCountry</code> to get the
    name of the country suitable for displaying to the user. Similarly,
    you can use <code>getDisplayLanguage</code> to get the name of
    the language suitable for displaying to the user. Interestingly,
    the <code>getDisplayXXX</code> methods are themselves locale-sensitive
    and have two versions: one that uses the default locale and one
    that uses the locale specified as an argument.

    <P>
    The JDK provides a number of classes that perform locale-sensitive
    operations. For example, the <code>NumberFormat</code> class formats
    numbers, currency, or percentages in a locale-sensitive manner. Classes
    such as <code>NumberFormat</code> have a number of convenience methods
    for creating a default object of that type. For example, the
    <code>NumberFormat</code> class provides these three convenience methods
    for creating a default <code>NumberFormat</code> object:
    <blockquote>
    <pre>
    NumberFormat.getInstance()
    NumberFormat.getCurrencyInstance()
    NumberFormat.getPercentInstance()
    </pre>
    </blockquote>
    These methods have two variants; one with an explicit locale
    and one without; the latter using the default locale.
    <blockquote>
    <pre>
    NumberFormat.getInstance(myLocale)
    NumberFormat.getCurrencyInstance(myLocale)
    NumberFormat.getPercentInstance(myLocale)
    </pre>
    </blockquote>
    A <code>OLocale</code> is the mechanism for identifying the kind of object
    (<code>NumberFormat</code>) that you would like to get. The locale is
    <STRONG>just</STRONG> a mechanism for identifying objects,
    <STRONG>not</STRONG> a container for the objects themselves.

    <P>
    Each class that performs locale-sensitive operations allows you
    to get all the available objects of that type. You can sift
    through these objects by language, country, or variant,
    and use the display names to present a menu to the user.
    For example, you can create a menu of all the collation objects
    suitable for a given language. Such classes must implement these
    three class methods:
    <blockquote>
    <pre>
    public static OLocale[] getAvailableLocales()
    public static String getDisplayName(OLocale objectLocale,
                                       OLocale displayLocale)
    public static final String getDisplayName(OLocale objectLocale)
       // getDisplayName will throw MissingResourceException if the locale
       // is not one of the available locales.
    </pre>
    </blockquote>
 */
class OLocale
{
public:
    OLocale( rtl_Locale * locale )
        : pData( locale ) {}

    OLocale( const OLocale & obj)
        : pData(obj.pData) {}

    OLocale & operator = ( const OLocale & obj)
        {
            pData = obj.pData;
            return *this;
        }

    /**
         Construct a locale from language, country, variant.
        @param language lowercase two-letter ISO-639 code.
        @param country uppercase two-letter ISO-3166 code.
        @param variant vendor and browser specific code. See class description.
     */
    static OLocale registerLocale( const OUString & language, const OUString & country,
                            const OUString & variant )
    {
        return rtl_locale_register( language.getStr(), country.getStr(), variant.getStr() );
    }

    /**
         Construct a locale from language, country.
        @param language lowercase two-letter ISO-639 code.
        @param country uppercase two-letter ISO-3166 code.
     */
    static OLocale registerLocale( const OUString & language, const OUString & country )
    {
        return rtl_locale_register( language.getStr(), country.getStr(), NULL );
    }

    /** @deprecated
     */
    static OLocale getDefault()  { return rtl_locale_getDefault(); }

    /** @deprecated
     */
    static void setDefault( const OUString & language, const OUString & country,
                            const OUString & variant )
             { rtl_locale_setDefault(language.getStr(), country.getStr(), variant.getStr()); }

    /**
         Getter for programmatic name of field,
         an lowercased two-letter ISO-639 code.
     */
    OUString getLanguage() const { return pData->Language; }

    /**
         Getter for programmatic name of field,
         an uppercased two-letter ISO-3166 code.
     */
    OUString getCountry() const { return pData->Country; }

    /**
         Getter for programmatic name of field.
     */
    OUString getVariant() const { return pData->Variant; }


    /**
         Returns the hash code of the locale This.
     */
    sal_Int32 hashCode() const { return pData->HashCode; }

    sal_Bool operator == (const OLocale & obj ) const
    {
        return pData == obj.pData;
    }

    rtl_Locale *    getData() const { return pData; }

private:
    /**
         Must be the first member in this class. OUString access this member with
         *(rtl_Locale **)&locale.
     */
    rtl_Locale *    pData;

    OLocale()
        : pData(rtl_locale_getDefault()) {}
};

}

#endif /* __cplusplus */
#endif /* _RTL_LOCALE_HXX_ */


/* vim:set shiftwidth=4 softtabstop=4 expandtab: */