kdelibs/kdecore/localization/kuitsemantics_p.h
Ivailo Monev bd063c8b56 generic: remove dead and irrelevant links references
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-08-10 14:26:19 +03:00

76 lines
2.1 KiB
C++

/* This file is part of the KDE libraries
Copyright (C) 2007 Chusslove Illich <caslav.ilic@gmx.net>
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 KUITSEMANTICS_P_H
#define KUITSEMANTICS_P_H
#include <QString>
class KuitSemantics;
class KuitSemanticsPrivate;
/**
* @internal
* (used by KLocalizedString)
*
* KuitSemantics resolves semantic markup in user interface text
* into appropriate visual formatting.
*
* @author Chusslove Illich <caslav.ilic@gmx.net>
* @short class for formatting semantic markup in UI messages
*/
class KuitSemantics
{
public:
/**
* Constructor.
*
* @param lang language to create the formatter for
*/
KuitSemantics (const QString &lang);
/**
* Transforms the semantic markup in the given text into visual formatting.
* The appropriate visual formatting is decided based on the semantic
* context marker provided in the context string.
*
* @param text text containing the semantic markup
* @param ctxt context of the text
*/
QString format (const QString &text, const QString &ctxt) const;
/**
* Destructor.
*/
~KuitSemantics ();
private:
KuitSemantics (const KuitSemantics &t);
KuitSemantics &operator= (const KuitSemantics &t);
KuitSemanticsPrivate *d;
};
// Some stuff needed in klocalizedstring.cpp too.
#define KUIT_NUMINTG "numintg"
#define KUIT_NUMREAL "numreal"
#endif