File indexing completed on 2024-04-21 03:41:54

0001 // SPDX-FileCopyrightText: 2007 Pino Toscano <pino@kde.org>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 #ifndef LANGUTILS_H
0005 #define LANGUTILS_H
0006 
0007 #include <QFont>
0008 
0009 class LangUtils
0010 {
0011 public:
0012     static bool hasSpecialChars(const QString& lang);
0013     static QFont fontForLanguage(const QString& lang);
0014     static QString capitalize(const QString& str, const QString& lang);
0015 };
0016 
0017 #endif
0018 
0019 // kate: space-indent on; tab-width 4; indent-width 4; mixed-indent off; replace-tabs on;
0020 // vim: set et sw=4 ts=4 cino=l1,cs,U1:
0021