feat: Add static functions, inline functions, overloaded functions, and custom enumerations
This commit is contained in:
parent
c504b9086b
commit
8b38169dc0
@ -20,72 +20,71 @@ void ExCustomStyle::drawPrimitive(const QStyle *style, ExCustomStyle::PrimitiveE
|
|||||||
|
|
||||||
void ExCustomStyle::drawControl(const QStyle *style, ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)
|
void ExCustomStyle::drawControl(const QStyle *style, ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)
|
||||||
{
|
{
|
||||||
}
|
switch (element) {
|
||||||
|
// case CE_IconButton:
|
||||||
QRect ExCustomStyle::subElementRect(const QStyle *style, ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget)
|
|
||||||
{
|
|
||||||
return QRect();
|
|
||||||
}
|
|
||||||
|
|
||||||
QSize ExCustomStyle::sizeFromContents(const QStyle *style, ExCustomStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w)
|
|
||||||
{
|
|
||||||
return QSize();
|
|
||||||
}
|
|
||||||
|
|
||||||
QIcon ExCustomStyle::standardIcon(const QStyle *style, ExCustomStyle::StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget)
|
|
||||||
{
|
|
||||||
return QIcon();
|
|
||||||
}
|
|
||||||
|
|
||||||
//内联inline的函数+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
//实际上,只需要在实现处添加inline,声明出不需要写inline
|
|
||||||
inline void ExCustomStyle::drawPrimitive(ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) const
|
|
||||||
{
|
|
||||||
proxy()->drawPrimitive(static_cast<QStyle::PrimitiveElement>(pe), opt, p, w);
|
|
||||||
}
|
|
||||||
|
|
||||||
inline void ExCustomStyle::drawControl(ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) const
|
|
||||||
{
|
|
||||||
proxy()->drawControl(static_cast<QStyle::ControlElement>(element), opt, p, w);
|
|
||||||
}
|
|
||||||
|
|
||||||
inline QRect ExCustomStyle::subElementRect(ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget) const
|
|
||||||
{
|
|
||||||
proxy()->subElementRect(static_cast<QStyle::SubElement>(subElement), option, widget);
|
|
||||||
}
|
|
||||||
|
|
||||||
<<<<<<< Updated upstream
|
|
||||||
//静态static的函数+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
void ExCustomStyle::drawPrimitive(const QStyle *style, ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w)
|
|
||||||
{
|
|
||||||
// DStyleHelper dstyle(style);
|
|
||||||
|
|
||||||
switch (pe) {
|
|
||||||
// case value:
|
|
||||||
// break;
|
// break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ExCustomStyle::drawControl(const QStyle *style, ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w)
|
int ExCustomStyle::pixelMetric(const QStyle *style, QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget)
|
||||||
{
|
{
|
||||||
|
//全部都是return 一个数值
|
||||||
|
// DStyleHelper dstyle(style);
|
||||||
|
switch (metric) {
|
||||||
|
case PM_FrameRadius:
|
||||||
|
|
||||||
|
return 8;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QRect ExCustomStyle::subElementRect(const QStyle *style, ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget)
|
QRect ExCustomStyle::subElementRect(const QStyle *style, ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget)
|
||||||
{
|
{
|
||||||
return QRect();
|
switch (subElement) {
|
||||||
|
// case SE_SwitchButtonGroove: {
|
||||||
|
// return option->rect;
|
||||||
|
// }
|
||||||
|
default:
|
||||||
|
return QRect(-1, -1, -1, -1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize ExCustomStyle::sizeFromContents(const QStyle *style, ExCustomStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w)
|
QSize ExCustomStyle::sizeFromContents(const QStyle *style, ExCustomStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w)
|
||||||
{
|
{
|
||||||
return QSize();
|
switch (ct) {
|
||||||
|
// case CT_ButtonBoxButton: {
|
||||||
|
// QSize size(100, 100);
|
||||||
|
// return size;
|
||||||
|
// }
|
||||||
|
default:
|
||||||
|
return contentsSize;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QIcon ExCustomStyle::standardIcon(const QStyle *style, ExCustomStyle::StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget)
|
QIcon ExCustomStyle::standardIcon(const QStyle *style, ExCustomStyle::StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget)
|
||||||
{
|
{
|
||||||
|
//使用宏, 来表示方便和快捷
|
||||||
|
#define CASE_ICON(Value) \
|
||||||
|
case SP_##Value: { \
|
||||||
|
DStyledIconEngine *icon_engine = new DStyledIconEngine(DDrawUtils::draw##Value, QStringLiteral(#Value)); \
|
||||||
|
return QIcon(icon_engine); }
|
||||||
|
|
||||||
|
switch (standardIcon) {
|
||||||
|
// CASE_ICON(ForkElement)
|
||||||
|
// CASE_ICON(DecreaseElement)
|
||||||
|
// CASE_ICON(IncreaseElement)
|
||||||
|
// CASE_ICON(MarkElement)
|
||||||
|
// case SP_EditElement:
|
||||||
|
// return QIcon::fromTheme("edit");
|
||||||
|
// case SP_MediaVolumeLowElement:
|
||||||
|
// return QIcon::fromTheme("volume_low");
|
||||||
|
default:
|
||||||
return QIcon();
|
return QIcon();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//内联inline的函数+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
//内联inline的函数+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
//实际上,只需要在实现处添加inline,声明出不需要写inline
|
//实际上,只需要在实现处添加inline,声明出不需要写inline
|
||||||
@ -104,8 +103,6 @@ inline QRect ExCustomStyle::subElementRect(ExCustomStyle::SubElement subElement,
|
|||||||
proxy()->subElementRect(static_cast<QStyle::SubElement>(subElement), option, widget);
|
proxy()->subElementRect(static_cast<QStyle::SubElement>(subElement), option, widget);
|
||||||
}
|
}
|
||||||
|
|
||||||
=======
|
|
||||||
>>>>>>> Stashed changes
|
|
||||||
inline int ExCustomStyle::pixelMetric(ExCustomStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) const
|
inline int ExCustomStyle::pixelMetric(ExCustomStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget) const
|
||||||
{
|
{
|
||||||
proxy()->pixelMetric(static_cast<QStyle::PixelMetric>(metric), option, widget);
|
proxy()->pixelMetric(static_cast<QStyle::PixelMetric>(metric), option, widget);
|
||||||
|
@ -82,12 +82,13 @@ public:
|
|||||||
//静态static函数
|
//静态static函数
|
||||||
static void drawPrimitive(const QStyle *style, ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w);
|
static void drawPrimitive(const QStyle *style, ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w);
|
||||||
static void drawControl(const QStyle *style, ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w);
|
static void drawControl(const QStyle *style, ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w);
|
||||||
|
static int pixelMetric(const QStyle *style, QStyle::PixelMetric metric, const QStyleOption *option, const QWidget *widget);
|
||||||
static QRect subElementRect(const QStyle *style, ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget);
|
static QRect subElementRect(const QStyle *style, ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget);
|
||||||
static QSize sizeFromContents(const QStyle *style, ExCustomStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w);
|
static QSize sizeFromContents(const QStyle *style, ExCustomStyle::ContentsType ct, const QStyleOption *opt, const QSize &contentsSize, const QWidget *w);
|
||||||
static QIcon standardIcon(const QStyle *style, ExCustomStyle::StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget);
|
static QIcon standardIcon(const QStyle *style, ExCustomStyle::StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget);
|
||||||
|
|
||||||
|
|
||||||
//内联inline函数,然后自己选择是调用静态函数,还是重写的基类的函数
|
//内联inline函数,然后[自动选择]是调用静态函数,还是重写的基类的函数
|
||||||
inline void drawPrimitive(ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) const;
|
inline void drawPrimitive(ExCustomStyle::PrimitiveElement pe, const QStyleOption *opt, QPainter *p, const QWidget *w) const;
|
||||||
inline void drawControl(ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) const;
|
inline void drawControl(ExCustomStyle::ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *w) const;
|
||||||
inline QRect subElementRect(ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget) const;
|
inline QRect subElementRect(ExCustomStyle::SubElement subElement, const QStyleOption *option, const QWidget *widget) const;
|
||||||
|
BIN
QtCustomStyleEx/qt.ico
Normal file → Executable file
BIN
QtCustomStyleEx/qt.ico
Normal file → Executable file
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -0,0 +1,42 @@
|
|||||||
|
QMAKE_MAC_SDK.macosx.Path = /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk
|
||||||
|
QMAKE_MAC_SDK.macosx.SDKVersion = 10.14.6
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_CC = /Library/Developer/CommandLineTools/usr/bin/clang
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_CXX = /Library/Developer/CommandLineTools/usr/bin/clang++
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_FIX_RPATH = \
|
||||||
|
/Library/Developer/CommandLineTools/usr/bin/install_name_tool \
|
||||||
|
-id
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_AR = \
|
||||||
|
/Library/Developer/CommandLineTools/usr/bin/ar \
|
||||||
|
cq
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_RANLIB = \
|
||||||
|
/Library/Developer/CommandLineTools/usr/bin/ranlib \
|
||||||
|
-s
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK = /Library/Developer/CommandLineTools/usr/bin/clang++
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK_SHLIB = /Library/Developer/CommandLineTools/usr/bin/clang++
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK_C = /Library/Developer/CommandLineTools/usr/bin/clang
|
||||||
|
QMAKE_MAC_SDK.macx-clang.macosx.QMAKE_LINK_C_SHLIB = /Library/Developer/CommandLineTools/usr/bin/clang
|
||||||
|
QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
|
||||||
|
QMAKE_CXX.QMAKE_APPLE_CC = 6000
|
||||||
|
QMAKE_CXX.QMAKE_APPLE_CLANG_MAJOR_VERSION = 10
|
||||||
|
QMAKE_CXX.QMAKE_APPLE_CLANG_MINOR_VERSION = 0
|
||||||
|
QMAKE_CXX.QMAKE_APPLE_CLANG_PATCH_VERSION = 1
|
||||||
|
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 4
|
||||||
|
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 2
|
||||||
|
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 1
|
||||||
|
QMAKE_CXX.COMPILER_MACROS = \
|
||||||
|
QT_COMPILER_STDCXX \
|
||||||
|
QMAKE_APPLE_CC \
|
||||||
|
QMAKE_APPLE_CLANG_MAJOR_VERSION \
|
||||||
|
QMAKE_APPLE_CLANG_MINOR_VERSION \
|
||||||
|
QMAKE_APPLE_CLANG_PATCH_VERSION \
|
||||||
|
QMAKE_GCC_MAJOR_VERSION \
|
||||||
|
QMAKE_GCC_MINOR_VERSION \
|
||||||
|
QMAKE_GCC_PATCH_VERSION
|
||||||
|
QMAKE_CXX.INCDIRS = \
|
||||||
|
/Library/Developer/CommandLineTools/usr/include/c++/v1 \
|
||||||
|
/Library/Developer/CommandLineTools/usr/lib/clang/10.0.1/include \
|
||||||
|
/Library/Developer/CommandLineTools/usr/include \
|
||||||
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include
|
||||||
|
QMAKE_CXX.LIBDIRS = /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/lib
|
||||||
|
QMAKE_MAC_SDK.macosx.SDKVersion = 10.14.6
|
||||||
|
QMAKE_XCODE_DEVELOPER_PATH = /Library/Developer/CommandLineTools
|
@ -0,0 +1,858 @@
|
|||||||
|
#############################################################################
|
||||||
|
# Makefile for building: QtCustomStyleEx.app/Contents/MacOS/QtCustomStyleEx
|
||||||
|
# Generated by qmake (3.1) (Qt 5.12.5)
|
||||||
|
# Project: ../QtCustomStyleEx/QtCustomStyleEx.pro
|
||||||
|
# Template: app
|
||||||
|
# Command: /Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/qmake -o Makefile ../QtCustomStyleEx/QtCustomStyleEx.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 CONFIG+=qml_debug
|
||||||
|
#############################################################################
|
||||||
|
|
||||||
|
MAKEFILE = Makefile
|
||||||
|
|
||||||
|
EQ = =
|
||||||
|
|
||||||
|
####### Compiler, tools and options
|
||||||
|
|
||||||
|
CC = /Library/Developer/CommandLineTools/usr/bin/clang
|
||||||
|
CXX = /Library/Developer/CommandLineTools/usr/bin/clang++
|
||||||
|
DEFINES = -DQT_DEPRECATED_WARNINGS -DQT_QML_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
|
||||||
|
CFLAGS = -pipe -g $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.12 -Wall -W -fPIC $(DEFINES)
|
||||||
|
CXXFLAGS = -pipe -stdlib=libc++ -g -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.12 -Wall -W -fPIC $(DEFINES)
|
||||||
|
INCPATH = -I../QtCustomStyleEx -I. -I../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers -I../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers -I../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers -I. -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AGL.framework/Headers -I. -I../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang -F/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib
|
||||||
|
QMAKE = /Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/qmake
|
||||||
|
DEL_FILE = rm -f
|
||||||
|
CHK_DIR_EXISTS= test -d
|
||||||
|
MKDIR = mkdir -p
|
||||||
|
COPY = cp -f
|
||||||
|
COPY_FILE = cp -f
|
||||||
|
COPY_DIR = cp -f -R
|
||||||
|
INSTALL_FILE = install -m 644 -p
|
||||||
|
INSTALL_PROGRAM = install -m 755 -p
|
||||||
|
INSTALL_DIR = cp -f -R
|
||||||
|
QINSTALL = /Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/qmake -install qinstall
|
||||||
|
QINSTALL_PROGRAM = /Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/qmake -install qinstall -exe
|
||||||
|
DEL_FILE = rm -f
|
||||||
|
SYMLINK = ln -f -s
|
||||||
|
DEL_DIR = rmdir
|
||||||
|
MOVE = mv -f
|
||||||
|
TAR = tar -cf
|
||||||
|
COMPRESS = gzip -9f
|
||||||
|
DISTNAME = QtCustomStyleEx1.0.0
|
||||||
|
DISTDIR = /Users/yuanyi/programming/github/QtExamples/build-QtCustomStyleEx-Desktop_Qt_5_12_5_clang_64bit-Debug/.tmp/QtCustomStyleEx1.0.0
|
||||||
|
LINK = /Library/Developer/CommandLineTools/usr/bin/clang++
|
||||||
|
LFLAGS = -stdlib=libc++ -headerpad_max_install_names $(EXPORT_ARCH_ARGS) -Wl,-syslibroot,/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.12 -Wl,-rpath,@executable_path/../Frameworks -Wl,-rpath,/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib
|
||||||
|
LIBS = $(SUBLIBS) -F/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib -framework QtWidgets -framework QtGui -framework QtCore -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL
|
||||||
|
AR = /Library/Developer/CommandLineTools/usr/bin/ar cq
|
||||||
|
RANLIB = /Library/Developer/CommandLineTools/usr/bin/ranlib -s
|
||||||
|
SED = sed
|
||||||
|
STRIP = strip
|
||||||
|
|
||||||
|
####### Output directory
|
||||||
|
|
||||||
|
OBJECTS_DIR = ./
|
||||||
|
|
||||||
|
####### Files
|
||||||
|
|
||||||
|
SOURCES = ../QtCustomStyleEx/main.cpp \
|
||||||
|
../QtCustomStyleEx/Examples.cpp \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.cpp moc_Examples.cpp \
|
||||||
|
moc_ExCustomStyle.cpp
|
||||||
|
OBJECTS = main.o \
|
||||||
|
Examples.o \
|
||||||
|
ExCustomStyle.o \
|
||||||
|
moc_Examples.o \
|
||||||
|
moc_ExCustomStyle.o
|
||||||
|
DIST = ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qdevice.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/device_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/unix.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/macx.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/sanitize.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base-mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang-mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qconfig.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickshapes_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_service_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_functions.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang/qmake.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exclusive_builds.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/sdk.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/toolchain.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/toolchain.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resolve_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/objective_c.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qml_debug.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/mac.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/warn_on.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resources.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/moc.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/opengl.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/uic.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/thread.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qmake_use.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/file_copies.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/rez.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/asset_catalogs.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/testcase_targets.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exceptions.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/yacc.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/lex.prf \
|
||||||
|
../QtCustomStyleEx/QtCustomStyleEx.pro ../QtCustomStyleEx/Examples.h \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h ../QtCustomStyleEx/main.cpp \
|
||||||
|
../QtCustomStyleEx/Examples.cpp \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.cpp
|
||||||
|
QMAKE_TARGET = QtCustomStyleEx
|
||||||
|
DESTDIR =
|
||||||
|
TARGET = QtCustomStyleEx.app/Contents/MacOS/QtCustomStyleEx
|
||||||
|
|
||||||
|
####### Custom Variables
|
||||||
|
EXPORT_QMAKE_MAC_SDK = macosx
|
||||||
|
EXPORT_QMAKE_MAC_SDK_VERSION = 10.14.6
|
||||||
|
EXPORT_QMAKE_XCODE_DEVELOPER_PATH = /Library/Developer/CommandLineTools
|
||||||
|
EXPORT_VALID_ARCHS = x86_64
|
||||||
|
EXPORT_ACTIVE_ARCHS = $(filter $(EXPORT_VALID_ARCHS), $(ARCHS))
|
||||||
|
EXPORT_ARCH_ARGS = $(foreach arch, $(if $(EXPORT_ACTIVE_ARCHS), $(EXPORT_ACTIVE_ARCHS), $(EXPORT_VALID_ARCHS)), -arch $(arch))
|
||||||
|
EXPORT__PRO_FILE_ = /Users/yuanyi/programming/github/QtExamples/QtCustomStyleEx/QtCustomStyleEx.pro
|
||||||
|
|
||||||
|
|
||||||
|
include /Users/yuanyi/Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/sdk.mk
|
||||||
|
first: all
|
||||||
|
####### Build rules
|
||||||
|
|
||||||
|
QtCustomStyleEx.app/Contents/MacOS/QtCustomStyleEx: ui_Examples.h $(OBJECTS)
|
||||||
|
@test -d QtCustomStyleEx.app/Contents/MacOS/ || mkdir -p QtCustomStyleEx.app/Contents/MacOS/
|
||||||
|
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
|
||||||
|
|
||||||
|
Makefile: ../QtCustomStyleEx/QtCustomStyleEx.pro ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang/qmake.conf ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qdevice.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/device_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/unix.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/macx.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/sanitize.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base-mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang-mac.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qconfig.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickshapes_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_service_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uiplugin.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_functions.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang/qmake.conf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exclusive_builds.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/sdk.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/toolchain.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/toolchain.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_pre.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resolve_config.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_post.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/objective_c.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qml_debug.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/mac.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/warn_on.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resources.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/moc.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/opengl.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/uic.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/thread.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qmake_use.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/file_copies.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/rez.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/asset_catalogs.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/testcase_targets.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exceptions.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/yacc.prf \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/lex.prf \
|
||||||
|
../QtCustomStyleEx/QtCustomStyleEx.pro \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/QtWidgets.prl \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/QtGui.prl \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/QtCore.prl
|
||||||
|
$(QMAKE) -o Makefile ../QtCustomStyleEx/QtCustomStyleEx.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 CONFIG+=qml_debug
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_pre.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qdevice.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/device_config.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/unix.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/mac.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/macx.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/sanitize.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/gcc-base-mac.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/common/clang-mac.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/qconfig.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3danimation_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dcore_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dextras_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dinput_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dlogic_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquick_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickextras_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickinput_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickrender_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_3drender_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_accessibility_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bluetooth_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_bootstrap_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_charts_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_clipboard_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_concurrent_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_core_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_datavisualization_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_dbus_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designer_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_designercomponents_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_edid_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fb_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gamepad_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_graphics_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_gui_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_help_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_location_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_macextras_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimedia_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_network_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_networkauth_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_nfc_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_opengl_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_openglextensions_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_packetprotocol_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioning_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_positioningquick_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_printsupport_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_purchasing_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qml_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldebug_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmldevtools_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qmltest_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quick_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickparticles_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickshapes_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_quickwidgets_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_remoteobjects_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_repparser_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_scxml_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sensors_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialbus_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_serialport_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_service_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_sql_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_svg_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_testlib_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_texttospeech_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_theme_support_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uiplugin.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_uitools_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_virtualkeyboard_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webchannel_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webengine_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecore_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_websockets_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_webview_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_widgets_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xml_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_functions.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt_config.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang/qmake.conf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/spec_post.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exclusive_builds.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/sdk.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/toolchain.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/toolchain.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_pre.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_pre.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resolve_config.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/default_post.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/default_post.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/objective_c.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qml_debug.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/mac.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/warn_on.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qt.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/resources.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/moc.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/opengl.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/uic.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/unix/thread.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/qmake_use.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/file_copies.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/rez.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/mac/asset_catalogs.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/testcase_targets.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/exceptions.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/yacc.prf:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/lex.prf:
|
||||||
|
../QtCustomStyleEx/QtCustomStyleEx.pro:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/QtWidgets.prl:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/QtGui.prl:
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/QtCore.prl:
|
||||||
|
qmake: FORCE
|
||||||
|
@$(QMAKE) -o Makefile ../QtCustomStyleEx/QtCustomStyleEx.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 CONFIG+=qml_debug
|
||||||
|
|
||||||
|
qmake_all: FORCE
|
||||||
|
|
||||||
|
QtCustomStyleEx.app/Contents/PkgInfo:
|
||||||
|
@test -d QtCustomStyleEx.app/Contents || mkdir -p QtCustomStyleEx.app/Contents
|
||||||
|
@$(DEL_FILE) QtCustomStyleEx.app/Contents/PkgInfo
|
||||||
|
@echo "APPL????" > QtCustomStyleEx.app/Contents/PkgInfo
|
||||||
|
QtCustomStyleEx.app/Contents/Resources/empty.lproj:
|
||||||
|
@test -d QtCustomStyleEx.app/Contents/Resources || mkdir -p QtCustomStyleEx.app/Contents/Resources
|
||||||
|
@touch QtCustomStyleEx.app/Contents/Resources/empty.lproj
|
||||||
|
|
||||||
|
QtCustomStyleEx.app/Contents/Info.plist:
|
||||||
|
@test -d QtCustomStyleEx.app/Contents || mkdir -p QtCustomStyleEx.app/Contents
|
||||||
|
@$(DEL_FILE) QtCustomStyleEx.app/Contents/Info.plist
|
||||||
|
@sed -e "s,@SHORT_VERSION@,1.0,g" -e "s,\$${QMAKE_SHORT_VERSION},1.0,g" -e "s,@FULL_VERSION@,1.0.0,g" -e "s,\$${QMAKE_FULL_VERSION},1.0.0,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" -e "s,@BUNDLEIDENTIFIER@,touwoyimuli.QtCustomStyleEx,g" -e "s,\$${PRODUCT_BUNDLE_IDENTIFIER},touwoyimuli.QtCustomStyleEx,g" -e "s,\$${MACOSX_DEPLOYMENT_TARGET},10.12,g" -e "s,\$${IPHONEOS_DEPLOYMENT_TARGET},,g" -e "s,\$${TVOS_DEPLOYMENT_TARGET},,g" -e "s,\$${WATCHOS_DEPLOYMENT_TARGET},,g" -e "s,@ICON@,,g" -e "s,\$${ASSETCATALOG_COMPILER_APPICON_NAME},,g" -e "s,@EXECUTABLE@,QtCustomStyleEx,g" -e "s,@LIBRARY@,QtCustomStyleEx,g" -e "s,\$${EXECUTABLE_NAME},QtCustomStyleEx,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang/Info.plist.app >QtCustomStyleEx.app/Contents/Info.plist
|
||||||
|
|
||||||
|
all: Makefile \
|
||||||
|
QtCustomStyleEx.app/Contents/PkgInfo \
|
||||||
|
QtCustomStyleEx.app/Contents/Resources/empty.lproj \
|
||||||
|
QtCustomStyleEx.app/Contents/Info.plist QtCustomStyleEx.app/Contents/MacOS/QtCustomStyleEx
|
||||||
|
|
||||||
|
dist: distdir FORCE
|
||||||
|
(cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR)
|
||||||
|
|
||||||
|
distdir: FORCE
|
||||||
|
@test -d $(DISTDIR) || mkdir -p $(DISTDIR)
|
||||||
|
$(COPY_FILE) --parents $(DIST) $(DISTDIR)/
|
||||||
|
$(COPY_FILE) --parents ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/data/dummy.cpp $(DISTDIR)/
|
||||||
|
$(COPY_FILE) --parents ../QtCustomStyleEx/Examples.h ../QtCustomStyleEx/ExCustomStyle.h ../QtCustomStyleEx/ExDefineGlobal.h $(DISTDIR)/
|
||||||
|
$(COPY_FILE) --parents ../QtCustomStyleEx/main.cpp ../QtCustomStyleEx/Examples.cpp ../QtCustomStyleEx/ExCustomStyle.cpp $(DISTDIR)/
|
||||||
|
$(COPY_FILE) --parents ../QtCustomStyleEx/Examples.ui $(DISTDIR)/
|
||||||
|
|
||||||
|
|
||||||
|
clean: compiler_clean
|
||||||
|
-$(DEL_FILE) $(OBJECTS)
|
||||||
|
-$(DEL_FILE) *~ core *.core
|
||||||
|
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
-$(DEL_FILE) -r QtCustomStyleEx.app
|
||||||
|
-$(DEL_FILE) Makefile
|
||||||
|
|
||||||
|
|
||||||
|
####### Sub-libraries
|
||||||
|
|
||||||
|
xcodeproj:
|
||||||
|
@$(QMAKE) -spec macx-xcode "$(EXPORT__PRO_FILE_)" -spec macx-clang CONFIG+=debug CONFIG+=x86_64 CONFIG+=qml_debug
|
||||||
|
|
||||||
|
mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean
|
||||||
|
|
||||||
|
mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all
|
||||||
|
|
||||||
|
check: first
|
||||||
|
|
||||||
|
benchmark: first
|
||||||
|
|
||||||
|
compiler_rcc_make_all:
|
||||||
|
compiler_rcc_clean:
|
||||||
|
compiler_moc_predefs_make_all: moc_predefs.h
|
||||||
|
compiler_moc_predefs_clean:
|
||||||
|
-$(DEL_FILE) moc_predefs.h
|
||||||
|
moc_predefs.h: ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/data/dummy.cpp
|
||||||
|
/Library/Developer/CommandLineTools/usr/bin/clang++ -pipe -stdlib=libc++ -g -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -mmacosx-version-min=10.12 -Wall -W -dM -E -o moc_predefs.h ../../../../Qt5.12.5/5.12.5/clang_64/mkspecs/features/data/dummy.cpp
|
||||||
|
|
||||||
|
compiler_moc_header_make_all: moc_Examples.cpp moc_ExCustomStyle.cpp
|
||||||
|
compiler_moc_header_clean:
|
||||||
|
-$(DEL_FILE) moc_Examples.cpp moc_ExCustomStyle.cpp
|
||||||
|
moc_Examples.cpp: ../QtCustomStyleEx/Examples.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QWidget \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleFactory \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstylefactory.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/QDebug \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/qdebug.h \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QCommonStyle \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qcommonstyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/QPainter \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/qpainter.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleOption \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h \
|
||||||
|
moc_predefs.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/bin/moc
|
||||||
|
/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/moc $(DEFINES) --include /Users/yuanyi/programming/github/QtExamples/build-QtCustomStyleEx-Desktop_Qt_5_12_5_clang_64bit-Debug/moc_predefs.h -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang -I/Users/yuanyi/programming/github/QtExamples/QtCustomStyleEx -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers -I. -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/10.0.1/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include -F/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib ../QtCustomStyleEx/Examples.h -o moc_Examples.cpp
|
||||||
|
|
||||||
|
moc_ExCustomStyle.cpp: ../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QCommonStyle \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qcommonstyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/QPainter \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/qpainter.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleOption \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h \
|
||||||
|
moc_predefs.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/bin/moc
|
||||||
|
/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/moc $(DEFINES) --include /Users/yuanyi/programming/github/QtExamples/build-QtCustomStyleEx-Desktop_Qt_5_12_5_clang_64bit-Debug/moc_predefs.h -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/mkspecs/macx-clang -I/Users/yuanyi/programming/github/QtExamples/QtCustomStyleEx -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers -I/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers -I. -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -I/Library/Developer/CommandLineTools/usr/lib/clang/10.0.1/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include -F/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/lib ../QtCustomStyleEx/ExCustomStyle.h -o moc_ExCustomStyle.cpp
|
||||||
|
|
||||||
|
compiler_moc_objc_header_make_all:
|
||||||
|
compiler_moc_objc_header_clean:
|
||||||
|
compiler_moc_source_make_all:
|
||||||
|
compiler_moc_source_clean:
|
||||||
|
compiler_uic_make_all: ui_Examples.h
|
||||||
|
compiler_uic_clean:
|
||||||
|
-$(DEL_FILE) ui_Examples.h
|
||||||
|
ui_Examples.h: ../QtCustomStyleEx/Examples.ui \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/bin/uic
|
||||||
|
/Users/yuanyi/Qt5.12.5/5.12.5/clang_64/bin/uic ../QtCustomStyleEx/Examples.ui -o ui_Examples.h
|
||||||
|
|
||||||
|
compiler_rez_source_make_all:
|
||||||
|
compiler_rez_source_clean:
|
||||||
|
compiler_yacc_decl_make_all:
|
||||||
|
compiler_yacc_decl_clean:
|
||||||
|
compiler_yacc_impl_make_all:
|
||||||
|
compiler_yacc_impl_clean:
|
||||||
|
compiler_lex_make_all:
|
||||||
|
compiler_lex_clean:
|
||||||
|
compiler_clean: compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean
|
||||||
|
|
||||||
|
####### Compile
|
||||||
|
|
||||||
|
main.o: ../QtCustomStyleEx/main.cpp ../QtCustomStyleEx/Examples.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QWidget \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleFactory \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstylefactory.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/QDebug \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/qdebug.h \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QCommonStyle \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qcommonstyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/QPainter \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/qpainter.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleOption \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QApplication \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h
|
||||||
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o ../QtCustomStyleEx/main.cpp
|
||||||
|
|
||||||
|
Examples.o: ../QtCustomStyleEx/Examples.cpp ../QtCustomStyleEx/Examples.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QWidget \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleFactory \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstylefactory.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/QDebug \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtCore.framework/Headers/qdebug.h \
|
||||||
|
../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QCommonStyle \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qcommonstyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/QPainter \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/qpainter.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleOption \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h \
|
||||||
|
ui_Examples.h
|
||||||
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o Examples.o ../QtCustomStyleEx/Examples.cpp
|
||||||
|
|
||||||
|
ExCustomStyle.o: ../QtCustomStyleEx/ExCustomStyle.cpp ../QtCustomStyleEx/ExCustomStyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QCommonStyle \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qcommonstyle.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/QPainter \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtGui.framework/Headers/qpainter.h \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/QStyleOption \
|
||||||
|
../../../../Qt5.12.5/5.12.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h \
|
||||||
|
../QtCustomStyleEx/ExDefineGlobal.h
|
||||||
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ExCustomStyle.o ../QtCustomStyleEx/ExCustomStyle.cpp
|
||||||
|
|
||||||
|
moc_Examples.o: moc_Examples.cpp
|
||||||
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_Examples.o moc_Examples.cpp
|
||||||
|
|
||||||
|
moc_ExCustomStyle.o: moc_ExCustomStyle.cpp
|
||||||
|
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_ExCustomStyle.o moc_ExCustomStyle.cpp
|
||||||
|
|
||||||
|
####### Install
|
||||||
|
|
||||||
|
install_target: first FORCE
|
||||||
|
@test -d $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin || mkdir -p $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin
|
||||||
|
$(DEL_FILE) -r $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin/QtCustomStyleEx.app
|
||||||
|
|
||||||
|
-$(QINSTALL) QtCustomStyleEx.app $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin/QtCustomStyleEx.app
|
||||||
|
|
||||||
|
uninstall_target: FORCE
|
||||||
|
-$(DEL_FILE) -r $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin/QtCustomStyleEx.app
|
||||||
|
-$(DEL_DIR) $(INSTALL_ROOT)/opt/QtCustomStyleEx/bin/
|
||||||
|
|
||||||
|
|
||||||
|
install: install_target FORCE
|
||||||
|
|
||||||
|
uninstall: uninstall_target FORCE
|
||||||
|
|
||||||
|
FORCE:
|
||||||
|
|
@ -0,0 +1,94 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
** Meta object code from reading C++ file 'ExCustomStyle.h'
|
||||||
|
**
|
||||||
|
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.5)
|
||||||
|
**
|
||||||
|
** WARNING! All changes made in this file will be lost!
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
#include "../QtCustomStyleEx/ExCustomStyle.h"
|
||||||
|
#include <QtCore/qbytearray.h>
|
||||||
|
#include <QtCore/qmetatype.h>
|
||||||
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
|
#error "The header file 'ExCustomStyle.h' doesn't include <QObject>."
|
||||||
|
#elif Q_MOC_OUTPUT_REVISION != 67
|
||||||
|
#error "This file was generated using the moc from 5.12.5. It"
|
||||||
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
|
#error "(The moc has changed too much.)"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
struct qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle_t {
|
||||||
|
QByteArrayData data[1];
|
||||||
|
char stringdata0[32];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(idx, ofs, len) \
|
||||||
|
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
||||||
|
qptrdiff(offsetof(qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle_t, stringdata0) + ofs \
|
||||||
|
- idx * sizeof(QByteArrayData)) \
|
||||||
|
)
|
||||||
|
static const qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle_t qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 0, 31) // "touwoyimuliStyle::ExCustomStyle"
|
||||||
|
|
||||||
|
},
|
||||||
|
"touwoyimuliStyle::ExCustomStyle"
|
||||||
|
};
|
||||||
|
#undef QT_MOC_LITERAL
|
||||||
|
|
||||||
|
static const uint qt_meta_data_touwoyimuliStyle__ExCustomStyle[] = {
|
||||||
|
|
||||||
|
// content:
|
||||||
|
8, // revision
|
||||||
|
0, // classname
|
||||||
|
0, 0, // classinfo
|
||||||
|
0, 0, // methods
|
||||||
|
0, 0, // properties
|
||||||
|
0, 0, // enums/sets
|
||||||
|
0, 0, // constructors
|
||||||
|
0, // flags
|
||||||
|
0, // signalCount
|
||||||
|
|
||||||
|
0 // eod
|
||||||
|
};
|
||||||
|
|
||||||
|
void touwoyimuliStyle::ExCustomStyle::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
Q_UNUSED(_o);
|
||||||
|
Q_UNUSED(_id);
|
||||||
|
Q_UNUSED(_c);
|
||||||
|
Q_UNUSED(_a);
|
||||||
|
}
|
||||||
|
|
||||||
|
QT_INIT_METAOBJECT const QMetaObject touwoyimuliStyle::ExCustomStyle::staticMetaObject = { {
|
||||||
|
&QCommonStyle::staticMetaObject,
|
||||||
|
qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle.data,
|
||||||
|
qt_meta_data_touwoyimuliStyle__ExCustomStyle,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
|
|
||||||
|
const QMetaObject *touwoyimuliStyle::ExCustomStyle::metaObject() const
|
||||||
|
{
|
||||||
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
void *touwoyimuliStyle::ExCustomStyle::qt_metacast(const char *_clname)
|
||||||
|
{
|
||||||
|
if (!_clname) return nullptr;
|
||||||
|
if (!strcmp(_clname, qt_meta_stringdata_touwoyimuliStyle__ExCustomStyle.stringdata0))
|
||||||
|
return static_cast<void*>(this);
|
||||||
|
return QCommonStyle::qt_metacast(_clname);
|
||||||
|
}
|
||||||
|
|
||||||
|
int touwoyimuliStyle::ExCustomStyle::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
_id = QCommonStyle::qt_metacall(_c, _id, _a);
|
||||||
|
return _id;
|
||||||
|
}
|
||||||
|
QT_WARNING_POP
|
||||||
|
QT_END_MOC_NAMESPACE
|
@ -0,0 +1,119 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
** Meta object code from reading C++ file 'Examples.h'
|
||||||
|
**
|
||||||
|
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.5)
|
||||||
|
**
|
||||||
|
** WARNING! All changes made in this file will be lost!
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
#include "../QtCustomStyleEx/Examples.h"
|
||||||
|
#include <QtCore/qbytearray.h>
|
||||||
|
#include <QtCore/qmetatype.h>
|
||||||
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
|
#error "The header file 'Examples.h' doesn't include <QObject>."
|
||||||
|
#elif Q_MOC_OUTPUT_REVISION != 67
|
||||||
|
#error "This file was generated using the moc from 5.12.5. It"
|
||||||
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
|
#error "(The moc has changed too much.)"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
struct qt_meta_stringdata_Examples_t {
|
||||||
|
QByteArrayData data[4];
|
||||||
|
char stringdata0[48];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(idx, ofs, len) \
|
||||||
|
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
||||||
|
qptrdiff(offsetof(qt_meta_stringdata_Examples_t, stringdata0) + ofs \
|
||||||
|
- idx * sizeof(QByteArrayData)) \
|
||||||
|
)
|
||||||
|
static const qt_meta_stringdata_Examples_t qt_meta_stringdata_Examples = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 0, 8), // "Examples"
|
||||||
|
QT_MOC_LITERAL(1, 9, 31), // "on_comboBox_currentIndexChanged"
|
||||||
|
QT_MOC_LITERAL(2, 41, 0), // ""
|
||||||
|
QT_MOC_LITERAL(3, 42, 5) // "style"
|
||||||
|
|
||||||
|
},
|
||||||
|
"Examples\0on_comboBox_currentIndexChanged\0"
|
||||||
|
"\0style"
|
||||||
|
};
|
||||||
|
#undef QT_MOC_LITERAL
|
||||||
|
|
||||||
|
static const uint qt_meta_data_Examples[] = {
|
||||||
|
|
||||||
|
// content:
|
||||||
|
8, // revision
|
||||||
|
0, // classname
|
||||||
|
0, 0, // classinfo
|
||||||
|
1, 14, // methods
|
||||||
|
0, 0, // properties
|
||||||
|
0, 0, // enums/sets
|
||||||
|
0, 0, // constructors
|
||||||
|
0, // flags
|
||||||
|
0, // signalCount
|
||||||
|
|
||||||
|
// slots: name, argc, parameters, tag, flags
|
||||||
|
1, 1, 19, 2, 0x08 /* Private */,
|
||||||
|
|
||||||
|
// slots: parameters
|
||||||
|
QMetaType::Void, QMetaType::QString, 3,
|
||||||
|
|
||||||
|
0 // eod
|
||||||
|
};
|
||||||
|
|
||||||
|
void Examples::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
|
auto *_t = static_cast<Examples *>(_o);
|
||||||
|
Q_UNUSED(_t)
|
||||||
|
switch (_id) {
|
||||||
|
case 0: _t->on_comboBox_currentIndexChanged((*reinterpret_cast< const QString(*)>(_a[1]))); break;
|
||||||
|
default: ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QT_INIT_METAOBJECT const QMetaObject Examples::staticMetaObject = { {
|
||||||
|
&QWidget::staticMetaObject,
|
||||||
|
qt_meta_stringdata_Examples.data,
|
||||||
|
qt_meta_data_Examples,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
|
|
||||||
|
const QMetaObject *Examples::metaObject() const
|
||||||
|
{
|
||||||
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
void *Examples::qt_metacast(const char *_clname)
|
||||||
|
{
|
||||||
|
if (!_clname) return nullptr;
|
||||||
|
if (!strcmp(_clname, qt_meta_stringdata_Examples.stringdata0))
|
||||||
|
return static_cast<void*>(this);
|
||||||
|
return QWidget::qt_metacast(_clname);
|
||||||
|
}
|
||||||
|
|
||||||
|
int Examples::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||||
|
{
|
||||||
|
_id = QWidget::qt_metacall(_c, _id, _a);
|
||||||
|
if (_id < 0)
|
||||||
|
return _id;
|
||||||
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
|
if (_id < 1)
|
||||||
|
qt_static_metacall(this, _c, _id, _a);
|
||||||
|
_id -= 1;
|
||||||
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
|
if (_id < 1)
|
||||||
|
*reinterpret_cast<int*>(_a[0]) = -1;
|
||||||
|
_id -= 1;
|
||||||
|
}
|
||||||
|
return _id;
|
||||||
|
}
|
||||||
|
QT_WARNING_POP
|
||||||
|
QT_END_MOC_NAMESPACE
|
@ -0,0 +1,391 @@
|
|||||||
|
#define OBJC_NEW_PROPERTIES 1
|
||||||
|
#define _LP64 1
|
||||||
|
#define __APPLE_CC__ 6000
|
||||||
|
#define __APPLE__ 1
|
||||||
|
#define __ATOMIC_ACQUIRE 2
|
||||||
|
#define __ATOMIC_ACQ_REL 4
|
||||||
|
#define __ATOMIC_CONSUME 1
|
||||||
|
#define __ATOMIC_RELAXED 0
|
||||||
|
#define __ATOMIC_RELEASE 3
|
||||||
|
#define __ATOMIC_SEQ_CST 5
|
||||||
|
#define __BIGGEST_ALIGNMENT__ 16
|
||||||
|
#define __BLOCKS__ 1
|
||||||
|
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __CHAR16_TYPE__ unsigned short
|
||||||
|
#define __CHAR32_TYPE__ unsigned int
|
||||||
|
#define __CHAR_BIT__ 8
|
||||||
|
#define __CLANG_ATOMIC_BOOL_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_CHAR_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_INT_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_LLONG_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_LONG_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_POINTER_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_SHORT_LOCK_FREE 2
|
||||||
|
#define __CLANG_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||||
|
#define __CONSTANT_CFSTRINGS__ 1
|
||||||
|
#define __DBL_DECIMAL_DIG__ 17
|
||||||
|
#define __DBL_DENORM_MIN__ 4.9406564584124654e-324
|
||||||
|
#define __DBL_DIG__ 15
|
||||||
|
#define __DBL_EPSILON__ 2.2204460492503131e-16
|
||||||
|
#define __DBL_HAS_DENORM__ 1
|
||||||
|
#define __DBL_HAS_INFINITY__ 1
|
||||||
|
#define __DBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __DBL_MANT_DIG__ 53
|
||||||
|
#define __DBL_MAX_10_EXP__ 308
|
||||||
|
#define __DBL_MAX_EXP__ 1024
|
||||||
|
#define __DBL_MAX__ 1.7976931348623157e+308
|
||||||
|
#define __DBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __DBL_MIN_EXP__ (-1021)
|
||||||
|
#define __DBL_MIN__ 2.2250738585072014e-308
|
||||||
|
#define __DECIMAL_DIG__ __LDBL_DECIMAL_DIG__
|
||||||
|
#define __DEPRECATED 1
|
||||||
|
#define __DYNAMIC__ 1
|
||||||
|
#define __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ 101200
|
||||||
|
#define __EXCEPTIONS 1
|
||||||
|
#define __FINITE_MATH_ONLY__ 0
|
||||||
|
#define __FLT16_DECIMAL_DIG__ 5
|
||||||
|
#define __FLT16_DENORM_MIN__ 5.9604644775390625e-8F16
|
||||||
|
#define __FLT16_DIG__ 3
|
||||||
|
#define __FLT16_EPSILON__ 9.765625e-4F16
|
||||||
|
#define __FLT16_HAS_DENORM__ 1
|
||||||
|
#define __FLT16_HAS_INFINITY__ 1
|
||||||
|
#define __FLT16_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT16_MANT_DIG__ 11
|
||||||
|
#define __FLT16_MAX_10_EXP__ 4
|
||||||
|
#define __FLT16_MAX_EXP__ 15
|
||||||
|
#define __FLT16_MAX__ 6.5504e+4F16
|
||||||
|
#define __FLT16_MIN_10_EXP__ (-13)
|
||||||
|
#define __FLT16_MIN_EXP__ (-14)
|
||||||
|
#define __FLT16_MIN__ 6.103515625e-5F16
|
||||||
|
#define __FLT_DECIMAL_DIG__ 9
|
||||||
|
#define __FLT_DENORM_MIN__ 1.40129846e-45F
|
||||||
|
#define __FLT_DIG__ 6
|
||||||
|
#define __FLT_EPSILON__ 1.19209290e-7F
|
||||||
|
#define __FLT_EVAL_METHOD__ 0
|
||||||
|
#define __FLT_HAS_DENORM__ 1
|
||||||
|
#define __FLT_HAS_INFINITY__ 1
|
||||||
|
#define __FLT_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_MANT_DIG__ 24
|
||||||
|
#define __FLT_MAX_10_EXP__ 38
|
||||||
|
#define __FLT_MAX_EXP__ 128
|
||||||
|
#define __FLT_MAX__ 3.40282347e+38F
|
||||||
|
#define __FLT_MIN_10_EXP__ (-37)
|
||||||
|
#define __FLT_MIN_EXP__ (-125)
|
||||||
|
#define __FLT_MIN__ 1.17549435e-38F
|
||||||
|
#define __FLT_RADIX__ 2
|
||||||
|
#define __FXSR__ 1
|
||||||
|
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_INT_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
|
||||||
|
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||||
|
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
|
||||||
|
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
|
||||||
|
#define __GLIBCXX_BITSIZE_INT_N_0 128
|
||||||
|
#define __GLIBCXX_TYPE_INT_N_0 __int128
|
||||||
|
#define __GNUC_GNU_INLINE__ 1
|
||||||
|
#define __GNUC_MINOR__ 2
|
||||||
|
#define __GNUC_PATCHLEVEL__ 1
|
||||||
|
#define __GNUC__ 4
|
||||||
|
#define __GNUG__ 4
|
||||||
|
#define __GXX_ABI_VERSION 1002
|
||||||
|
#define __GXX_EXPERIMENTAL_CXX0X__ 1
|
||||||
|
#define __GXX_RTTI 1
|
||||||
|
#define __GXX_WEAK__ 1
|
||||||
|
#define __INT16_C_SUFFIX__
|
||||||
|
#define __INT16_FMTd__ "hd"
|
||||||
|
#define __INT16_FMTi__ "hi"
|
||||||
|
#define __INT16_MAX__ 32767
|
||||||
|
#define __INT16_TYPE__ short
|
||||||
|
#define __INT32_C_SUFFIX__
|
||||||
|
#define __INT32_FMTd__ "d"
|
||||||
|
#define __INT32_FMTi__ "i"
|
||||||
|
#define __INT32_MAX__ 2147483647
|
||||||
|
#define __INT32_TYPE__ int
|
||||||
|
#define __INT64_C_SUFFIX__ LL
|
||||||
|
#define __INT64_FMTd__ "lld"
|
||||||
|
#define __INT64_FMTi__ "lli"
|
||||||
|
#define __INT64_MAX__ 9223372036854775807LL
|
||||||
|
#define __INT64_TYPE__ long long int
|
||||||
|
#define __INT8_C_SUFFIX__
|
||||||
|
#define __INT8_FMTd__ "hhd"
|
||||||
|
#define __INT8_FMTi__ "hhi"
|
||||||
|
#define __INT8_MAX__ 127
|
||||||
|
#define __INT8_TYPE__ signed char
|
||||||
|
#define __INTMAX_C_SUFFIX__ L
|
||||||
|
#define __INTMAX_FMTd__ "ld"
|
||||||
|
#define __INTMAX_FMTi__ "li"
|
||||||
|
#define __INTMAX_MAX__ 9223372036854775807L
|
||||||
|
#define __INTMAX_TYPE__ long int
|
||||||
|
#define __INTMAX_WIDTH__ 64
|
||||||
|
#define __INTPTR_FMTd__ "ld"
|
||||||
|
#define __INTPTR_FMTi__ "li"
|
||||||
|
#define __INTPTR_MAX__ 9223372036854775807L
|
||||||
|
#define __INTPTR_TYPE__ long int
|
||||||
|
#define __INTPTR_WIDTH__ 64
|
||||||
|
#define __INT_FAST16_FMTd__ "hd"
|
||||||
|
#define __INT_FAST16_FMTi__ "hi"
|
||||||
|
#define __INT_FAST16_MAX__ 32767
|
||||||
|
#define __INT_FAST16_TYPE__ short
|
||||||
|
#define __INT_FAST32_FMTd__ "d"
|
||||||
|
#define __INT_FAST32_FMTi__ "i"
|
||||||
|
#define __INT_FAST32_MAX__ 2147483647
|
||||||
|
#define __INT_FAST32_TYPE__ int
|
||||||
|
#define __INT_FAST64_FMTd__ "ld"
|
||||||
|
#define __INT_FAST64_FMTi__ "li"
|
||||||
|
#define __INT_FAST64_MAX__ 9223372036854775807L
|
||||||
|
#define __INT_FAST64_TYPE__ long int
|
||||||
|
#define __INT_FAST8_FMTd__ "hhd"
|
||||||
|
#define __INT_FAST8_FMTi__ "hhi"
|
||||||
|
#define __INT_FAST8_MAX__ 127
|
||||||
|
#define __INT_FAST8_TYPE__ signed char
|
||||||
|
#define __INT_LEAST16_FMTd__ "hd"
|
||||||
|
#define __INT_LEAST16_FMTi__ "hi"
|
||||||
|
#define __INT_LEAST16_MAX__ 32767
|
||||||
|
#define __INT_LEAST16_TYPE__ short
|
||||||
|
#define __INT_LEAST32_FMTd__ "d"
|
||||||
|
#define __INT_LEAST32_FMTi__ "i"
|
||||||
|
#define __INT_LEAST32_MAX__ 2147483647
|
||||||
|
#define __INT_LEAST32_TYPE__ int
|
||||||
|
#define __INT_LEAST64_FMTd__ "ld"
|
||||||
|
#define __INT_LEAST64_FMTi__ "li"
|
||||||
|
#define __INT_LEAST64_MAX__ 9223372036854775807L
|
||||||
|
#define __INT_LEAST64_TYPE__ long int
|
||||||
|
#define __INT_LEAST8_FMTd__ "hhd"
|
||||||
|
#define __INT_LEAST8_FMTi__ "hhi"
|
||||||
|
#define __INT_LEAST8_MAX__ 127
|
||||||
|
#define __INT_LEAST8_TYPE__ signed char
|
||||||
|
#define __INT_MAX__ 2147483647
|
||||||
|
#define __LDBL_DECIMAL_DIG__ 21
|
||||||
|
#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
|
||||||
|
#define __LDBL_DIG__ 18
|
||||||
|
#define __LDBL_EPSILON__ 1.08420217248550443401e-19L
|
||||||
|
#define __LDBL_HAS_DENORM__ 1
|
||||||
|
#define __LDBL_HAS_INFINITY__ 1
|
||||||
|
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __LDBL_MANT_DIG__ 64
|
||||||
|
#define __LDBL_MAX_10_EXP__ 4932
|
||||||
|
#define __LDBL_MAX_EXP__ 16384
|
||||||
|
#define __LDBL_MAX__ 1.18973149535723176502e+4932L
|
||||||
|
#define __LDBL_MIN_10_EXP__ (-4931)
|
||||||
|
#define __LDBL_MIN_EXP__ (-16381)
|
||||||
|
#define __LDBL_MIN__ 3.36210314311209350626e-4932L
|
||||||
|
#define __LITTLE_ENDIAN__ 1
|
||||||
|
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
||||||
|
#define __LONG_MAX__ 9223372036854775807L
|
||||||
|
#define __LP64__ 1
|
||||||
|
#define __MACH__ 1
|
||||||
|
#define __MMX__ 1
|
||||||
|
#define __NO_INLINE__ 1
|
||||||
|
#define __NO_MATH_INLINES 1
|
||||||
|
#define __OBJC_BOOL_IS_BOOL 0
|
||||||
|
#define __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES 3
|
||||||
|
#define __OPENCL_MEMORY_SCOPE_DEVICE 2
|
||||||
|
#define __OPENCL_MEMORY_SCOPE_SUB_GROUP 4
|
||||||
|
#define __OPENCL_MEMORY_SCOPE_WORK_GROUP 1
|
||||||
|
#define __OPENCL_MEMORY_SCOPE_WORK_ITEM 0
|
||||||
|
#define __ORDER_BIG_ENDIAN__ 4321
|
||||||
|
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||||
|
#define __ORDER_PDP_ENDIAN__ 3412
|
||||||
|
#define __PIC__ 2
|
||||||
|
#define __POINTER_WIDTH__ 64
|
||||||
|
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||||
|
#define __PTRDIFF_FMTd__ "ld"
|
||||||
|
#define __PTRDIFF_FMTi__ "li"
|
||||||
|
#define __PTRDIFF_MAX__ 9223372036854775807L
|
||||||
|
#define __PTRDIFF_TYPE__ long int
|
||||||
|
#define __PTRDIFF_WIDTH__ 64
|
||||||
|
#define __REGISTER_PREFIX__
|
||||||
|
#define __SCHAR_MAX__ 127
|
||||||
|
#define __SHRT_MAX__ 32767
|
||||||
|
#define __SIG_ATOMIC_MAX__ 2147483647
|
||||||
|
#define __SIG_ATOMIC_WIDTH__ 32
|
||||||
|
#define __SIZEOF_DOUBLE__ 8
|
||||||
|
#define __SIZEOF_FLOAT__ 4
|
||||||
|
#define __SIZEOF_INT128__ 16
|
||||||
|
#define __SIZEOF_INT__ 4
|
||||||
|
#define __SIZEOF_LONG_DOUBLE__ 16
|
||||||
|
#define __SIZEOF_LONG_LONG__ 8
|
||||||
|
#define __SIZEOF_LONG__ 8
|
||||||
|
#define __SIZEOF_POINTER__ 8
|
||||||
|
#define __SIZEOF_PTRDIFF_T__ 8
|
||||||
|
#define __SIZEOF_SHORT__ 2
|
||||||
|
#define __SIZEOF_SIZE_T__ 8
|
||||||
|
#define __SIZEOF_WCHAR_T__ 4
|
||||||
|
#define __SIZEOF_WINT_T__ 4
|
||||||
|
#define __SIZE_FMTX__ "lX"
|
||||||
|
#define __SIZE_FMTo__ "lo"
|
||||||
|
#define __SIZE_FMTu__ "lu"
|
||||||
|
#define __SIZE_FMTx__ "lx"
|
||||||
|
#define __SIZE_MAX__ 18446744073709551615UL
|
||||||
|
#define __SIZE_TYPE__ long unsigned int
|
||||||
|
#define __SIZE_WIDTH__ 64
|
||||||
|
#define __SSE2_MATH__ 1
|
||||||
|
#define __SSE2__ 1
|
||||||
|
#define __SSE3__ 1
|
||||||
|
#define __SSE4_1__ 1
|
||||||
|
#define __SSE_MATH__ 1
|
||||||
|
#define __SSE__ 1
|
||||||
|
#define __SSP__ 1
|
||||||
|
#define __SSSE3__ 1
|
||||||
|
#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16UL
|
||||||
|
#define __STDC_HOSTED__ 1
|
||||||
|
#define __STDC_NO_THREADS__ 1
|
||||||
|
#define __STDC_UTF_16__ 1
|
||||||
|
#define __STDC_UTF_32__ 1
|
||||||
|
#define __STDC__ 1
|
||||||
|
#define __UINT16_C_SUFFIX__
|
||||||
|
#define __UINT16_FMTX__ "hX"
|
||||||
|
#define __UINT16_FMTo__ "ho"
|
||||||
|
#define __UINT16_FMTu__ "hu"
|
||||||
|
#define __UINT16_FMTx__ "hx"
|
||||||
|
#define __UINT16_MAX__ 65535
|
||||||
|
#define __UINT16_TYPE__ unsigned short
|
||||||
|
#define __UINT32_C_SUFFIX__ U
|
||||||
|
#define __UINT32_FMTX__ "X"
|
||||||
|
#define __UINT32_FMTo__ "o"
|
||||||
|
#define __UINT32_FMTu__ "u"
|
||||||
|
#define __UINT32_FMTx__ "x"
|
||||||
|
#define __UINT32_MAX__ 4294967295U
|
||||||
|
#define __UINT32_TYPE__ unsigned int
|
||||||
|
#define __UINT64_C_SUFFIX__ ULL
|
||||||
|
#define __UINT64_FMTX__ "llX"
|
||||||
|
#define __UINT64_FMTo__ "llo"
|
||||||
|
#define __UINT64_FMTu__ "llu"
|
||||||
|
#define __UINT64_FMTx__ "llx"
|
||||||
|
#define __UINT64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __UINT64_TYPE__ long long unsigned int
|
||||||
|
#define __UINT8_C_SUFFIX__
|
||||||
|
#define __UINT8_FMTX__ "hhX"
|
||||||
|
#define __UINT8_FMTo__ "hho"
|
||||||
|
#define __UINT8_FMTu__ "hhu"
|
||||||
|
#define __UINT8_FMTx__ "hhx"
|
||||||
|
#define __UINT8_MAX__ 255
|
||||||
|
#define __UINT8_TYPE__ unsigned char
|
||||||
|
#define __UINTMAX_C_SUFFIX__ UL
|
||||||
|
#define __UINTMAX_FMTX__ "lX"
|
||||||
|
#define __UINTMAX_FMTo__ "lo"
|
||||||
|
#define __UINTMAX_FMTu__ "lu"
|
||||||
|
#define __UINTMAX_FMTx__ "lx"
|
||||||
|
#define __UINTMAX_MAX__ 18446744073709551615UL
|
||||||
|
#define __UINTMAX_TYPE__ long unsigned int
|
||||||
|
#define __UINTMAX_WIDTH__ 64
|
||||||
|
#define __UINTPTR_FMTX__ "lX"
|
||||||
|
#define __UINTPTR_FMTo__ "lo"
|
||||||
|
#define __UINTPTR_FMTu__ "lu"
|
||||||
|
#define __UINTPTR_FMTx__ "lx"
|
||||||
|
#define __UINTPTR_MAX__ 18446744073709551615UL
|
||||||
|
#define __UINTPTR_TYPE__ long unsigned int
|
||||||
|
#define __UINTPTR_WIDTH__ 64
|
||||||
|
#define __UINT_FAST16_FMTX__ "hX"
|
||||||
|
#define __UINT_FAST16_FMTo__ "ho"
|
||||||
|
#define __UINT_FAST16_FMTu__ "hu"
|
||||||
|
#define __UINT_FAST16_FMTx__ "hx"
|
||||||
|
#define __UINT_FAST16_MAX__ 65535
|
||||||
|
#define __UINT_FAST16_TYPE__ unsigned short
|
||||||
|
#define __UINT_FAST32_FMTX__ "X"
|
||||||
|
#define __UINT_FAST32_FMTo__ "o"
|
||||||
|
#define __UINT_FAST32_FMTu__ "u"
|
||||||
|
#define __UINT_FAST32_FMTx__ "x"
|
||||||
|
#define __UINT_FAST32_MAX__ 4294967295U
|
||||||
|
#define __UINT_FAST32_TYPE__ unsigned int
|
||||||
|
#define __UINT_FAST64_FMTX__ "lX"
|
||||||
|
#define __UINT_FAST64_FMTo__ "lo"
|
||||||
|
#define __UINT_FAST64_FMTu__ "lu"
|
||||||
|
#define __UINT_FAST64_FMTx__ "lx"
|
||||||
|
#define __UINT_FAST64_MAX__ 18446744073709551615UL
|
||||||
|
#define __UINT_FAST64_TYPE__ long unsigned int
|
||||||
|
#define __UINT_FAST8_FMTX__ "hhX"
|
||||||
|
#define __UINT_FAST8_FMTo__ "hho"
|
||||||
|
#define __UINT_FAST8_FMTu__ "hhu"
|
||||||
|
#define __UINT_FAST8_FMTx__ "hhx"
|
||||||
|
#define __UINT_FAST8_MAX__ 255
|
||||||
|
#define __UINT_FAST8_TYPE__ unsigned char
|
||||||
|
#define __UINT_LEAST16_FMTX__ "hX"
|
||||||
|
#define __UINT_LEAST16_FMTo__ "ho"
|
||||||
|
#define __UINT_LEAST16_FMTu__ "hu"
|
||||||
|
#define __UINT_LEAST16_FMTx__ "hx"
|
||||||
|
#define __UINT_LEAST16_MAX__ 65535
|
||||||
|
#define __UINT_LEAST16_TYPE__ unsigned short
|
||||||
|
#define __UINT_LEAST32_FMTX__ "X"
|
||||||
|
#define __UINT_LEAST32_FMTo__ "o"
|
||||||
|
#define __UINT_LEAST32_FMTu__ "u"
|
||||||
|
#define __UINT_LEAST32_FMTx__ "x"
|
||||||
|
#define __UINT_LEAST32_MAX__ 4294967295U
|
||||||
|
#define __UINT_LEAST32_TYPE__ unsigned int
|
||||||
|
#define __UINT_LEAST64_FMTX__ "lX"
|
||||||
|
#define __UINT_LEAST64_FMTo__ "lo"
|
||||||
|
#define __UINT_LEAST64_FMTu__ "lu"
|
||||||
|
#define __UINT_LEAST64_FMTx__ "lx"
|
||||||
|
#define __UINT_LEAST64_MAX__ 18446744073709551615UL
|
||||||
|
#define __UINT_LEAST64_TYPE__ long unsigned int
|
||||||
|
#define __UINT_LEAST8_FMTX__ "hhX"
|
||||||
|
#define __UINT_LEAST8_FMTo__ "hho"
|
||||||
|
#define __UINT_LEAST8_FMTu__ "hhu"
|
||||||
|
#define __UINT_LEAST8_FMTx__ "hhx"
|
||||||
|
#define __UINT_LEAST8_MAX__ 255
|
||||||
|
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||||
|
#define __USER_LABEL_PREFIX__ _
|
||||||
|
#define __VERSION__ "4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4)"
|
||||||
|
#define __WCHAR_MAX__ 2147483647
|
||||||
|
#define __WCHAR_TYPE__ int
|
||||||
|
#define __WCHAR_WIDTH__ 32
|
||||||
|
#define __WINT_MAX__ 2147483647
|
||||||
|
#define __WINT_TYPE__ int
|
||||||
|
#define __WINT_WIDTH__ 32
|
||||||
|
#define __amd64 1
|
||||||
|
#define __amd64__ 1
|
||||||
|
#define __apple_build_version__ 10010046
|
||||||
|
#define __block __attribute__((__blocks__(byref)))
|
||||||
|
#define __clang__ 1
|
||||||
|
#define __clang_major__ 10
|
||||||
|
#define __clang_minor__ 0
|
||||||
|
#define __clang_patchlevel__ 1
|
||||||
|
#define __clang_version__ "10.0.1 (clang-1001.0.46.4)"
|
||||||
|
#define __core2 1
|
||||||
|
#define __core2__ 1
|
||||||
|
#define __cplusplus 201103L
|
||||||
|
#define __cpp_alias_templates 200704L
|
||||||
|
#define __cpp_attributes 200809L
|
||||||
|
#define __cpp_constexpr 200704
|
||||||
|
#define __cpp_decltype 200707L
|
||||||
|
#define __cpp_delegating_constructors 200604L
|
||||||
|
#define __cpp_exceptions 199711L
|
||||||
|
#define __cpp_inheriting_constructors 201511L
|
||||||
|
#define __cpp_initializer_lists 200806L
|
||||||
|
#define __cpp_lambdas 200907L
|
||||||
|
#define __cpp_nsdmi 200809L
|
||||||
|
#define __cpp_range_based_for 200907
|
||||||
|
#define __cpp_raw_strings 200710L
|
||||||
|
#define __cpp_ref_qualifiers 200710L
|
||||||
|
#define __cpp_rtti 199711L
|
||||||
|
#define __cpp_rvalue_references 200610L
|
||||||
|
#define __cpp_static_assert 200410
|
||||||
|
#define __cpp_threadsafe_static_init 200806L
|
||||||
|
#define __cpp_unicode_characters 200704L
|
||||||
|
#define __cpp_unicode_literals 200710L
|
||||||
|
#define __cpp_user_defined_literals 200809L
|
||||||
|
#define __cpp_variadic_templates 200704L
|
||||||
|
#define __llvm__ 1
|
||||||
|
#define __nonnull _Nonnull
|
||||||
|
#define __null_unspecified _Null_unspecified
|
||||||
|
#define __nullable _Nullable
|
||||||
|
#define __pic__ 2
|
||||||
|
#define __private_extern__ extern
|
||||||
|
#define __strong
|
||||||
|
#define __tune_core2__ 1
|
||||||
|
#define __unsafe_unretained
|
||||||
|
#define __weak __attribute__((objc_gc(weak)))
|
||||||
|
#define __x86_64 1
|
||||||
|
#define __x86_64__ 1
|
@ -0,0 +1,180 @@
|
|||||||
|
/********************************************************************************
|
||||||
|
** Form generated from reading UI file 'Examples.ui'
|
||||||
|
**
|
||||||
|
** Created by: Qt User Interface Compiler version 5.12.5
|
||||||
|
**
|
||||||
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||||
|
********************************************************************************/
|
||||||
|
|
||||||
|
#ifndef UI_EXAMPLES_H
|
||||||
|
#define UI_EXAMPLES_H
|
||||||
|
|
||||||
|
#include <QtCore/QVariant>
|
||||||
|
#include <QtWidgets/QApplication>
|
||||||
|
#include <QtWidgets/QComboBox>
|
||||||
|
#include <QtWidgets/QGridLayout>
|
||||||
|
#include <QtWidgets/QHeaderView>
|
||||||
|
#include <QtWidgets/QScrollBar>
|
||||||
|
#include <QtWidgets/QSpacerItem>
|
||||||
|
#include <QtWidgets/QTabWidget>
|
||||||
|
#include <QtWidgets/QTableWidget>
|
||||||
|
#include <QtWidgets/QWidget>
|
||||||
|
|
||||||
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
|
class Ui_Examples
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QGridLayout *gridLayout;
|
||||||
|
QTabWidget *tabWidget;
|
||||||
|
QWidget *tab;
|
||||||
|
QWidget *gridLayoutWidget;
|
||||||
|
QGridLayout *gridLayout_2;
|
||||||
|
QTableWidget *tableWidget;
|
||||||
|
QSpacerItem *horizontalSpacer;
|
||||||
|
QSpacerItem *verticalSpacer;
|
||||||
|
QScrollBar *scrollBarHor;
|
||||||
|
QScrollBar *scrollBarVer;
|
||||||
|
QComboBox *comboBox;
|
||||||
|
QWidget *tab_2;
|
||||||
|
|
||||||
|
void setupUi(QWidget *Examples)
|
||||||
|
{
|
||||||
|
if (Examples->objectName().isEmpty())
|
||||||
|
Examples->setObjectName(QString::fromUtf8("Examples"));
|
||||||
|
Examples->resize(1235, 695);
|
||||||
|
gridLayout = new QGridLayout(Examples);
|
||||||
|
gridLayout->setSpacing(6);
|
||||||
|
gridLayout->setContentsMargins(11, 11, 11, 11);
|
||||||
|
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
||||||
|
tabWidget = new QTabWidget(Examples);
|
||||||
|
tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
|
||||||
|
tabWidget->setTabPosition(QTabWidget::South);
|
||||||
|
tab = new QWidget();
|
||||||
|
tab->setObjectName(QString::fromUtf8("tab"));
|
||||||
|
gridLayoutWidget = new QWidget(tab);
|
||||||
|
gridLayoutWidget->setObjectName(QString::fromUtf8("gridLayoutWidget"));
|
||||||
|
gridLayoutWidget->setGeometry(QRect(10, 10, 441, 251));
|
||||||
|
gridLayout_2 = new QGridLayout(gridLayoutWidget);
|
||||||
|
gridLayout_2->setSpacing(6);
|
||||||
|
gridLayout_2->setContentsMargins(11, 11, 11, 11);
|
||||||
|
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
|
||||||
|
gridLayout_2->setContentsMargins(0, 0, 0, 0);
|
||||||
|
tableWidget = new QTableWidget(gridLayoutWidget);
|
||||||
|
if (tableWidget->columnCount() < 6)
|
||||||
|
tableWidget->setColumnCount(6);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(0, __qtablewidgetitem);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem1 = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(1, __qtablewidgetitem1);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem2 = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(2, __qtablewidgetitem2);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem3 = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(3, __qtablewidgetitem3);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem4 = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(4, __qtablewidgetitem4);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem5 = new QTableWidgetItem();
|
||||||
|
tableWidget->setHorizontalHeaderItem(5, __qtablewidgetitem5);
|
||||||
|
if (tableWidget->rowCount() < 6)
|
||||||
|
tableWidget->setRowCount(6);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem6 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(0, __qtablewidgetitem6);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem7 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(1, __qtablewidgetitem7);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem8 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(2, __qtablewidgetitem8);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem9 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(3, __qtablewidgetitem9);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem10 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(4, __qtablewidgetitem10);
|
||||||
|
QTableWidgetItem *__qtablewidgetitem11 = new QTableWidgetItem();
|
||||||
|
tableWidget->setVerticalHeaderItem(5, __qtablewidgetitem11);
|
||||||
|
tableWidget->setObjectName(QString::fromUtf8("tableWidget"));
|
||||||
|
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
|
||||||
|
sizePolicy.setHorizontalStretch(0);
|
||||||
|
sizePolicy.setVerticalStretch(0);
|
||||||
|
sizePolicy.setHeightForWidth(tableWidget->sizePolicy().hasHeightForWidth());
|
||||||
|
tableWidget->setSizePolicy(sizePolicy);
|
||||||
|
tableWidget->setMaximumSize(QSize(400, 200));
|
||||||
|
|
||||||
|
gridLayout_2->addWidget(tableWidget, 0, 0, 1, 1);
|
||||||
|
|
||||||
|
horizontalSpacer = new QSpacerItem(20, 20, QSizePolicy::Fixed, QSizePolicy::Minimum);
|
||||||
|
|
||||||
|
gridLayout_2->addItem(horizontalSpacer, 0, 1, 1, 1);
|
||||||
|
|
||||||
|
verticalSpacer = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
|
||||||
|
|
||||||
|
gridLayout_2->addItem(verticalSpacer, 1, 0, 1, 1);
|
||||||
|
|
||||||
|
scrollBarHor = new QScrollBar(gridLayoutWidget);
|
||||||
|
scrollBarHor->setObjectName(QString::fromUtf8("scrollBarHor"));
|
||||||
|
scrollBarHor->setOrientation(Qt::Horizontal);
|
||||||
|
|
||||||
|
gridLayout_2->addWidget(scrollBarHor, 2, 0, 1, 2);
|
||||||
|
|
||||||
|
scrollBarVer = new QScrollBar(gridLayoutWidget);
|
||||||
|
scrollBarVer->setObjectName(QString::fromUtf8("scrollBarVer"));
|
||||||
|
scrollBarVer->setOrientation(Qt::Vertical);
|
||||||
|
|
||||||
|
gridLayout_2->addWidget(scrollBarVer, 0, 2, 2, 1);
|
||||||
|
|
||||||
|
comboBox = new QComboBox(tab);
|
||||||
|
comboBox->setObjectName(QString::fromUtf8("comboBox"));
|
||||||
|
comboBox->setGeometry(QRect(470, 10, 135, 31));
|
||||||
|
tabWidget->addTab(tab, QString());
|
||||||
|
tab_2 = new QWidget();
|
||||||
|
tab_2->setObjectName(QString::fromUtf8("tab_2"));
|
||||||
|
tabWidget->addTab(tab_2, QString());
|
||||||
|
|
||||||
|
gridLayout->addWidget(tabWidget, 0, 0, 1, 1);
|
||||||
|
|
||||||
|
|
||||||
|
retranslateUi(Examples);
|
||||||
|
|
||||||
|
tabWidget->setCurrentIndex(0);
|
||||||
|
|
||||||
|
|
||||||
|
QMetaObject::connectSlotsByName(Examples);
|
||||||
|
} // setupUi
|
||||||
|
|
||||||
|
void retranslateUi(QWidget *Examples)
|
||||||
|
{
|
||||||
|
Examples->setWindowTitle(QApplication::translate("Examples", "Examples", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem = tableWidget->horizontalHeaderItem(0);
|
||||||
|
___qtablewidgetitem->setText(QApplication::translate("Examples", "1", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem1 = tableWidget->horizontalHeaderItem(1);
|
||||||
|
___qtablewidgetitem1->setText(QApplication::translate("Examples", "2", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem2 = tableWidget->horizontalHeaderItem(2);
|
||||||
|
___qtablewidgetitem2->setText(QApplication::translate("Examples", "3", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem3 = tableWidget->horizontalHeaderItem(3);
|
||||||
|
___qtablewidgetitem3->setText(QApplication::translate("Examples", "4", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem4 = tableWidget->horizontalHeaderItem(4);
|
||||||
|
___qtablewidgetitem4->setText(QApplication::translate("Examples", "5", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem5 = tableWidget->horizontalHeaderItem(5);
|
||||||
|
___qtablewidgetitem5->setText(QApplication::translate("Examples", "6", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem6 = tableWidget->verticalHeaderItem(0);
|
||||||
|
___qtablewidgetitem6->setText(QApplication::translate("Examples", "a", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem7 = tableWidget->verticalHeaderItem(1);
|
||||||
|
___qtablewidgetitem7->setText(QApplication::translate("Examples", "b", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem8 = tableWidget->verticalHeaderItem(2);
|
||||||
|
___qtablewidgetitem8->setText(QApplication::translate("Examples", "c", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem9 = tableWidget->verticalHeaderItem(3);
|
||||||
|
___qtablewidgetitem9->setText(QApplication::translate("Examples", "d", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem10 = tableWidget->verticalHeaderItem(4);
|
||||||
|
___qtablewidgetitem10->setText(QApplication::translate("Examples", "e", nullptr));
|
||||||
|
QTableWidgetItem *___qtablewidgetitem11 = tableWidget->verticalHeaderItem(5);
|
||||||
|
___qtablewidgetitem11->setText(QApplication::translate("Examples", "f", nullptr));
|
||||||
|
tabWidget->setTabText(tabWidget->indexOf(tab), QApplication::translate("Examples", "\346\273\232\345\212\250\346\235\241", nullptr));
|
||||||
|
tabWidget->setTabText(tabWidget->indexOf(tab_2), QApplication::translate("Examples", "Tab 2", nullptr));
|
||||||
|
} // retranslateUi
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class Examples: public Ui_Examples {};
|
||||||
|
} // namespace Ui
|
||||||
|
|
||||||
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
|
#endif // UI_EXAMPLES_H
|
Loading…
Reference in New Issue
Block a user