Further followup to Q_OS_MACX changes.
Flip !Q_OS_IOS conditions to Q_OS_MACX where it seems appropriate, remove a redundant condition in qtextcodec_p.h. Change-Id: I21c8c0c490f1eb4a9337a7f2f3e907c125489438 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
This commit is contained in:
parent
78fe2b145e
commit
f125fa5541
@ -60,7 +60,7 @@ QT_BEGIN_NAMESPACE
|
|||||||
|
|
||||||
#ifndef QT_NO_TEXTCODEC
|
#ifndef QT_NO_TEXTCODEC
|
||||||
|
|
||||||
#if defined(Q_OS_MAC) || defined(Q_OS_IOS) || defined(Q_OS_ANDROID) || defined(Q_OS_QNX)
|
#if defined(Q_OS_MAC) || defined(Q_OS_ANDROID) || defined(Q_OS_QNX)
|
||||||
#define QT_LOCALE_IS_UTF8
|
#define QT_LOCALE_IS_UTF8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1694,7 +1694,7 @@ Q_CORE_EXPORT QString qt_mac_from_pascal_string(const Str255 pstr) {
|
|||||||
|
|
||||||
QSysInfo::MacVersion QSysInfo::macVersion()
|
QSysInfo::MacVersion QSysInfo::macVersion()
|
||||||
{
|
{
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
SInt32 gestalt_version;
|
SInt32 gestalt_version;
|
||||||
if (Gestalt(gestaltSystemVersion, &gestalt_version) == noErr) {
|
if (Gestalt(gestaltSystemVersion, &gestalt_version) == noErr) {
|
||||||
return QSysInfo::MacVersion(((gestalt_version & 0x00F0) >> 4) + 2);
|
return QSysInfo::MacVersion(((gestalt_version & 0x00F0) >> 4) + 2);
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
#include "qglobal.h"
|
#include "qglobal.h"
|
||||||
|
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
#include <CoreServices/CoreServices.h>
|
#include <CoreServices/CoreServices.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@
|
|||||||
# define old_qDebug qDebug
|
# define old_qDebug qDebug
|
||||||
# undef qDebug
|
# undef qDebug
|
||||||
# endif
|
# endif
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
# include <CoreServices/CoreServices.h>
|
# include <CoreServices/CoreServices.h>
|
||||||
#endif //Q_OS_IOS
|
#endif // Q_OS_MACX
|
||||||
|
|
||||||
# ifdef old_qDebug
|
# ifdef old_qDebug
|
||||||
# undef qDebug
|
# undef qDebug
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
#include "qglobal.h"
|
#include "qglobal.h"
|
||||||
|
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
#import <IOKit/graphics/IOGraphicsLib.h>
|
#import <IOKit/graphics/IOGraphicsLib.h>
|
||||||
#endif
|
#endif
|
||||||
@ -107,7 +107,7 @@ static NSInteger languageMapSort(id obj1, id obj2, void *context)
|
|||||||
|
|
||||||
QCoreTextFontDatabase::QCoreTextFontDatabase()
|
QCoreTextFontDatabase::QCoreTextFontDatabase()
|
||||||
{
|
{
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
QSettings appleSettings(QLatin1String("apple.com"));
|
QSettings appleSettings(QLatin1String("apple.com"));
|
||||||
QVariant appleValue = appleSettings.value(QLatin1String("AppleAntiAliasingThreshold"));
|
QVariant appleValue = appleSettings.value(QLatin1String("AppleAntiAliasingThreshold"));
|
||||||
if (appleValue.isValid())
|
if (appleValue.isValid())
|
||||||
@ -408,7 +408,7 @@ QStringList QCoreTextFontDatabase::fallbacksForFamily(const QString &family, QFo
|
|||||||
|
|
||||||
static bool didPopulateStyleFallbacks = false;
|
static bool didPopulateStyleFallbacks = false;
|
||||||
if (!didPopulateStyleFallbacks) {
|
if (!didPopulateStyleFallbacks) {
|
||||||
#if !defined(Q_OS_IOS)
|
#if defined(Q_OS_MACX)
|
||||||
// Ensure we have the psNameToFamily mapping set up
|
// Ensure we have the psNameToFamily mapping set up
|
||||||
const_cast<QCoreTextFontDatabase*>(this)->populateFontDatabase();
|
const_cast<QCoreTextFontDatabase*>(this)->populateFontDatabase();
|
||||||
|
|
||||||
@ -457,7 +457,7 @@ QStringList QCoreTextFontDatabase::fallbacksForFamily(const QString &family, QFo
|
|||||||
return fallbackLists[styleLookupKey.arg(styleHint)];
|
return fallbackLists[styleLookupKey.arg(styleHint)];
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
QStringList QCoreTextFontDatabase::addApplicationFont(const QByteArray &fontData, const QString &fileName)
|
QStringList QCoreTextFontDatabase::addApplicationFont(const QByteArray &fontData, const QString &fileName)
|
||||||
{
|
{
|
||||||
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_8
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_8
|
||||||
|
@ -55,7 +55,7 @@ public:
|
|||||||
QFontEngine *fontEngine(const QFontDef &fontDef, QChar::Script script, void *handle);
|
QFontEngine *fontEngine(const QFontDef &fontDef, QChar::Script script, void *handle);
|
||||||
QFontEngine *fontEngine(const QByteArray &fontData, qreal pixelSize, QFont::HintingPreference hintingPreference);
|
QFontEngine *fontEngine(const QByteArray &fontData, qreal pixelSize, QFont::HintingPreference hintingPreference);
|
||||||
QStringList fallbacksForFamily(const QString &family, QFont::Style style, QFont::StyleHint styleHint, QChar::Script script) const;
|
QStringList fallbacksForFamily(const QString &family, QFont::Style style, QFont::StyleHint styleHint, QChar::Script script) const;
|
||||||
#ifndef Q_OS_IOS
|
#ifdef Q_OS_MACX
|
||||||
QStringList addApplicationFont(const QByteArray &fontData, const QString &fileName);
|
QStringList addApplicationFont(const QByteArray &fontData, const QString &fileName);
|
||||||
#endif
|
#endif
|
||||||
void releaseHandle(void *handle);
|
void releaseHandle(void *handle);
|
||||||
|
@ -380,7 +380,7 @@ void tst_QNetworkProxyFactory::genericSystemProxy()
|
|||||||
QFETCH(int, port);
|
QFETCH(int, port);
|
||||||
|
|
||||||
// The generic system proxy is only available on the following platforms
|
// The generic system proxy is only available on the following platforms
|
||||||
#if (!defined Q_OS_BLACKBERRY) && (!defined Q_OS_WIN) && ((!defined Q_OS_MAC) || defined Q_OS_IOS)
|
#if (!defined Q_OS_BLACKBERRY) && (!defined Q_OS_WIN) && (!defined Q_OS_MACX)
|
||||||
qputenv(envVar, url);
|
qputenv(envVar, url);
|
||||||
const QList<QNetworkProxy> systemProxy = QNetworkProxyFactory::systemProxyForQuery();
|
const QList<QNetworkProxy> systemProxy = QNetworkProxyFactory::systemProxyForQuery();
|
||||||
QCOMPARE(systemProxy.size(), 1);
|
QCOMPARE(systemProxy.size(), 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user