~ubuntu-filemanager-dev/ubuntu-filemanager-app/nemo-qml-plugins-packaging

« back to all changes in this revision

Viewing changes to contacts/src/localeutils_p.h

  • Committer: Timo Jyrinki
  • Date: 2013-03-20 15:03:31 UTC
  • Revision ID: timo.jyrinki@canonical.com-20130320150331-aggtqfb7cufdiuzc
ImportĀ upstreamĀ 0.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Robin Burchell <robin+nemo@viroteck.net>
 
3
 *
 
4
 * You may use this file under the terms of the BSD license as follows:
 
5
 *
 
6
 * "Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions are
 
8
 * met:
 
9
 *   * Redistributions of source code must retain the above copyright
 
10
 *     notice, this list of conditions and the following disclaimer.
 
11
 *   * Redistributions in binary form must reproduce the above copyright
 
12
 *     notice, this list of conditions and the following disclaimer in
 
13
 *     the documentation and/or other materials provided with the
 
14
 *     distribution.
 
15
 *   * Neither the name of Nemo Mobile nor the names of its contributors
 
16
 *     may be used to endorse or promote products derived from this
 
17
 *     software without specific prior written permission.
 
18
 *
 
19
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
20
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
21
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
22
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
23
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
24
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
25
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
26
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
27
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
28
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
29
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
30
 */
 
31
 
 
32
#ifndef LOCALEUTILS_H
 
33
#define LOCALRUTILS_H
 
34
 
 
35
#include <QObject>
 
36
#include <QStringList>
 
37
#include <QLocale>
 
38
 
 
39
class LocaleUtils: public QObject
 
40
{
 
41
    Q_OBJECT
 
42
 
 
43
public:
 
44
    explicit LocaleUtils(QObject *parent = 0);
 
45
    virtual ~LocaleUtils();
 
46
 
 
47
    static LocaleUtils *self();
 
48
 
 
49
    Q_INVOKABLE QStringList getAddressFieldOrder() const;
 
50
    Q_INVOKABLE bool needPronounciationFields() const;
 
51
    Q_INVOKABLE QStringList getIndexBarChars();
 
52
 
 
53
    int compare(QString lStr, QString rStr);
 
54
    bool isLessThan(QString lStr, QString rStr);
 
55
    bool checkForAlphaChar(QString str);
 
56
    Q_INVOKABLE QString getExemplarForString(QString str);
 
57
    QString getBinForString(QString str);
 
58
    QLocale::Country getCountry() const;
 
59
    int defaultSortVal() const;
 
60
    int defaultDisplayVal() const;
 
61
 
 
62
protected:
 
63
    QString getLanguage() const;
 
64
    bool usePhoneBookCol() const;
 
65
    int defaultValues(QString type) const;
 
66
 
 
67
private:
 
68
    static LocaleUtils *mSelf;
 
69
};
 
70
 
 
71
#endif // LOCALEUTILS_H