/usr/include/KF5/KJsEmbed/kjsembed/kjseglobal.h is in libkf5jsembed-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | /* This file is part of the KDE libraries
Copyright (C) 2004,2005,2006 Ian Reinhart Geiser <geiseri@kde.org>
Copyright (C) 2004,2005,2006 Matt Broadstone <mbroadst@gmail.com>
Copyright (C) 2004,2005,2006 Richard J. Moore <rich@kde.org>
Copyright (C) 2004,2005,2006 Erik L. Bunce <kde@bunce.us>
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 KJSEGLOBAL_H
#define KJSEGLOBAL_H
#include <kjsembed_export.h>
#include <qglobal.h>
#if !defined(Q_OS_WIN)
#include <stdlib.h>
#include <ctype.h>
namespace KJSEmbed
{
KJSEMBED_EXPORT void RedirectIOToConsole();
}
#endif
#include <QtCore/QTextStream>
namespace KJSEmbed
{
KJSEMBED_EXPORT QTextStream *conin();
KJSEMBED_EXPORT QTextStream *conout();
KJSEMBED_EXPORT QTextStream *conerr();
}
#include <kjs/ustring.h>
#include <kjs/identifier.h>
#include <kjs/value.h>
namespace KJSEmbed
{
inline QString toQString(const KJS::UString &u)
{
return QString((QChar *)u.data(), u.size());
}
inline QString toQString(const KJS::Identifier &i)
{
return QString((QChar *)i.data(), i.size());
}
inline KJS::UString toUString(const QString &qs)
{
return KJS::UString((KJS::UChar *)qs.data(), qs.size());
}
}
namespace KJS
{
inline KJS::JSCell *jsString(const QString &s)
{
return jsString(KJSEmbed::toUString(s));
}
}
#ifndef QT_ONLY
/*
* These are the normal definitions used when KDE is available.
*/
#include <QDebug>
#include <klocalizedstring.h>
#else // QT_ONLY
/*
* These are the custom definitions used when we only have Qt.
*/
KJSEMBED_EXPORT QTextStream &kdDebug(int area = 0);
KJSEMBED_EXPORT QTextStream &kdWarning(int area = 0);
#ifndef NO_I18N
KJSEMBED_EXPORT QString i18n(const char *string);
#else
#define i18n(x) QString(x)
#endif // NO_I18N
inline KJSEMBED_EXPORT QString i18n(const QString &string, const QString &comment)
{
return i18n(string.toUtf8().data(), comment.toUtf8().data());
}
template <typename A1>
inline QString i18n(const char *text, const A1 &a1)
{
return i18n(text).arg(a1);
}
template <typename A1, typename A2>
inline QString i18n(const char *text, const A1 &a1, const A2 &a2)
{
return i18n(text).arg(a1).arg(a2);
}
template <typename A1, typename A2, typename A3>
inline QString i18n(const char *text, const A1 &a1, const A2 &a2, const A3 &a3)
{
return i18n(text).arg(a1).arg(a2).arg(a3);
}
template <typename A1, typename A2, typename A3, typename A4>
inline QString i18n(const char *text, const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4)
{
return i18n(text).arg(a1).arg(a2).arg(a3).arg(a4);
}
#endif // QT_ONLY
#endif // KJSEGLOBAL_H
|