Convert features.fontdialog to QT_[REQUIRE_]CONFIG
Change-Id: Iebc091ffd023595278fa177b7f205b6e0cd7ec52 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
parent
93dc459f48
commit
3906043f05
@ -20,7 +20,6 @@ OBJECTIVE_SOURCES += main.mm \
|
||||
qmultitouch_mac.mm \
|
||||
qcocoaaccessibilityelement.mm \
|
||||
qcocoaaccessibility.mm \
|
||||
qcocoafontdialoghelper.mm \
|
||||
qcocoacursor.mm \
|
||||
qcocoaclipboard.mm \
|
||||
qcocoadrag.mm \
|
||||
@ -53,7 +52,6 @@ HEADERS += qcocoaintegration.h \
|
||||
qmultitouch_mac_p.h \
|
||||
qcocoaaccessibilityelement.h \
|
||||
qcocoaaccessibility.h \
|
||||
qcocoafontdialoghelper.h \
|
||||
qcocoacursor.h \
|
||||
qcocoaclipboard.h \
|
||||
qcocoadrag.h \
|
||||
@ -109,6 +107,11 @@ qtHaveModule(widgets) {
|
||||
HEADERS += qcocoafiledialoghelper.h
|
||||
}
|
||||
|
||||
qtConfig(fontdialog) {
|
||||
SOURCES += qcocoafontdialoghelper.mm
|
||||
HEADERS += qcocoafontdialoghelper.h
|
||||
}
|
||||
|
||||
QT += widgets-private printsupport-private
|
||||
}
|
||||
|
||||
|
@ -41,8 +41,11 @@
|
||||
#define QCOCOAFONTDIALOGHELPER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QtWidgets/qtwidgetsglobal.h>
|
||||
#include <qpa/qplatformdialoghelper.h>
|
||||
|
||||
QT_REQUIRE_CONFIG(fontdialog);
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QCocoaFontDialogHelper : public QPlatformFontDialogHelper
|
||||
|
@ -37,8 +37,6 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
|
||||
#include <QtCore/qtimer.h>
|
||||
#include <QtGui/qfontdatabase.h>
|
||||
#include <qpa/qplatformtheme.h>
|
||||
@ -402,5 +400,3 @@ QFont QCocoaFontDialogHelper::currentFont() const
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QT_NO_FONTDIALOG
|
||||
|
@ -44,7 +44,6 @@
|
||||
|
||||
#include <QtCore/QVariant>
|
||||
|
||||
#include "qcocoafontdialoghelper.h"
|
||||
#include "qcocoasystemsettings.h"
|
||||
#include "qcocoasystemtrayicon.h"
|
||||
#include "qcocoamenuitem.h"
|
||||
@ -69,6 +68,9 @@
|
||||
#if QT_CONFIG(filedialog)
|
||||
#include "qcocoafiledialoghelper.h"
|
||||
#endif
|
||||
#if QT_CONFIG(fontdialog)
|
||||
#include "qcocoafontdialoghelper.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <Carbon/Carbon.h>
|
||||
@ -136,7 +138,7 @@ bool QCocoaTheme::usePlatformNativeDialog(DialogType dialogType) const
|
||||
if (dialogType == QPlatformTheme::ColorDialog)
|
||||
return true;
|
||||
#endif
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
#if defined(QT_WIDGETS_LIB) && QT_CONFIG(fontdialog)
|
||||
if (dialogType == QPlatformTheme::FontDialog)
|
||||
return true;
|
||||
#endif
|
||||
@ -154,7 +156,7 @@ QPlatformDialogHelper * QCocoaTheme::createPlatformDialogHelper(DialogType dialo
|
||||
case QPlatformTheme::ColorDialog:
|
||||
return new QCocoaColorDialogHelper();
|
||||
#endif
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
#if defined(QT_WIDGETS_LIB) && QT_CONFIG(fontdialog)
|
||||
case QPlatformTheme::FontDialog:
|
||||
return new QCocoaFontDialogHelper();
|
||||
#endif
|
||||
|
@ -1,12 +1,6 @@
|
||||
# Qt dialogs module
|
||||
|
||||
HEADERS += \
|
||||
dialogs/qfontdialog.h \
|
||||
dialogs/qfontdialog_p.h
|
||||
|
||||
INCLUDEPATH += $$PWD
|
||||
SOURCES += \
|
||||
dialogs/qfontdialog.cpp
|
||||
|
||||
qtConfig(colordialog) {
|
||||
HEADERS += dialogs/qcolordialog.h
|
||||
@ -51,6 +45,14 @@ qtConfig(filesystemmodel) {
|
||||
dialogs/qfileinfogatherer.cpp
|
||||
}
|
||||
|
||||
qtConfig(fontdialog) {
|
||||
HEADERS += \
|
||||
dialogs/qfontdialog.h \
|
||||
dialogs/qfontdialog_p.h
|
||||
|
||||
SOURCES += dialogs/qfontdialog.cpp
|
||||
}
|
||||
|
||||
qtConfig(fscompleter) {
|
||||
HEADERS += dialogs/qfscompleter_p.h
|
||||
}
|
||||
|
@ -41,7 +41,9 @@
|
||||
#if QT_CONFIG(colordialog)
|
||||
#include "qcolordialog.h"
|
||||
#endif
|
||||
#if QT_CONFIG(fontdialog)
|
||||
#include "qfontdialog.h"
|
||||
#endif
|
||||
#if QT_CONFIG(filedialog)
|
||||
#include "qfiledialog.h"
|
||||
#endif
|
||||
@ -81,7 +83,7 @@ static inline int themeDialogType(const QDialog *dialog)
|
||||
if (qobject_cast<const QColorDialog *>(dialog))
|
||||
return QPlatformTheme::ColorDialog;
|
||||
#endif
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
#if QT_CONFIG(fontdialog)
|
||||
if (qobject_cast<const QFontDialog *>(dialog))
|
||||
return QPlatformTheme::FontDialog;
|
||||
#endif
|
||||
|
@ -40,8 +40,6 @@
|
||||
#include "qwindowdefs.h"
|
||||
#include "qfontdialog.h"
|
||||
|
||||
#if QT_CONFIG(fontdialog)
|
||||
|
||||
#include "qfontdialog_p.h"
|
||||
|
||||
#include <qapplication.h>
|
||||
@ -1049,5 +1047,3 @@ QT_END_NAMESPACE
|
||||
|
||||
#include "qfontdialog.moc"
|
||||
#include "moc_qfontdialog.cpp"
|
||||
|
||||
#endif // QT_CONFIG(fontdialog)
|
||||
|
@ -44,12 +44,11 @@
|
||||
#include <QtGui/qwindowdefs.h>
|
||||
#include <QtGui/qfont.h>
|
||||
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
|
||||
#include <QtWidgets/qdialog.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
QT_REQUIRE_CONFIG(fontdialog);
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
class QFontDialogPrivate;
|
||||
|
||||
@ -120,6 +119,4 @@ Q_DECLARE_OPERATORS_FOR_FLAGS(QFontDialog::FontDialogOptions)
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QT_NO_FONTDIALOG
|
||||
|
||||
#endif // QFONTDIALOG_H
|
||||
|
@ -59,7 +59,7 @@
|
||||
#include <qpa/qplatformdialoghelper.h>
|
||||
#include "qsharedpointer.h"
|
||||
|
||||
#ifndef QT_NO_FONTDIALOG
|
||||
QT_REQUIRE_CONFIG(fontdialog);
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
@ -149,8 +149,6 @@ private:
|
||||
virtual void helperPrepareShow(QPlatformDialogHelper *) Q_DECL_OVERRIDE;
|
||||
};
|
||||
|
||||
#endif // QT_NO_FONTDIALOG
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QFONTDIALOG_P_H
|
||||
|
Loading…
Reference in New Issue
Block a user