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
|
/* This file is part of the KDE project
Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
Copyright 2002, 2003 David Faure <faure@kde.org>
Copyright 2003 Nicolas GOUTTE <goutte@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KOGLOBAL_H
#define KOGLOBAL_H
#include <QStringList>
#include <QFont>
#include <QMap>
#include "kowidgets_export.h"
class KConfig;
class KOWIDGETS_EXPORT KoGlobal
{
public:
KoGlobal();
/// For KoApplication
static void initialize() {
(void)self(); // I don't want to make KGlobal instances public, so self() is private
}
/**
* Return the default font for Calligra programs.
* This is (currently) the same as the KDE-global default font,
* except that it is guaranteed to have a point size set,
* never a pixel size (see @ref QFont).
*/
static QFont defaultFont() {
return self()->_defaultFont();
}
/**
* @return the global KConfig object around calligrarc.
* calligrarc is used for Calligra-wide settings, from totally unrelated classes,
* so this is the centralization of the KConfig object so that the file is
* parsed only once
*/
static KConfig* calligraConfig() {
return self()->_calligraConfig();
}
/// Return the list of available languages, in their displayable form
/// (translated names)
static QStringList listOfLanguages() {
return self()->_listOfLanguages();
}
/// Return the list of available languages, in their internal form
/// e.g. "fr" or "en_US", here called "tag"
static QStringList listOfLanguageTags() {
return self()->_listOfLanguageTags();
}
/// For a given language display name, return its tag
static QString tagOfLanguage(const QString & _lang);
/// For a given language tag, return its display name
static QString languageFromTag(const QString &_lang);
~KoGlobal();
private:
static KoGlobal* self();
QFont _defaultFont();
QStringList _listOfLanguages();
QStringList _listOfLanguageTags();
KConfig* _calligraConfig();
void createListOfLanguages();
int m_pointSize;
typedef QMap<QString, QString> LanguageMap;
LanguageMap m_langMap; // display-name -> language tag
KConfig* m_calligraConfig;
// No BC problem here, constructor is private, feel free to add members
friend class this_is_a_singleton; // work around gcc warning
};
#endif // KOGLOBAL
|