File indexing completed on 2025-01-19 10:49:09
0001 /* 0002 * This file is part of Office 2007 Filters for Calligra 0003 * SPDX-FileCopyrightText: 2002 Laurent Montel <lmontel@mandrakesoft.com> 0004 * SPDX-FileCopyrightText: 2003 Lukas Tinkl <lukas@kde.org> 0005 * SPDX-FileCopyrightText: 2003 David Faure <faure@kde.org> 0006 * SPDX-FileCopyrightText: 2009-2010 Nokia Corporation and /or its subsidiary(-ies). 0007 * 0008 * Contact: Suresh Chande suresh.chande@nokia.com 0009 * 0010 * SPDX-License-Identifier: LGPL-2.1-only 0011 * 0012 */ 0013 0014 #ifndef MSOUTILS_H 0015 #define MSOUTILS_H 0016 0017 #include <QColor> 0018 #include <QLocale> 0019 0020 namespace MSO 0021 { 0022 0023 //! @return QColor value for DefaultIndexColor 0024 QColor defaultIndexedColor( int index ); 0025 0026 //! @return QLocale for the give language id 0027 QLocale localeForLangId(int langid); 0028 0029 0030 }; // namespace MSO 0031 0032 0033 #endif /* MSOUTILS_H */