Warning, file /education/khangman/src/langutils.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /************************************************************************
0002  * Copyright 2007      Pino Toscano <pino@kde.org>                      *
0003  *                                                                      *
0004  * This program is free software; you can redistribute it and/or modify *
0005  * it under the terms of the GNU General Public License as published by *
0006  * the Free Software Foundation; either version 2 of the License, or    *
0007  * (at your option) any later version.                                  *
0008  ************************************************************************/
0009 
0010 #ifndef LANGUTILS_H
0011 #define LANGUTILS_H
0012 
0013 #include <QFont>
0014 
0015 class LangUtils
0016 {
0017 public:
0018     static bool hasSpecialChars(const QString& lang);
0019     static QFont fontForLanguage(const QString& lang);
0020     static QString capitalize(const QString& str, const QString& lang);
0021 };
0022 
0023 #endif
0024 
0025 // kate: space-indent on; tab-width 4; indent-width 4; mixed-indent off; replace-tabs on;
0026 // vim: set et sw=4 ts=4 cino=l1,cs,U1:
0027