File indexing completed on 2025-01-19 10:49:09

0001 /*
0002  * This file is part of Office 2007 Filters for Calligra
0003  *
0004  * SPDX-FileCopyrightText: 2010 Nokia Corporation and /or its subsidiary(-ies).
0005  *
0006  * Contact: Christoph Schleifenbaum christoph@kdab.com
0007  *
0008  * SPDX-License-Identifier: LGPL-2.1-only
0009  *
0010  */
0011 #ifndef NUMBERFORMATPARSER_H
0012 #define NUMBERFORMATPARSER_H
0013 
0014 #include <KoGenStyle.h>
0015 
0016 class QColor;
0017 class QLocale;
0018 class QString;
0019 class KoGenStyles;
0020 
0021 class NumberFormatParser
0022 {
0023 public:
0024     static QColor color(const QString& name);
0025     static QLocale locale(int langid);
0026 
0027     static KoGenStyle parse(const QString& numberFormat, KoGenStyles* styles = 0,
0028                 KoGenStyle::Type type = KoGenStyle::ParagraphAutoStyle);
0029     static bool isDateFormat(const QString& numberFormat);
0030 };
0031 
0032 #endif