added fixed scale to display plot in 2017v2. Use this one.
This commit is contained in:
parent
7799f37e8a
commit
49a2dc2584
@ -11,10 +11,13 @@
|
|||||||
|
|
||||||
#include <QtCore/QVariant>
|
#include <QtCore/QVariant>
|
||||||
#include <QtWidgets/QApplication>
|
#include <QtWidgets/QApplication>
|
||||||
#include <QtWidgets/QCheckBox>
|
#include <QtWidgets/QButtonGroup>
|
||||||
#include <QtWidgets/QDialog>
|
#include <QtWidgets/QDialog>
|
||||||
|
#include <QtWidgets/QFrame>
|
||||||
#include <QtWidgets/QHBoxLayout>
|
#include <QtWidgets/QHBoxLayout>
|
||||||
#include <QtWidgets/QLineEdit>
|
#include <QtWidgets/QLineEdit>
|
||||||
|
#include <QtWidgets/QRadioButton>
|
||||||
|
#include <QtWidgets/QSpinBox>
|
||||||
#include <QtWidgets/QVBoxLayout>
|
#include <QtWidgets/QVBoxLayout>
|
||||||
#include <QtWidgets/QWidget>
|
#include <QtWidgets/QWidget>
|
||||||
#include "qcustomplot.h"
|
#include "qcustomplot.h"
|
||||||
@ -29,7 +32,14 @@ public:
|
|||||||
QLineEdit *lineTitle;
|
QLineEdit *lineTitle;
|
||||||
QCustomPlot *plot;
|
QCustomPlot *plot;
|
||||||
QHBoxLayout *horizontalLayout;
|
QHBoxLayout *horizontalLayout;
|
||||||
QCheckBox *checkAutoscale;
|
QRadioButton *radioButtonAutoscale;
|
||||||
|
QFrame *line;
|
||||||
|
QRadioButton *radioButtonMaxScale;
|
||||||
|
QFrame *line_2;
|
||||||
|
QRadioButton *radioButtonFixedScale;
|
||||||
|
QSpinBox *spinBox_minScale;
|
||||||
|
QSpinBox *spinBox_maxScale;
|
||||||
|
QButtonGroup *buttonGroup;
|
||||||
|
|
||||||
void setupUi(QDialog *display)
|
void setupUi(QDialog *display)
|
||||||
{
|
{
|
||||||
@ -62,10 +72,58 @@ public:
|
|||||||
|
|
||||||
horizontalLayout = new QHBoxLayout();
|
horizontalLayout = new QHBoxLayout();
|
||||||
horizontalLayout->setObjectName("horizontalLayout");
|
horizontalLayout->setObjectName("horizontalLayout");
|
||||||
checkAutoscale = new QCheckBox(verticalLayoutWidget);
|
radioButtonAutoscale = new QRadioButton(verticalLayoutWidget);
|
||||||
checkAutoscale->setObjectName("checkAutoscale");
|
buttonGroup = new QButtonGroup(display);
|
||||||
|
buttonGroup->setObjectName("buttonGroup");
|
||||||
|
buttonGroup->addButton(radioButtonAutoscale);
|
||||||
|
radioButtonAutoscale->setObjectName("radioButtonAutoscale");
|
||||||
|
|
||||||
horizontalLayout->addWidget(checkAutoscale);
|
horizontalLayout->addWidget(radioButtonAutoscale);
|
||||||
|
|
||||||
|
line = new QFrame(verticalLayoutWidget);
|
||||||
|
line->setObjectName("line");
|
||||||
|
line->setFrameShape(QFrame::VLine);
|
||||||
|
line->setFrameShadow(QFrame::Sunken);
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(line);
|
||||||
|
|
||||||
|
radioButtonMaxScale = new QRadioButton(verticalLayoutWidget);
|
||||||
|
buttonGroup->addButton(radioButtonMaxScale);
|
||||||
|
radioButtonMaxScale->setObjectName("radioButtonMaxScale");
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(radioButtonMaxScale);
|
||||||
|
|
||||||
|
line_2 = new QFrame(verticalLayoutWidget);
|
||||||
|
line_2->setObjectName("line_2");
|
||||||
|
line_2->setFrameShape(QFrame::VLine);
|
||||||
|
line_2->setFrameShadow(QFrame::Sunken);
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(line_2);
|
||||||
|
|
||||||
|
radioButtonFixedScale = new QRadioButton(verticalLayoutWidget);
|
||||||
|
buttonGroup->addButton(radioButtonFixedScale);
|
||||||
|
radioButtonFixedScale->setObjectName("radioButtonFixedScale");
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(radioButtonFixedScale);
|
||||||
|
|
||||||
|
spinBox_minScale = new QSpinBox(verticalLayoutWidget);
|
||||||
|
spinBox_minScale->setObjectName("spinBox_minScale");
|
||||||
|
spinBox_minScale->setMinimum(-1000);
|
||||||
|
spinBox_minScale->setMaximum(66000);
|
||||||
|
spinBox_minScale->setSingleStep(100);
|
||||||
|
spinBox_minScale->setValue(-1000);
|
||||||
|
spinBox_minScale->setDisplayIntegerBase(10);
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(spinBox_minScale);
|
||||||
|
|
||||||
|
spinBox_maxScale = new QSpinBox(verticalLayoutWidget);
|
||||||
|
spinBox_maxScale->setObjectName("spinBox_maxScale");
|
||||||
|
spinBox_maxScale->setMinimum(1000);
|
||||||
|
spinBox_maxScale->setMaximum(65000);
|
||||||
|
spinBox_maxScale->setSingleStep(100);
|
||||||
|
spinBox_maxScale->setValue(65000);
|
||||||
|
|
||||||
|
horizontalLayout->addWidget(spinBox_maxScale);
|
||||||
|
|
||||||
|
|
||||||
verticalLayout->addLayout(horizontalLayout);
|
verticalLayout->addLayout(horizontalLayout);
|
||||||
@ -79,7 +137,9 @@ public:
|
|||||||
void retranslateUi(QDialog *display)
|
void retranslateUi(QDialog *display)
|
||||||
{
|
{
|
||||||
display->setWindowTitle(QCoreApplication::translate("display", "Online Display", nullptr));
|
display->setWindowTitle(QCoreApplication::translate("display", "Online Display", nullptr));
|
||||||
checkAutoscale->setText(QCoreApplication::translate("display", "Autoscale", nullptr));
|
radioButtonAutoscale->setText(QCoreApplication::translate("display", "Auto Y-Scale", nullptr));
|
||||||
|
radioButtonMaxScale->setText(QCoreApplication::translate("display", "Max Y-Scale", nullptr));
|
||||||
|
radioButtonFixedScale->setText(QCoreApplication::translate("display", "Fixed Y-Scale", nullptr));
|
||||||
} // retranslateUi
|
} // retranslateUi
|
||||||
|
|
||||||
};
|
};
|
||||||
|
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -10,3 +10,34 @@ QMAKE_DEFAULT_LIBDIRS = \
|
|||||||
C:/Qt/Tools/mingw530_32/lib/gcc \
|
C:/Qt/Tools/mingw530_32/lib/gcc \
|
||||||
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/lib \
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/lib \
|
||||||
C:/Qt/Tools/mingw530_32/lib
|
C:/Qt/Tools/mingw530_32/lib
|
||||||
|
QMAKE_CXX.QT_COMPILER_STDCXX = 201703L
|
||||||
|
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 11
|
||||||
|
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 2
|
||||||
|
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
|
||||||
|
QMAKE_CXX.COMPILER_MACROS = \
|
||||||
|
QT_COMPILER_STDCXX \
|
||||||
|
QMAKE_GCC_MAJOR_VERSION \
|
||||||
|
QMAKE_GCC_MINOR_VERSION \
|
||||||
|
QMAKE_GCC_PATCH_VERSION
|
||||||
|
QMAKE_CXX.INCDIRS = \
|
||||||
|
C:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include \
|
||||||
|
C:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include-fixed \
|
||||||
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/include \
|
||||||
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++ \
|
||||||
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/i686-w64-mingw32 \
|
||||||
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/backward \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed \
|
||||||
|
C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include
|
||||||
|
QMAKE_CXX.LIBDIRS = \
|
||||||
|
C:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0 \
|
||||||
|
C:/Qt/Tools/mingw530_32/lib/gcc \
|
||||||
|
C:/Qt/Tools/mingw530_32/i686-w64-mingw32/lib \
|
||||||
|
C:/Qt/Tools/mingw530_32/lib \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0 \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib/gcc \
|
||||||
|
C:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib \
|
||||||
|
C:/Qt/Tools/mingw1120_64/lib
|
||||||
|
@ -1,49 +1,46 @@
|
|||||||
#############################################################################
|
#############################################################################
|
||||||
# Makefile for building: hit2017
|
# Makefile for building: hit2017v2
|
||||||
# Generated by qmake (3.0) (Qt 5.7.0)
|
# Generated by qmake (3.1) (Qt 6.5.2)
|
||||||
# Project: hit2017.pro
|
# Project: hit2017v2.pro
|
||||||
# Template: app
|
# Template: app
|
||||||
# Command: "C:/Program Files/Qt/5.7/mingw53_32/bin/qmake.exe" -spec win32-g++ CONFIG+=debug CONFIG+=qml_debug -o Makefile hit2017.pro
|
# Command: C:\Qt\6.5.2\mingw_64\bin\qmake.exe -o Makefile hit2017v2.pro -spec win32-g++ "CONFIG+=qtquickcompiler"
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
MAKEFILE = Makefile
|
MAKEFILE = Makefile
|
||||||
|
|
||||||
first: debug
|
EQ = =
|
||||||
install: debug-install
|
|
||||||
uninstall: debug-uninstall
|
first: release
|
||||||
QMAKE = "C:/Program Files/Qt/5.7/mingw53_32/bin/qmake.exe"
|
install: release-install
|
||||||
DEL_FILE = rm -f
|
uninstall: release-uninstall
|
||||||
CHK_DIR_EXISTS= test -d
|
QMAKE = C:\Qt\6.5.2\mingw_64\bin\qmake.exe
|
||||||
MKDIR = mkdir -p
|
DEL_FILE = del
|
||||||
COPY = cp -f
|
CHK_DIR_EXISTS= if not exist
|
||||||
COPY_FILE = cp -f
|
MKDIR = mkdir
|
||||||
COPY_DIR = cp -f -R
|
COPY = copy /y
|
||||||
INSTALL_FILE = cp -f
|
COPY_FILE = copy /y
|
||||||
INSTALL_PROGRAM = cp -f
|
COPY_DIR = xcopy /s /q /y /i
|
||||||
INSTALL_DIR = cp -f -R
|
INSTALL_FILE = copy /y
|
||||||
DEL_FILE = rm -f
|
INSTALL_PROGRAM = copy /y
|
||||||
|
INSTALL_DIR = xcopy /s /q /y /i
|
||||||
|
QINSTALL = C:\Qt\6.5.2\mingw_64\bin\qmake.exe -install qinstall
|
||||||
|
QINSTALL_PROGRAM = C:\Qt\6.5.2\mingw_64\bin\qmake.exe -install qinstall -exe
|
||||||
|
DEL_FILE = del
|
||||||
SYMLINK = $(QMAKE) -install ln -f -s
|
SYMLINK = $(QMAKE) -install ln -f -s
|
||||||
DEL_DIR = rmdir
|
DEL_DIR = rmdir
|
||||||
MOVE = mv -f
|
MOVE = move
|
||||||
|
IDC = idc
|
||||||
|
IDL = midl
|
||||||
|
ZIP = zip -r -9
|
||||||
|
DEF_FILE =
|
||||||
|
RES_FILE =
|
||||||
|
SED = $(QMAKE) -install sed
|
||||||
|
MOVE = move
|
||||||
SUBTARGETS = \
|
SUBTARGETS = \
|
||||||
debug \
|
release \
|
||||||
release
|
debug
|
||||||
|
|
||||||
|
|
||||||
debug: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug
|
|
||||||
debug-make_first: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug
|
|
||||||
debug-all: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug all
|
|
||||||
debug-clean: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug clean
|
|
||||||
debug-distclean: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug distclean
|
|
||||||
debug-install: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug install
|
|
||||||
debug-uninstall: FORCE
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug uninstall
|
|
||||||
release: FORCE
|
release: FORCE
|
||||||
$(MAKE) -f $(MAKEFILE).Release
|
$(MAKE) -f $(MAKEFILE).Release
|
||||||
release-make_first: FORCE
|
release-make_first: FORCE
|
||||||
@ -58,342 +55,374 @@ release-install: FORCE
|
|||||||
$(MAKE) -f $(MAKEFILE).Release install
|
$(MAKE) -f $(MAKEFILE).Release install
|
||||||
release-uninstall: FORCE
|
release-uninstall: FORCE
|
||||||
$(MAKE) -f $(MAKEFILE).Release uninstall
|
$(MAKE) -f $(MAKEFILE).Release uninstall
|
||||||
|
debug: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug
|
||||||
|
debug-make_first: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug
|
||||||
|
debug-all: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug all
|
||||||
|
debug-clean: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug clean
|
||||||
|
debug-distclean: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug distclean
|
||||||
|
debug-install: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug install
|
||||||
|
debug-uninstall: FORCE
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug uninstall
|
||||||
|
|
||||||
Makefile: hit2017.pro C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/win32-g++/qmake.conf C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/spec_pre.prf \
|
Makefile: hit2017v2.pro C:/Qt/6.5.2/mingw_64/mkspecs/win32-g++/qmake.conf C:/Qt/6.5.2/mingw_64/mkspecs/features/spec_pre.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/qdevice.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/device_config.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/device_config.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/sanitize.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/common/angle.conf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/gcc-base.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/qconfig.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/g++-base.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dcore.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/windows_vulkan_sdk.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dcore_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/windows-vulkan.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dextras.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/g++-win32.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dextras_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/windows-desktop.conf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dinput.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/qconfig.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dinput_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_freetype.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dlogic.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_libjpeg.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dlogic_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_libpng.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquick.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_concurrent.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquick_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_concurrent_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickextras.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_core.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickextras_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_core_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickinput.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_dbus.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickinput_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_dbus_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickrender.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designer.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickrender_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designer_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3drender.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designercomponents_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3drender_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axbase.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_entrypoint_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axbase_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_example_icons_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axcontainer.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_fb_support_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axcontainer_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_freetype_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axserver.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_gui.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axserver_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_gui_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bluetooth.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_harfbuzz_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bluetooth_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_help.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bootstrap_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_help_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_clucene_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_httpserver.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_concurrent.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_httpserver_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_concurrent_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_jpeg_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_core.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsanimation.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_core_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsanimation_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_dbus.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_dbus_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designer.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designer_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designercomponents_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssettings.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gamepad.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssettings_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gamepad_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssharedimage.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gui.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssharedimage_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gui_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_help.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_help_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_linguist.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_location.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_linguist_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_location_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_network.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimedia.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_network_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimedia_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_opengl.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_opengl_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_openglwidgets.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_network.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_openglwidgets_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_network_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_nfc.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_png_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_nfc_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_printsupport.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_opengl.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_printsupport_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_opengl_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qml.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_openglextensions.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qml_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_openglextensions_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcompiler_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_packetprotocol_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcore.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_platformsupport_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcore_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_positioning.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmldebug_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_positioning_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmldom_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_printsupport.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlintegration.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_printsupport_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlintegration_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_purchasing.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_purchasing_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qml.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlmodels.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qml_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlmodels_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmldebug_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltest.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmldevtools_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltest_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmltest.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltyperegistrar_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmltest_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quick.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quick_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quick.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quick_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickparticles_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickwidgets.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickwidgets_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_script.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_script_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scripttools.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scripttools_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scxml.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scxml_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sensors.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sensors_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickeffects_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialbus.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicklayouts.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialbus_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicklayouts_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialport.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickparticles_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialport_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickshapes_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sql.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktemplates2.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sql_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_svg.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_svg_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickwidgets.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_testlib.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_testlib_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_serialport.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uiplugin.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_serialport_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uitools.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_sql.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uitools_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_sql_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_webchannel.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svg.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_webchannel_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svg_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_websockets.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svgwidgets.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_websockets_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svgwidgets_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_widgets.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_testlib.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_widgets_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_testlib_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_winextras.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_tools_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_winextras_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uiplugin.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xml.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uitools.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xml_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uitools_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_websockets.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_websockets_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt_functions.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_widgets.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt_config.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_widgets_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/qt_config.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_xml.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/win32-g++/qmake.conf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_xml_private.pri \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/spec_post.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_zlib_private.pri \
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt_functions.prf \
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt_config.prf \
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/win32-g++/qmake.conf \
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/spec_post.prf \
|
||||||
.qmake.stash \
|
.qmake.stash \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exclusive_builds.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exclusive_builds.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/default_pre.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/toolchain.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/default_pre.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/default_pre.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/resolve_config.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/default_pre.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exclusive_builds_post.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resolve_config.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/default_post.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exclusive_builds_post.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qml_debug.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/default_post.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/rtti.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qtquickcompiler.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/precompile_header.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/entrypoint.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/warn_on.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/precompile_header.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/warn_on.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/resources.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/moc.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resources_functions.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/opengl.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resources.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/uic.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/moc.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/file_copies.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/opengl.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/windows.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/uic.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/testcase_targets.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qmake_use.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exceptions.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/file_copies.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/yacc.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/windows.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/lex.prf \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/testcase_targets.prf \
|
||||||
hit2017.pro \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exceptions.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/qtmaind.prl \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/yacc.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5PrintSupport.prl \
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/lex.prf \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Widgets.prl \
|
hit2017v2.pro \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Gui.prl \
|
C:/Qt/6.5.2/mingw_64/lib/Qt6PrintSupport.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Network.prl \
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Widgets.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5SerialPort.prl \
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Gui.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Core.prl
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Network.prl \
|
||||||
$(QMAKE) -spec win32-g++ CONFIG+=debug CONFIG+=qml_debug -o Makefile hit2017.pro
|
C:/Qt/6.5.2/mingw_64/lib/Qt6SerialPort.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/spec_pre.prf:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Core.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/qdevice.pri:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6EntryPoint.prl \
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/device_config.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/build_pass.prf
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/common/angle.conf:
|
$(QMAKE) -o Makefile hit2017v2.pro -spec win32-g++ "CONFIG+=qtquickcompiler"
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/qconfig.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/spec_pre.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dcore.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/device_config.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dcore_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/sanitize.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dextras.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/gcc-base.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dextras_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/g++-base.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dinput.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/windows_vulkan_sdk.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dinput_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/windows-vulkan.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dlogic.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/g++-win32.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dlogic_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/common/windows-desktop.conf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquick.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/qconfig.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquick_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_freetype.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickextras.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_libjpeg.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickextras_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_ext_libpng.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickinput.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_concurrent.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickinput_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_concurrent_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickrender.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_core.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3dquickrender_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_core_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3drender.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_dbus.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_3drender_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_dbus_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axbase.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designer.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axbase_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designer_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axcontainer.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_designercomponents_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axcontainer_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axserver.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_entrypoint_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_axserver_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_example_icons_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bluetooth.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_fb_support_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bluetooth_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_freetype_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_bootstrap_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_gui.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_clucene_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_gui_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_concurrent.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_harfbuzz_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_concurrent_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_help.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_core.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_help_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_core_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_httpserver.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_dbus.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_httpserver_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_dbus_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_jpeg_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designer.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsanimation.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designer_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsanimation_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_designercomponents_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gamepad.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gamepad_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gui.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_gui_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssettings.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_help.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssettings_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_help_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssharedimage.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_location.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labssharedimage_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_location_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimedia.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimedia_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_linguist.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_linguist_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_network.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_network.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_network_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_network_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_opengl.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_nfc.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_opengl_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_nfc_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_openglwidgets.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_opengl.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_openglwidgets_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_opengl_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_packetprotocol_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_openglextensions.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_png_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_openglextensions_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_printsupport.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_packetprotocol_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_printsupport_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_platformsupport_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qml.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_positioning.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qml_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_positioning_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcompiler_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_printsupport.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcore.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_printsupport_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlcore_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_purchasing.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmldebug_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_purchasing_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmldom_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qml.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlintegration.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qml_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlintegration_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmldebug_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmldevtools_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmltest.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlmodels.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qmltest_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlmodels_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltest.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quick.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltest_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quick_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmltyperegistrar_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickparticles_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickwidgets.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quick.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_quickwidgets_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quick_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_script.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_script_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scripttools.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scripttools_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scxml.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_scxml_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sensors.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sensors_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialbus.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialbus_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialport.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_serialport_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickeffects_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sql.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicklayouts.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_sql_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicklayouts_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_svg.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickparticles_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_svg_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickshapes_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_testlib.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktemplates2.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_testlib_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uiplugin.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uitools.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickwidgets.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_uitools_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_quickwidgets_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_webchannel.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_serialport.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_webchannel_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_serialport_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_websockets.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_sql.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_websockets_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_sql_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_widgets.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svg.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_widgets_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svg_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_winextras.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svgwidgets.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_winextras_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_svgwidgets_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xml.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_testlib.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xml_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_testlib_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_tools_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/modules/qt_lib_xmlpatterns_private.pri:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uiplugin.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt_functions.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uitools.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt_config.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_uitools_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/qt_config.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_websockets.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/win32-g++/qmake.conf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_websockets_private.pri:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/spec_post.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_widgets.pri:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_widgets_private.pri:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_xml.pri:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_xml_private.pri:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/modules/qt_lib_zlib_private.pri:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt_functions.prf:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt_config.prf:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/win32-g++/qmake.conf:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/spec_post.prf:
|
||||||
.qmake.stash:
|
.qmake.stash:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exclusive_builds.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exclusive_builds.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/default_pre.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/toolchain.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/default_pre.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/default_pre.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/resolve_config.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/default_pre.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exclusive_builds_post.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resolve_config.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/default_post.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exclusive_builds_post.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qml_debug.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/default_post.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/rtti.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qtquickcompiler.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/precompile_header.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/entrypoint.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/warn_on.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/precompile_header.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/qt.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/warn_on.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/resources.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qt.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/moc.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resources_functions.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/opengl.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/resources.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/uic.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/moc.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/file_copies.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/opengl.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/win32/windows.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/uic.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/testcase_targets.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/qmake_use.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/exceptions.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/file_copies.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/yacc.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/win32/windows.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/mkspecs/features/lex.prf:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/testcase_targets.prf:
|
||||||
hit2017.pro:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/exceptions.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/qtmaind.prl:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/yacc.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5PrintSupport.prl:
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/lex.prf:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Widgets.prl:
|
hit2017v2.pro:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Gui.prl:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6PrintSupport.prl:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Network.prl:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Widgets.prl:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5SerialPort.prl:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Gui.prl:
|
||||||
C:/Program\ Files/Qt/5.7/mingw53_32/lib/Qt5Core.prl:
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Network.prl:
|
||||||
|
C:/Qt/6.5.2/mingw_64/lib/Qt6SerialPort.prl:
|
||||||
|
C:/Qt/6.5.2/mingw_64/lib/Qt6Core.prl:
|
||||||
|
C:/Qt/6.5.2/mingw_64/lib/Qt6EntryPoint.prl:
|
||||||
|
C:/Qt/6.5.2/mingw_64/mkspecs/features/build_pass.prf:
|
||||||
qmake: FORCE
|
qmake: FORCE
|
||||||
@$(QMAKE) -spec win32-g++ CONFIG+=debug CONFIG+=qml_debug -o Makefile hit2017.pro
|
@$(QMAKE) -o Makefile hit2017v2.pro -spec win32-g++ "CONFIG+=qtquickcompiler"
|
||||||
|
|
||||||
qmake_all: FORCE
|
qmake_all: FORCE
|
||||||
|
|
||||||
make_first: debug-make_first release-make_first FORCE
|
make_first: release-make_first debug-make_first FORCE
|
||||||
all: debug-all release-all FORCE
|
all: release-all debug-all FORCE
|
||||||
clean: debug-clean release-clean FORCE
|
clean: release-clean debug-clean FORCE
|
||||||
distclean: debug-distclean release-distclean FORCE
|
distclean: release-distclean debug-distclean FORCE
|
||||||
-$(DEL_FILE) Makefile
|
-$(DEL_FILE) Makefile
|
||||||
-$(DEL_FILE) .qmake.stash
|
-$(DEL_FILE) .qmake.stash
|
||||||
|
|
||||||
debug-mocclean:
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug mocclean
|
|
||||||
release-mocclean:
|
release-mocclean:
|
||||||
$(MAKE) -f $(MAKEFILE).Release mocclean
|
$(MAKE) -f $(MAKEFILE).Release mocclean
|
||||||
mocclean: debug-mocclean release-mocclean
|
debug-mocclean:
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug mocclean
|
||||||
|
mocclean: release-mocclean debug-mocclean
|
||||||
|
|
||||||
debug-mocables:
|
|
||||||
$(MAKE) -f $(MAKEFILE).Debug mocables
|
|
||||||
release-mocables:
|
release-mocables:
|
||||||
$(MAKE) -f $(MAKEFILE).Release mocables
|
$(MAKE) -f $(MAKEFILE).Release mocables
|
||||||
mocables: debug-mocables release-mocables
|
debug-mocables:
|
||||||
|
$(MAKE) -f $(MAKEFILE).Debug mocables
|
||||||
|
mocables: release-mocables debug-mocables
|
||||||
|
|
||||||
check: first
|
check: first
|
||||||
|
|
||||||
benchmark: first
|
benchmark: first
|
||||||
FORCE:
|
FORCE:
|
||||||
|
|
||||||
$(MAKEFILE).Debug: Makefile
|
.SUFFIXES:
|
||||||
|
|
||||||
$(MAKEFILE).Release: Makefile
|
$(MAKEFILE).Release: Makefile
|
||||||
|
$(MAKEFILE).Debug: Makefile
|
||||||
|
23553
hit2017v2/Makefile.Debug
23553
hit2017v2/Makefile.Debug
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,218 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'datareceiver.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../datareceiver.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'datareceiver.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DataReceiver_t {
|
|
||||||
QByteArrayData data[13];
|
|
||||||
char stringdata0[143];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DataReceiver_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DataReceiver_t qt_meta_stringdata_DataReceiver = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "DataReceiver"
|
|
||||||
QT_MOC_LITERAL(1, 13, 7), // "sigInit"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 9), // "sigDeinit"
|
|
||||||
QT_MOC_LITERAL(4, 32, 23), // "sigConfigureEthSettings"
|
|
||||||
QT_MOC_LITERAL(5, 56, 12), // "sigDataReady"
|
|
||||||
QT_MOC_LITERAL(6, 69, 13), // "DataReceiver*"
|
|
||||||
QT_MOC_LITERAL(7, 83, 3), // "ptr"
|
|
||||||
QT_MOC_LITERAL(8, 87, 7), // "onTimer"
|
|
||||||
QT_MOC_LITERAL(9, 95, 8), // "readData"
|
|
||||||
QT_MOC_LITERAL(10, 104, 6), // "onInit"
|
|
||||||
QT_MOC_LITERAL(11, 111, 8), // "onDeinit"
|
|
||||||
QT_MOC_LITERAL(12, 120, 22) // "onConfigureEthSettings"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DataReceiver\0sigInit\0\0sigDeinit\0"
|
|
||||||
"sigConfigureEthSettings\0sigDataReady\0"
|
|
||||||
"DataReceiver*\0ptr\0onTimer\0readData\0"
|
|
||||||
"onInit\0onDeinit\0onConfigureEthSettings"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DataReceiver[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
9, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
4, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 59, 2, 0x06 /* Public */,
|
|
||||||
3, 0, 60, 2, 0x06 /* Public */,
|
|
||||||
4, 0, 61, 2, 0x06 /* Public */,
|
|
||||||
5, 1, 62, 2, 0x06 /* Public */,
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
8, 0, 65, 2, 0x0a /* Public */,
|
|
||||||
9, 0, 66, 2, 0x09 /* Protected */,
|
|
||||||
10, 0, 67, 2, 0x09 /* Protected */,
|
|
||||||
11, 0, 68, 2, 0x09 /* Protected */,
|
|
||||||
12, 0, 69, 2, 0x09 /* Protected */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, 0x80000000 | 6, 7,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DataReceiver::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DataReceiver *_t = static_cast<DataReceiver *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->sigInit(); break;
|
|
||||||
case 1: _t->sigDeinit(); break;
|
|
||||||
case 2: _t->sigConfigureEthSettings(); break;
|
|
||||||
case 3: _t->sigDataReady((*reinterpret_cast< DataReceiver*(*)>(_a[1]))); break;
|
|
||||||
case 4: _t->onTimer(); break;
|
|
||||||
case 5: _t->readData(); break;
|
|
||||||
case 6: _t->onInit(); break;
|
|
||||||
case 7: _t->onDeinit(); break;
|
|
||||||
case 8: _t->onConfigureEthSettings(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
switch (_id) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 3:
|
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 0:
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< DataReceiver* >(); break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
void **func = reinterpret_cast<void **>(_a[1]);
|
|
||||||
{
|
|
||||||
typedef void (DataReceiver::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigInit)) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (DataReceiver::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigDeinit)) {
|
|
||||||
*result = 1;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (DataReceiver::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigConfigureEthSettings)) {
|
|
||||||
*result = 2;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (DataReceiver::*_t)(DataReceiver * );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigDataReady)) {
|
|
||||||
*result = 3;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DataReceiver::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_DataReceiver.data,
|
|
||||||
qt_meta_data_DataReceiver, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DataReceiver::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DataReceiver::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DataReceiver.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DataReceiver*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DataReceiver::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 9)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 9;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 9)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 9;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void DataReceiver::sigInit()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 1
|
|
||||||
void DataReceiver::sigDeinit()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 2
|
|
||||||
void DataReceiver::sigConfigureEthSettings()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 2, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 3
|
|
||||||
void DataReceiver::sigDataReady(DataReceiver * _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 3, _a);
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,133 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'device.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../device.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'device.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_Device_t {
|
|
||||||
QByteArrayData data[7];
|
|
||||||
char stringdata0[90];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_Device_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_Device_t qt_meta_stringdata_Device = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 6), // "Device"
|
|
||||||
QT_MOC_LITERAL(1, 7, 11), // "onConnected"
|
|
||||||
QT_MOC_LITERAL(2, 19, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 20, 13), // "onSocketError"
|
|
||||||
QT_MOC_LITERAL(4, 34, 28), // "QAbstractSocket::SocketError"
|
|
||||||
QT_MOC_LITERAL(5, 63, 11), // "socketError"
|
|
||||||
QT_MOC_LITERAL(6, 75, 14) // "onDisconnected"
|
|
||||||
|
|
||||||
},
|
|
||||||
"Device\0onConnected\0\0onSocketError\0"
|
|
||||||
"QAbstractSocket::SocketError\0socketError\0"
|
|
||||||
"onDisconnected"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_Device[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
3, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 29, 2, 0x09 /* Protected */,
|
|
||||||
3, 1, 30, 2, 0x09 /* Protected */,
|
|
||||||
6, 0, 33, 2, 0x09 /* Protected */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, 0x80000000 | 4, 5,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void Device::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
Device *_t = static_cast<Device *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->onConnected(); break;
|
|
||||||
case 1: _t->onSocketError((*reinterpret_cast< QAbstractSocket::SocketError(*)>(_a[1]))); break;
|
|
||||||
case 2: _t->onDisconnected(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
switch (_id) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 1:
|
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 0:
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QAbstractSocket::SocketError >(); break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject Device::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_Device.data,
|
|
||||||
qt_meta_data_Device, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *Device::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *Device::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_Device.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< Device*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int Device::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 3)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 3;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 3)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 3;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,157 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialogbeta.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialogbeta.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialogbeta.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogBeta_t {
|
|
||||||
QByteArrayData data[15];
|
|
||||||
char stringdata0[237];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogBeta_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogBeta_t qt_meta_stringdata_DialogBeta = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 10), // "DialogBeta"
|
|
||||||
QT_MOC_LITERAL(1, 11, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 34, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 40, 20), // "onHistogramCompleted"
|
|
||||||
QT_MOC_LITERAL(6, 61, 7), // "onTimer"
|
|
||||||
QT_MOC_LITERAL(7, 69, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(8, 88, 19), // "on_pushSave_pressed"
|
|
||||||
QT_MOC_LITERAL(9, 108, 20), // "on_pushClear_pressed"
|
|
||||||
QT_MOC_LITERAL(10, 129, 19), // "on_pushLeft_pressed"
|
|
||||||
QT_MOC_LITERAL(11, 149, 20), // "on_pushLeft_released"
|
|
||||||
QT_MOC_LITERAL(12, 170, 20), // "on_pushRight_pressed"
|
|
||||||
QT_MOC_LITERAL(13, 191, 21), // "on_pushRight_released"
|
|
||||||
QT_MOC_LITERAL(14, 213, 23) // "on_pushResetCtr_pressed"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogBeta\0showEvent\0\0QShowEvent*\0"
|
|
||||||
"event\0onHistogramCompleted\0onTimer\0"
|
|
||||||
"on_pushRun_pressed\0on_pushSave_pressed\0"
|
|
||||||
"on_pushClear_pressed\0on_pushLeft_pressed\0"
|
|
||||||
"on_pushLeft_released\0on_pushRight_pressed\0"
|
|
||||||
"on_pushRight_released\0on_pushResetCtr_pressed"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogBeta[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
11, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 69, 2, 0x0a /* Public */,
|
|
||||||
5, 0, 72, 2, 0x0a /* Public */,
|
|
||||||
6, 0, 73, 2, 0x0a /* Public */,
|
|
||||||
7, 0, 74, 2, 0x08 /* Private */,
|
|
||||||
8, 0, 75, 2, 0x08 /* Private */,
|
|
||||||
9, 0, 76, 2, 0x08 /* Private */,
|
|
||||||
10, 0, 77, 2, 0x08 /* Private */,
|
|
||||||
11, 0, 78, 2, 0x08 /* Private */,
|
|
||||||
12, 0, 79, 2, 0x08 /* Private */,
|
|
||||||
13, 0, 80, 2, 0x08 /* Private */,
|
|
||||||
14, 0, 81, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogBeta::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogBeta *_t = static_cast<DialogBeta *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->onHistogramCompleted(); break;
|
|
||||||
case 2: _t->onTimer(); break;
|
|
||||||
case 3: _t->on_pushRun_pressed(); break;
|
|
||||||
case 4: _t->on_pushSave_pressed(); break;
|
|
||||||
case 5: _t->on_pushClear_pressed(); break;
|
|
||||||
case 6: _t->on_pushLeft_pressed(); break;
|
|
||||||
case 7: _t->on_pushLeft_released(); break;
|
|
||||||
case 8: _t->on_pushRight_pressed(); break;
|
|
||||||
case 9: _t->on_pushRight_released(); break;
|
|
||||||
case 10: _t->on_pushResetCtr_pressed(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogBeta::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogBeta.data,
|
|
||||||
qt_meta_data_DialogBeta, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogBeta::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogBeta::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogBeta.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogBeta*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogBeta::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 11)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 11;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 11)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 11;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,123 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialogdevices.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialogdevices.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialogdevices.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogDevices_t {
|
|
||||||
QByteArrayData data[8];
|
|
||||||
char stringdata0[85];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogDevices_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogDevices_t qt_meta_stringdata_DialogDevices = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 13), // "DialogDevices"
|
|
||||||
QT_MOC_LITERAL(1, 14, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 24, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 25, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 37, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 43, 6), // "accept"
|
|
||||||
QT_MOC_LITERAL(6, 50, 29), // "on_spinNrDevices_valueChanged"
|
|
||||||
QT_MOC_LITERAL(7, 80, 4) // "arg1"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogDevices\0showEvent\0\0QShowEvent*\0"
|
|
||||||
"event\0accept\0on_spinNrDevices_valueChanged\0"
|
|
||||||
"arg1"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogDevices[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
3, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 29, 2, 0x0a /* Public */,
|
|
||||||
5, 0, 32, 2, 0x0a /* Public */,
|
|
||||||
6, 1, 33, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 7,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogDevices::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogDevices *_t = static_cast<DialogDevices *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->accept(); break;
|
|
||||||
case 2: _t->on_spinNrDevices_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogDevices::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogDevices.data,
|
|
||||||
qt_meta_data_DialogDevices, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogDevices::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogDevices::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogDevices.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogDevices*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogDevices::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 3)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 3;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 3)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 3;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,117 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialoghostip.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialoghostip.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialoghostip.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogHostIp_t {
|
|
||||||
QByteArrayData data[6];
|
|
||||||
char stringdata0[49];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogHostIp_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogHostIp_t qt_meta_stringdata_DialogHostIp = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "DialogHostIp"
|
|
||||||
QT_MOC_LITERAL(1, 13, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 23, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 24, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 36, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 42, 6) // "accept"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogHostIp\0showEvent\0\0QShowEvent*\0"
|
|
||||||
"event\0accept"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogHostIp[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
2, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 24, 2, 0x0a /* Public */,
|
|
||||||
5, 0, 27, 2, 0x0a /* Public */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogHostIp::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogHostIp *_t = static_cast<DialogHostIp *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->accept(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogHostIp::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogHostIp.data,
|
|
||||||
qt_meta_data_DialogHostIp, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogHostIp::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogHostIp::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogHostIp.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogHostIp*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogHostIp::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 2)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 2;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 2)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 2;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,120 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialoglinearity.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialoglinearity.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialoglinearity.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogLinearity_t {
|
|
||||||
QByteArrayData data[5];
|
|
||||||
char stringdata0[77];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogLinearity_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogLinearity_t qt_meta_stringdata_DialogLinearity = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 15), // "DialogLinearity"
|
|
||||||
QT_MOC_LITERAL(1, 16, 20), // "onHistogramCompleted"
|
|
||||||
QT_MOC_LITERAL(2, 37, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 38, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(4, 57, 19) // "on_pushSave_pressed"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogLinearity\0onHistogramCompleted\0"
|
|
||||||
"\0on_pushRun_pressed\0on_pushSave_pressed"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogLinearity[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
3, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 29, 2, 0x0a /* Public */,
|
|
||||||
3, 0, 30, 2, 0x08 /* Private */,
|
|
||||||
4, 0, 31, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogLinearity::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogLinearity *_t = static_cast<DialogLinearity *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->onHistogramCompleted(); break;
|
|
||||||
case 1: _t->on_pushRun_pressed(); break;
|
|
||||||
case 2: _t->on_pushSave_pressed(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Q_UNUSED(_a);
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogLinearity::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogLinearity.data,
|
|
||||||
qt_meta_data_DialogLinearity, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogLinearity::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogLinearity::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogLinearity.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogLinearity*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogLinearity::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 3)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 3;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 3)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 3;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,118 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialoglogsettings.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialoglogsettings.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialoglogsettings.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogLogSettings_t {
|
|
||||||
QByteArrayData data[7];
|
|
||||||
char stringdata0[82];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogLogSettings_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogLogSettings_t qt_meta_stringdata_DialogLogSettings = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 17), // "DialogLogSettings"
|
|
||||||
QT_MOC_LITERAL(1, 18, 29), // "on_buttonGroup_buttonReleased"
|
|
||||||
QT_MOC_LITERAL(2, 48, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 49, 4), // "arg1"
|
|
||||||
QT_MOC_LITERAL(4, 54, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(5, 64, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(6, 76, 5) // "event"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogLogSettings\0on_buttonGroup_buttonReleased\0"
|
|
||||||
"\0arg1\0showEvent\0QShowEvent*\0event"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogLogSettings[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
2, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 24, 2, 0x08 /* Private */,
|
|
||||||
4, 1, 27, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, QMetaType::Int, 3,
|
|
||||||
QMetaType::Void, 0x80000000 | 5, 6,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogLogSettings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogLogSettings *_t = static_cast<DialogLogSettings *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->on_buttonGroup_buttonReleased((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogLogSettings::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogLogSettings.data,
|
|
||||||
qt_meta_data_DialogLogSettings, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogLogSettings::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogLogSettings::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogLogSettings.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogLogSettings*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogLogSettings::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 2)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 2;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 2)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 2;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,135 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialogprofiler.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialogprofiler.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialogprofiler.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogProfiler_t {
|
|
||||||
QByteArrayData data[8];
|
|
||||||
char stringdata0[147];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogProfiler_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogProfiler_t qt_meta_stringdata_DialogProfiler = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 14), // "DialogProfiler"
|
|
||||||
QT_MOC_LITERAL(1, 15, 20), // "onHistogramCompleted"
|
|
||||||
QT_MOC_LITERAL(2, 36, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 37, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(4, 56, 19), // "on_pushSave_pressed"
|
|
||||||
QT_MOC_LITERAL(5, 76, 22), // "on_pushRunOnce_pressed"
|
|
||||||
QT_MOC_LITERAL(6, 99, 26), // "on_pushRunInfinite_pressed"
|
|
||||||
QT_MOC_LITERAL(7, 126, 20) // "on_pushClear_pressed"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogProfiler\0onHistogramCompleted\0"
|
|
||||||
"\0on_pushRun_pressed\0on_pushSave_pressed\0"
|
|
||||||
"on_pushRunOnce_pressed\0"
|
|
||||||
"on_pushRunInfinite_pressed\0"
|
|
||||||
"on_pushClear_pressed"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogProfiler[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
6, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 44, 2, 0x0a /* Public */,
|
|
||||||
3, 0, 45, 2, 0x08 /* Private */,
|
|
||||||
4, 0, 46, 2, 0x08 /* Private */,
|
|
||||||
5, 0, 47, 2, 0x08 /* Private */,
|
|
||||||
6, 0, 48, 2, 0x08 /* Private */,
|
|
||||||
7, 0, 49, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogProfiler::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogProfiler *_t = static_cast<DialogProfiler *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->onHistogramCompleted(); break;
|
|
||||||
case 1: _t->on_pushRun_pressed(); break;
|
|
||||||
case 2: _t->on_pushSave_pressed(); break;
|
|
||||||
case 3: _t->on_pushRunOnce_pressed(); break;
|
|
||||||
case 4: _t->on_pushRunInfinite_pressed(); break;
|
|
||||||
case 5: _t->on_pushClear_pressed(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Q_UNUSED(_a);
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogProfiler::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogProfiler.data,
|
|
||||||
qt_meta_data_DialogProfiler, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogProfiler::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogProfiler::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogProfiler.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogProfiler*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogProfiler::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 6)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 6;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 6)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 6;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,126 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialogtiscan.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialogtiscan.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialogtiscan.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogTiScan_t {
|
|
||||||
QByteArrayData data[8];
|
|
||||||
char stringdata0[102];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogTiScan_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogTiScan_t qt_meta_stringdata_DialogTiScan = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "DialogTiScan"
|
|
||||||
QT_MOC_LITERAL(1, 13, 20), // "onHistogramCompleted"
|
|
||||||
QT_MOC_LITERAL(2, 34, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 35, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(4, 45, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(5, 57, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(6, 63, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(7, 82, 19) // "on_pushSave_pressed"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogTiScan\0onHistogramCompleted\0\0"
|
|
||||||
"showEvent\0QShowEvent*\0event\0"
|
|
||||||
"on_pushRun_pressed\0on_pushSave_pressed"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogTiScan[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
4, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 34, 2, 0x0a /* Public */,
|
|
||||||
3, 1, 35, 2, 0x0a /* Public */,
|
|
||||||
6, 0, 38, 2, 0x08 /* Private */,
|
|
||||||
7, 0, 39, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, 0x80000000 | 4, 5,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogTiScan::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogTiScan *_t = static_cast<DialogTiScan *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->onHistogramCompleted(); break;
|
|
||||||
case 1: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 2: _t->on_pushRun_pressed(); break;
|
|
||||||
case 3: _t->on_pushSave_pressed(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogTiScan::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogTiScan.data,
|
|
||||||
qt_meta_data_DialogTiScan, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogTiScan::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogTiScan::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogTiScan.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogTiScan*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogTiScan::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 4)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 4;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 4)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 4;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,138 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'dialogtriggersettings.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../dialogtriggersettings.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'dialogtriggersettings.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DialogTriggerSettings_t {
|
|
||||||
QByteArrayData data[11];
|
|
||||||
char stringdata0[193];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogTriggerSettings_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogTriggerSettings_t qt_meta_stringdata_DialogTriggerSettings = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 21), // "DialogTriggerSettings"
|
|
||||||
QT_MOC_LITERAL(1, 22, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 32, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 33, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 45, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 51, 6), // "accept"
|
|
||||||
QT_MOC_LITERAL(6, 58, 31), // "on_spinPeriodTicks_valueChanged"
|
|
||||||
QT_MOC_LITERAL(7, 90, 4), // "arg1"
|
|
||||||
QT_MOC_LITERAL(8, 95, 29), // "on_spinTintTicks_valueChanged"
|
|
||||||
QT_MOC_LITERAL(9, 125, 34), // "on_spinPeriodTicks_v2_valueCh..."
|
|
||||||
QT_MOC_LITERAL(10, 160, 32) // "on_spinTintTicks_v2_valueChanged"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DialogTriggerSettings\0showEvent\0\0"
|
|
||||||
"QShowEvent*\0event\0accept\0"
|
|
||||||
"on_spinPeriodTicks_valueChanged\0arg1\0"
|
|
||||||
"on_spinTintTicks_valueChanged\0"
|
|
||||||
"on_spinPeriodTicks_v2_valueChanged\0"
|
|
||||||
"on_spinTintTicks_v2_valueChanged"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogTriggerSettings[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
6, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 44, 2, 0x0a /* Public */,
|
|
||||||
5, 0, 47, 2, 0x0a /* Public */,
|
|
||||||
6, 1, 48, 2, 0x08 /* Private */,
|
|
||||||
8, 1, 51, 2, 0x08 /* Private */,
|
|
||||||
9, 1, 54, 2, 0x08 /* Private */,
|
|
||||||
10, 1, 57, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 7,
|
|
||||||
QMetaType::Void, QMetaType::Int, 7,
|
|
||||||
QMetaType::Void, QMetaType::Int, 7,
|
|
||||||
QMetaType::Void, QMetaType::Int, 7,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void DialogTriggerSettings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
DialogTriggerSettings *_t = static_cast<DialogTriggerSettings *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->accept(); break;
|
|
||||||
case 2: _t->on_spinPeriodTicks_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 3: _t->on_spinTintTicks_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 4: _t->on_spinPeriodTicks_v2_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 5: _t->on_spinTintTicks_v2_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DialogTriggerSettings::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogTriggerSettings.data,
|
|
||||||
qt_meta_data_DialogTriggerSettings, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogTriggerSettings::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DialogTriggerSettings::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogTriggerSettings.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DialogTriggerSettings*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DialogTriggerSettings::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 6)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 6;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 6)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 6;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,112 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'display.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../display.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'display.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_Display_t {
|
|
||||||
QByteArrayData data[5];
|
|
||||||
char stringdata0[37];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_Display_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_Display_t qt_meta_stringdata_Display = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 7), // "Display"
|
|
||||||
QT_MOC_LITERAL(1, 8, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 18, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 19, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 31, 5) // "event"
|
|
||||||
|
|
||||||
},
|
|
||||||
"Display\0showEvent\0\0QShowEvent*\0event"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_Display[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // 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, 0x0a /* Public */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void Display::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
Display *_t = static_cast<Display *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject Display::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_Display.data,
|
|
||||||
qt_meta_data_Display, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *Display::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *Display::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_Display.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< Display*>(this));
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int Display::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::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_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,89 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'displayserver.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../displayserver.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'displayserver.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_DisplayServer_t {
|
|
||||||
QByteArrayData data[1];
|
|
||||||
char stringdata0[14];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DisplayServer_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DisplayServer_t qt_meta_stringdata_DisplayServer = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 13) // "DisplayServer"
|
|
||||||
|
|
||||||
},
|
|
||||||
"DisplayServer"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_DisplayServer[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // 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 DisplayServer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
Q_UNUSED(_o);
|
|
||||||
Q_UNUSED(_id);
|
|
||||||
Q_UNUSED(_c);
|
|
||||||
Q_UNUSED(_a);
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject DisplayServer::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_DisplayServer.data,
|
|
||||||
qt_meta_data_DisplayServer, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DisplayServer::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DisplayServer::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DisplayServer.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< DisplayServer*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DisplayServer::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,281 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'eventbuilder.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../eventbuilder.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'eventbuilder.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_EventBuilder_t {
|
|
||||||
QByteArrayData data[19];
|
|
||||||
char stringdata0[252];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_EventBuilder_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_EventBuilder_t qt_meta_stringdata_EventBuilder = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "EventBuilder"
|
|
||||||
QT_MOC_LITERAL(1, 13, 7), // "sigInit"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 9), // "sigDeinit"
|
|
||||||
QT_MOC_LITERAL(4, 32, 15), // "sigStartLogging"
|
|
||||||
QT_MOC_LITERAL(5, 48, 14), // "sigStopLogging"
|
|
||||||
QT_MOC_LITERAL(6, 63, 20), // "sigStartTakingHistos"
|
|
||||||
QT_MOC_LITERAL(7, 84, 19), // "sigStopTakingHistos"
|
|
||||||
QT_MOC_LITERAL(8, 104, 17), // "sigHistoCompleted"
|
|
||||||
QT_MOC_LITERAL(9, 122, 9), // "onNewData"
|
|
||||||
QT_MOC_LITERAL(10, 132, 13), // "DataReceiver*"
|
|
||||||
QT_MOC_LITERAL(11, 146, 8), // "receiver"
|
|
||||||
QT_MOC_LITERAL(12, 155, 6), // "onInit"
|
|
||||||
QT_MOC_LITERAL(13, 162, 8), // "onDeinit"
|
|
||||||
QT_MOC_LITERAL(14, 171, 14), // "onStartLogging"
|
|
||||||
QT_MOC_LITERAL(15, 186, 13), // "onStopLogging"
|
|
||||||
QT_MOC_LITERAL(16, 200, 19), // "onStartTakingHistos"
|
|
||||||
QT_MOC_LITERAL(17, 220, 12), // "sample_count"
|
|
||||||
QT_MOC_LITERAL(18, 233, 18) // "onStopTakingHistos"
|
|
||||||
|
|
||||||
},
|
|
||||||
"EventBuilder\0sigInit\0\0sigDeinit\0"
|
|
||||||
"sigStartLogging\0sigStopLogging\0"
|
|
||||||
"sigStartTakingHistos\0sigStopTakingHistos\0"
|
|
||||||
"sigHistoCompleted\0onNewData\0DataReceiver*\0"
|
|
||||||
"receiver\0onInit\0onDeinit\0onStartLogging\0"
|
|
||||||
"onStopLogging\0onStartTakingHistos\0"
|
|
||||||
"sample_count\0onStopTakingHistos"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_EventBuilder[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
14, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
7, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 84, 2, 0x06 /* Public */,
|
|
||||||
3, 0, 85, 2, 0x06 /* Public */,
|
|
||||||
4, 0, 86, 2, 0x06 /* Public */,
|
|
||||||
5, 0, 87, 2, 0x06 /* Public */,
|
|
||||||
6, 1, 88, 2, 0x06 /* Public */,
|
|
||||||
7, 0, 91, 2, 0x06 /* Public */,
|
|
||||||
8, 0, 92, 2, 0x06 /* Public */,
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
9, 1, 93, 2, 0x0a /* Public */,
|
|
||||||
12, 0, 96, 2, 0x09 /* Protected */,
|
|
||||||
13, 0, 97, 2, 0x09 /* Protected */,
|
|
||||||
14, 0, 98, 2, 0x09 /* Protected */,
|
|
||||||
15, 0, 99, 2, 0x09 /* Protected */,
|
|
||||||
16, 1, 100, 2, 0x09 /* Protected */,
|
|
||||||
18, 0, 103, 2, 0x09 /* Protected */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 2,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 10, 11,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 17,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void EventBuilder::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
EventBuilder *_t = static_cast<EventBuilder *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->sigInit(); break;
|
|
||||||
case 1: _t->sigDeinit(); break;
|
|
||||||
case 2: _t->sigStartLogging(); break;
|
|
||||||
case 3: _t->sigStopLogging(); break;
|
|
||||||
case 4: _t->sigStartTakingHistos((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 5: _t->sigStopTakingHistos(); break;
|
|
||||||
case 6: _t->sigHistoCompleted(); break;
|
|
||||||
case 7: _t->onNewData((*reinterpret_cast< DataReceiver*(*)>(_a[1]))); break;
|
|
||||||
case 8: _t->onInit(); break;
|
|
||||||
case 9: _t->onDeinit(); break;
|
|
||||||
case 10: _t->onStartLogging(); break;
|
|
||||||
case 11: _t->onStopLogging(); break;
|
|
||||||
case 12: _t->onStartTakingHistos((*reinterpret_cast< int(*)>(_a[1]))); break;
|
|
||||||
case 13: _t->onStopTakingHistos(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
switch (_id) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 7:
|
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
|
||||||
case 0:
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< DataReceiver* >(); break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
void **func = reinterpret_cast<void **>(_a[1]);
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigInit)) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigDeinit)) {
|
|
||||||
*result = 1;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigStartLogging)) {
|
|
||||||
*result = 2;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigStopLogging)) {
|
|
||||||
*result = 3;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)(int );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigStartTakingHistos)) {
|
|
||||||
*result = 4;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigStopTakingHistos)) {
|
|
||||||
*result = 5;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (EventBuilder::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&EventBuilder::sigHistoCompleted)) {
|
|
||||||
*result = 6;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject EventBuilder::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_EventBuilder.data,
|
|
||||||
qt_meta_data_EventBuilder, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *EventBuilder::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *EventBuilder::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_EventBuilder.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< EventBuilder*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int EventBuilder::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 14)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 14;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 14)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 14;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void EventBuilder::sigInit()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 1
|
|
||||||
void EventBuilder::sigDeinit()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 2
|
|
||||||
void EventBuilder::sigStartLogging()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 2, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 3
|
|
||||||
void EventBuilder::sigStopLogging()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 3, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 4
|
|
||||||
void EventBuilder::sigStartTakingHistos(int _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 4, _a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 5
|
|
||||||
void EventBuilder::sigStopTakingHistos()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 5, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 6
|
|
||||||
void EventBuilder::sigHistoCompleted()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 6, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,89 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'hw.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../hw.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'hw.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_HW_t {
|
|
||||||
QByteArrayData data[1];
|
|
||||||
char stringdata0[3];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_HW_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_HW_t qt_meta_stringdata_HW = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 2) // "HW"
|
|
||||||
|
|
||||||
},
|
|
||||||
"HW"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_HW[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // 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 HW::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
Q_UNUSED(_o);
|
|
||||||
Q_UNUSED(_id);
|
|
||||||
Q_UNUSED(_c);
|
|
||||||
Q_UNUSED(_a);
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject HW::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_HW.data,
|
|
||||||
qt_meta_data_HW, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *HW::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *HW::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_HW.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< HW*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int HW::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,416 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'keithley_thr.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../keithley_thr.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'keithley_thr.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_keithleyWorker_t {
|
|
||||||
QByteArrayData data[15];
|
|
||||||
char stringdata0[134];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_keithleyWorker_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_keithleyWorker_t qt_meta_stringdata_keithleyWorker = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 14), // "keithleyWorker"
|
|
||||||
QT_MOC_LITERAL(1, 15, 18), // "sig_currentReadout"
|
|
||||||
QT_MOC_LITERAL(2, 34, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 35, 5), // "value"
|
|
||||||
QT_MOC_LITERAL(4, 41, 10), // "sig_isOpen"
|
|
||||||
QT_MOC_LITERAL(5, 52, 5), // "state"
|
|
||||||
QT_MOC_LITERAL(6, 58, 8), // "portName"
|
|
||||||
QT_MOC_LITERAL(7, 67, 2), // "on"
|
|
||||||
QT_MOC_LITERAL(8, 70, 10), // "setVoltage"
|
|
||||||
QT_MOC_LITERAL(9, 81, 7), // "voltage"
|
|
||||||
QT_MOC_LITERAL(10, 89, 5), // "reset"
|
|
||||||
QT_MOC_LITERAL(11, 95, 10), // "timerEvent"
|
|
||||||
QT_MOC_LITERAL(12, 106, 8), // "runTimer"
|
|
||||||
QT_MOC_LITERAL(13, 115, 7), // "connect"
|
|
||||||
QT_MOC_LITERAL(14, 123, 10) // "disconnect"
|
|
||||||
|
|
||||||
},
|
|
||||||
"keithleyWorker\0sig_currentReadout\0\0"
|
|
||||||
"value\0sig_isOpen\0state\0portName\0on\0"
|
|
||||||
"setVoltage\0voltage\0reset\0timerEvent\0"
|
|
||||||
"runTimer\0connect\0disconnect"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_keithleyWorker[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
9, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
2, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 59, 2, 0x06 /* Public */,
|
|
||||||
4, 2, 62, 2, 0x06 /* Public */,
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
7, 1, 67, 2, 0x0a /* Public */,
|
|
||||||
8, 1, 70, 2, 0x0a /* Public */,
|
|
||||||
10, 0, 73, 2, 0x0a /* Public */,
|
|
||||||
11, 0, 74, 2, 0x0a /* Public */,
|
|
||||||
12, 1, 75, 2, 0x0a /* Public */,
|
|
||||||
13, 0, 78, 2, 0x0a /* Public */,
|
|
||||||
14, 0, 79, 2, 0x0a /* Public */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void, QMetaType::Double, 3,
|
|
||||||
QMetaType::Void, QMetaType::Int, QMetaType::QString, 5, 6,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, QMetaType::Int, 5,
|
|
||||||
QMetaType::Void, QMetaType::Double, 9,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 5,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void keithleyWorker::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
keithleyWorker *_t = static_cast<keithleyWorker *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->sig_currentReadout((*reinterpret_cast< const double(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->sig_isOpen((*reinterpret_cast< const int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break;
|
|
||||||
case 2: _t->on((*reinterpret_cast< const int(*)>(_a[1]))); break;
|
|
||||||
case 3: _t->setVoltage((*reinterpret_cast< const double(*)>(_a[1]))); break;
|
|
||||||
case 4: _t->reset(); break;
|
|
||||||
case 5: _t->timerEvent(); break;
|
|
||||||
case 6: _t->runTimer((*reinterpret_cast< const int(*)>(_a[1]))); break;
|
|
||||||
case 7: _t->connect(); break;
|
|
||||||
case 8: _t->disconnect(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
void **func = reinterpret_cast<void **>(_a[1]);
|
|
||||||
{
|
|
||||||
typedef void (keithleyWorker::*_t)(const double );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithleyWorker::sig_currentReadout)) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithleyWorker::*_t)(const int , const QString );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithleyWorker::sig_isOpen)) {
|
|
||||||
*result = 1;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject keithleyWorker::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_keithleyWorker.data,
|
|
||||||
qt_meta_data_keithleyWorker, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *keithleyWorker::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *keithleyWorker::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_keithleyWorker.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< keithleyWorker*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int keithleyWorker::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 9)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 9;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 9)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 9;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void keithleyWorker::sig_currentReadout(const double _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, _a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 1
|
|
||||||
void keithleyWorker::sig_isOpen(const int _t1, const QString _t2)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)), const_cast<void*>(reinterpret_cast<const void*>(&_t2)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 1, _a);
|
|
||||||
}
|
|
||||||
struct qt_meta_stringdata_keithley_thr_t {
|
|
||||||
QByteArrayData data[14];
|
|
||||||
char stringdata0[163];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_keithley_thr_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_keithley_thr_t qt_meta_stringdata_keithley_thr = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "keithley_thr"
|
|
||||||
QT_MOC_LITERAL(1, 13, 11), // "sig_connect"
|
|
||||||
QT_MOC_LITERAL(2, 25, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 26, 14), // "sig_disconnect"
|
|
||||||
QT_MOC_LITERAL(4, 41, 6), // "sig_on"
|
|
||||||
QT_MOC_LITERAL(5, 48, 14), // "sig_setVoltage"
|
|
||||||
QT_MOC_LITERAL(6, 63, 9), // "sig_reset"
|
|
||||||
QT_MOC_LITERAL(7, 73, 12), // "sig_runTimer"
|
|
||||||
QT_MOC_LITERAL(8, 86, 22), // "esig_newCurrentReadout"
|
|
||||||
QT_MOC_LITERAL(9, 109, 17), // "on_currentReadout"
|
|
||||||
QT_MOC_LITERAL(10, 127, 5), // "value"
|
|
||||||
QT_MOC_LITERAL(11, 133, 9), // "on_isOpen"
|
|
||||||
QT_MOC_LITERAL(12, 143, 5), // "state"
|
|
||||||
QT_MOC_LITERAL(13, 149, 13) // "givenPortName"
|
|
||||||
|
|
||||||
},
|
|
||||||
"keithley_thr\0sig_connect\0\0sig_disconnect\0"
|
|
||||||
"sig_on\0sig_setVoltage\0sig_reset\0"
|
|
||||||
"sig_runTimer\0esig_newCurrentReadout\0"
|
|
||||||
"on_currentReadout\0value\0on_isOpen\0"
|
|
||||||
"state\0givenPortName"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_keithley_thr[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
9, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
7, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags
|
|
||||||
1, 0, 59, 2, 0x06 /* Public */,
|
|
||||||
3, 0, 60, 2, 0x06 /* Public */,
|
|
||||||
4, 1, 61, 2, 0x06 /* Public */,
|
|
||||||
5, 1, 64, 2, 0x06 /* Public */,
|
|
||||||
6, 0, 67, 2, 0x06 /* Public */,
|
|
||||||
7, 1, 68, 2, 0x06 /* Public */,
|
|
||||||
8, 1, 71, 2, 0x06 /* Public */,
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
9, 1, 74, 2, 0x0a /* Public */,
|
|
||||||
11, 2, 77, 2, 0x0a /* Public */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 2,
|
|
||||||
QMetaType::Void, QMetaType::Double, 2,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Int, 2,
|
|
||||||
QMetaType::Void, QMetaType::Double, 2,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Int, QMetaType::Double, 10,
|
|
||||||
QMetaType::Int, QMetaType::Int, QMetaType::QString, 12, 13,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void keithley_thr::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
keithley_thr *_t = static_cast<keithley_thr *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->sig_connect(); break;
|
|
||||||
case 1: _t->sig_disconnect(); break;
|
|
||||||
case 2: _t->sig_on((*reinterpret_cast< const int(*)>(_a[1]))); break;
|
|
||||||
case 3: _t->sig_setVoltage((*reinterpret_cast< const double(*)>(_a[1]))); break;
|
|
||||||
case 4: _t->sig_reset(); break;
|
|
||||||
case 5: _t->sig_runTimer((*reinterpret_cast< const int(*)>(_a[1]))); break;
|
|
||||||
case 6: _t->esig_newCurrentReadout((*reinterpret_cast< const double(*)>(_a[1]))); break;
|
|
||||||
case 7: { int _r = _t->on_currentReadout((*reinterpret_cast< const double(*)>(_a[1])));
|
|
||||||
if (_a[0]) *reinterpret_cast< int*>(_a[0]) = _r; } break;
|
|
||||||
case 8: { int _r = _t->on_isOpen((*reinterpret_cast< const int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])));
|
|
||||||
if (_a[0]) *reinterpret_cast< int*>(_a[0]) = _r; } break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
} else if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
void **func = reinterpret_cast<void **>(_a[1]);
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_connect)) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_disconnect)) {
|
|
||||||
*result = 1;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)(const int );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_on)) {
|
|
||||||
*result = 2;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)(const double );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_setVoltage)) {
|
|
||||||
*result = 3;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)();
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_reset)) {
|
|
||||||
*result = 4;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)(const int );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::sig_runTimer)) {
|
|
||||||
*result = 5;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
typedef void (keithley_thr::*_t)(const double );
|
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&keithley_thr::esig_newCurrentReadout)) {
|
|
||||||
*result = 6;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject keithley_thr::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_keithley_thr.data,
|
|
||||||
qt_meta_data_keithley_thr, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *keithley_thr::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *keithley_thr::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_keithley_thr.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< keithley_thr*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int keithley_thr::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 9)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 9;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 9)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 9;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void keithley_thr::sig_connect()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 1
|
|
||||||
void keithley_thr::sig_disconnect()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 2
|
|
||||||
void keithley_thr::sig_on(const int _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 2, _a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 3
|
|
||||||
void keithley_thr::sig_setVoltage(const double _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 3, _a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 4
|
|
||||||
void keithley_thr::sig_reset()
|
|
||||||
{
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 4, Q_NULLPTR);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 5
|
|
||||||
void keithley_thr::sig_runTimer(const int _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 5, _a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 6
|
|
||||||
void keithley_thr::esig_newCurrentReadout(const double _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 6, _a);
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
@ -1,212 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'mainwindow.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../mainwindow.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'mainwindow.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_MainWindow_t {
|
|
||||||
QByteArrayData data[27];
|
|
||||||
char stringdata0[635];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 10), // "MainWindow"
|
|
||||||
QT_MOC_LITERAL(1, 11, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 34, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 40, 10), // "closeEvent"
|
|
||||||
QT_MOC_LITERAL(6, 51, 12), // "QCloseEvent*"
|
|
||||||
QT_MOC_LITERAL(7, 64, 8), // "on_timer"
|
|
||||||
QT_MOC_LITERAL(8, 73, 20), // "on_newCurrentReadout"
|
|
||||||
QT_MOC_LITERAL(9, 94, 14), // "currentReadout"
|
|
||||||
QT_MOC_LITERAL(10, 109, 26), // "on_pushLogSettings_pressed"
|
|
||||||
QT_MOC_LITERAL(11, 136, 26), // "on_actionConnect_triggered"
|
|
||||||
QT_MOC_LITERAL(12, 163, 29), // "on_actionDisconnect_triggered"
|
|
||||||
QT_MOC_LITERAL(13, 193, 26), // "on_actionHost_IP_triggered"
|
|
||||||
QT_MOC_LITERAL(14, 220, 33), // "on_actionTrigger_config_trigg..."
|
|
||||||
QT_MOC_LITERAL(15, 254, 26), // "on_actionDevices_triggered"
|
|
||||||
QT_MOC_LITERAL(16, 281, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(17, 300, 22), // "on_pushLogging_pressed"
|
|
||||||
QT_MOC_LITERAL(18, 323, 22), // "on_pushDisplay_pressed"
|
|
||||||
QT_MOC_LITERAL(19, 346, 35), // "on_actionConnect_Keithley_tri..."
|
|
||||||
QT_MOC_LITERAL(20, 382, 38), // "on_actionDisconnect_Keithley_..."
|
|
||||||
QT_MOC_LITERAL(21, 421, 33), // "on_actionLinearity_test_trigg..."
|
|
||||||
QT_MOC_LITERAL(22, 455, 40), // "on_actionIntegration_time_sca..."
|
|
||||||
QT_MOC_LITERAL(23, 496, 33), // "on_actionProfile_viewer_trigg..."
|
|
||||||
QT_MOC_LITERAL(24, 530, 34), // "on_actionConnect_Stepper_trig..."
|
|
||||||
QT_MOC_LITERAL(25, 565, 37), // "on_actionDisconnect_Stepper_t..."
|
|
||||||
QT_MOC_LITERAL(26, 603, 31) // "on_actionBeta_Scanner_triggered"
|
|
||||||
|
|
||||||
},
|
|
||||||
"MainWindow\0showEvent\0\0QShowEvent*\0"
|
|
||||||
"event\0closeEvent\0QCloseEvent*\0on_timer\0"
|
|
||||||
"on_newCurrentReadout\0currentReadout\0"
|
|
||||||
"on_pushLogSettings_pressed\0"
|
|
||||||
"on_actionConnect_triggered\0"
|
|
||||||
"on_actionDisconnect_triggered\0"
|
|
||||||
"on_actionHost_IP_triggered\0"
|
|
||||||
"on_actionTrigger_config_triggered\0"
|
|
||||||
"on_actionDevices_triggered\0"
|
|
||||||
"on_pushRun_pressed\0on_pushLogging_pressed\0"
|
|
||||||
"on_pushDisplay_pressed\0"
|
|
||||||
"on_actionConnect_Keithley_triggered\0"
|
|
||||||
"on_actionDisconnect_Keithley_triggered\0"
|
|
||||||
"on_actionLinearity_test_triggered\0"
|
|
||||||
"on_actionIntegration_time_scan_triggered\0"
|
|
||||||
"on_actionProfile_viewer_triggered\0"
|
|
||||||
"on_actionConnect_Stepper_triggered\0"
|
|
||||||
"on_actionDisconnect_Stepper_triggered\0"
|
|
||||||
"on_actionBeta_Scanner_triggered"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_MainWindow[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
21, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
|
||||||
1, 1, 119, 2, 0x0a /* Public */,
|
|
||||||
5, 1, 122, 2, 0x0a /* Public */,
|
|
||||||
7, 0, 125, 2, 0x0a /* Public */,
|
|
||||||
8, 1, 126, 2, 0x0a /* Public */,
|
|
||||||
10, 0, 129, 2, 0x08 /* Private */,
|
|
||||||
11, 0, 130, 2, 0x08 /* Private */,
|
|
||||||
12, 0, 131, 2, 0x08 /* Private */,
|
|
||||||
13, 0, 132, 2, 0x08 /* Private */,
|
|
||||||
14, 0, 133, 2, 0x08 /* Private */,
|
|
||||||
15, 0, 134, 2, 0x08 /* Private */,
|
|
||||||
16, 0, 135, 2, 0x08 /* Private */,
|
|
||||||
17, 0, 136, 2, 0x08 /* Private */,
|
|
||||||
18, 0, 137, 2, 0x08 /* Private */,
|
|
||||||
19, 0, 138, 2, 0x08 /* Private */,
|
|
||||||
20, 0, 139, 2, 0x08 /* Private */,
|
|
||||||
21, 0, 140, 2, 0x08 /* Private */,
|
|
||||||
22, 0, 141, 2, 0x08 /* Private */,
|
|
||||||
23, 0, 142, 2, 0x08 /* Private */,
|
|
||||||
24, 0, 143, 2, 0x08 /* Private */,
|
|
||||||
25, 0, 144, 2, 0x08 /* Private */,
|
|
||||||
26, 0, 145, 2, 0x08 /* Private */,
|
|
||||||
|
|
||||||
// slots: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
QMetaType::Void, 0x80000000 | 6, 4,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void, QMetaType::Double, 9,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
QMetaType::Void,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
MainWindow *_t = static_cast<MainWindow *>(_o);
|
|
||||||
Q_UNUSED(_t)
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
|
||||||
case 1: _t->closeEvent((*reinterpret_cast< QCloseEvent*(*)>(_a[1]))); break;
|
|
||||||
case 2: _t->on_timer(); break;
|
|
||||||
case 3: _t->on_newCurrentReadout((*reinterpret_cast< const double(*)>(_a[1]))); break;
|
|
||||||
case 4: _t->on_pushLogSettings_pressed(); break;
|
|
||||||
case 5: _t->on_actionConnect_triggered(); break;
|
|
||||||
case 6: _t->on_actionDisconnect_triggered(); break;
|
|
||||||
case 7: _t->on_actionHost_IP_triggered(); break;
|
|
||||||
case 8: _t->on_actionTrigger_config_triggered(); break;
|
|
||||||
case 9: _t->on_actionDevices_triggered(); break;
|
|
||||||
case 10: _t->on_pushRun_pressed(); break;
|
|
||||||
case 11: _t->on_pushLogging_pressed(); break;
|
|
||||||
case 12: _t->on_pushDisplay_pressed(); break;
|
|
||||||
case 13: _t->on_actionConnect_Keithley_triggered(); break;
|
|
||||||
case 14: _t->on_actionDisconnect_Keithley_triggered(); break;
|
|
||||||
case 15: _t->on_actionLinearity_test_triggered(); break;
|
|
||||||
case 16: _t->on_actionIntegration_time_scan_triggered(); break;
|
|
||||||
case 17: _t->on_actionProfile_viewer_triggered(); break;
|
|
||||||
case 18: _t->on_actionConnect_Stepper_triggered(); break;
|
|
||||||
case 19: _t->on_actionDisconnect_Stepper_triggered(); break;
|
|
||||||
case 20: _t->on_actionBeta_Scanner_triggered(); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject MainWindow::staticMetaObject = {
|
|
||||||
{ &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow.data,
|
|
||||||
qt_meta_data_MainWindow, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *MainWindow::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *MainWindow::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< MainWindow*>(this));
|
|
||||||
return QMainWindow::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QMainWindow::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 21)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 21;
|
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 21)
|
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
|
||||||
_id -= 21;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,89 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'stepper.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../stepper.h"
|
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
|
||||||
#error "The header file 'stepper.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
|
||||||
#error "This file was generated using the moc from 5.7.0. 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
|
|
||||||
struct qt_meta_stringdata_Stepper_t {
|
|
||||||
QByteArrayData data[1];
|
|
||||||
char stringdata0[8];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_Stepper_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_Stepper_t qt_meta_stringdata_Stepper = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 7) // "Stepper"
|
|
||||||
|
|
||||||
},
|
|
||||||
"Stepper"
|
|
||||||
};
|
|
||||||
#undef QT_MOC_LITERAL
|
|
||||||
|
|
||||||
static const uint qt_meta_data_Stepper[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
7, // 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 Stepper::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
Q_UNUSED(_o);
|
|
||||||
Q_UNUSED(_id);
|
|
||||||
Q_UNUSED(_c);
|
|
||||||
Q_UNUSED(_a);
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject Stepper::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_Stepper.data,
|
|
||||||
qt_meta_data_Stepper, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *Stepper::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *Stepper::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return Q_NULLPTR;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_Stepper.stringdata0))
|
|
||||||
return static_cast<void*>(const_cast< Stepper*>(this));
|
|
||||||
return QObject::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int Stepper::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QObject::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_END_MOC_NAMESPACE
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +1,5 @@
|
|||||||
[Global]
|
[Global]
|
||||||
NrDevices=4
|
NrDevices=2
|
||||||
HostIp=10.0.7.1
|
HostIp=10.0.7.1
|
||||||
|
|
||||||
[Device0]
|
[Device0]
|
||||||
@ -13,11 +13,11 @@ MasterDelay=62
|
|||||||
SlaveDelay=34
|
SlaveDelay=34
|
||||||
|
|
||||||
[Device1]
|
[Device1]
|
||||||
IP=10.0.7.3
|
IP=10.0.7.18
|
||||||
HardwareVer=1
|
HardwareVer=2
|
||||||
Plane=1
|
Plane=1
|
||||||
Position=0
|
Position=0
|
||||||
Sensors=2
|
Sensors=5
|
||||||
Master=0
|
Master=0
|
||||||
MasterDelay=7
|
MasterDelay=7
|
||||||
SlaveDelay=1
|
SlaveDelay=1
|
||||||
|
@ -6,6 +6,24 @@ Display::Display(QWidget *parent) :
|
|||||||
ui(new Ui::display)
|
ui(new Ui::display)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
|
|
||||||
|
// Copy/Create and initialize radio buttons
|
||||||
|
radioButtonFixedScale = ui->radioButtonFixedScale;//new QRadioButton("Fixed Scale", this);
|
||||||
|
radioButtonAutoscale = ui->radioButtonAutoscale;//new QRadioButton("Autoscale", this);
|
||||||
|
|
||||||
|
// Copy/Create and initialize the button group
|
||||||
|
buttonGroup = ui->buttonGroup;//new QButtonGroup(this);
|
||||||
|
buttonGroup->setExclusive(true); // Ensure exclusivity
|
||||||
|
|
||||||
|
// Add radio buttons to the button group
|
||||||
|
buttonGroup->addButton(ui->radioButtonFixedScale);
|
||||||
|
buttonGroup->addButton(ui->radioButtonAutoscale);
|
||||||
|
buttonGroup->addButton(ui->radioButtonMaxScale);
|
||||||
|
|
||||||
|
// Connect the buttonClicked signal of the button group
|
||||||
|
connect(buttonGroup, SIGNAL(buttonClicked(QAbstractButton*)), this, SLOT(onButtonClicked(QAbstractButton*)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Display::~Display()
|
Display::~Display()
|
||||||
@ -55,8 +73,10 @@ void Display::plot(const QVector<unsigned short> &data)
|
|||||||
max = dataY[i];
|
max = dataY[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ui->checkAutoscale->isChecked())
|
if (ui->radioButtonAutoscale->isChecked())
|
||||||
ui->plot->yAxis->setRange(min-0.05*(max-min),max+0.05*(max-min));
|
ui->plot->yAxis->setRange(min-0.05*(max-min),max+0.05*(max-min));
|
||||||
|
else if (ui->radioButtonFixedScale ->isChecked())
|
||||||
|
ui->plot->yAxis->setRange(ui->spinBox_fixedmin->value(), ui->spinBox_fixedmax->value());
|
||||||
else
|
else
|
||||||
ui->plot->yAxis->setRange(-1000,66000);
|
ui->plot->yAxis->setRange(-1000,66000);
|
||||||
|
|
||||||
@ -76,3 +96,25 @@ void Display::setTitle(QString title)
|
|||||||
{
|
{
|
||||||
ui->lineTitle->setText(title);
|
ui->lineTitle->setText(title);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Slot to handle button clicks
|
||||||
|
void Display::onButtonClicked(QAbstractButton *button)
|
||||||
|
{
|
||||||
|
// Handle button clicks here
|
||||||
|
if (button == radioButtonFixedScale)
|
||||||
|
{
|
||||||
|
// Fixed Scale radio button clicked
|
||||||
|
// Handle the Fixed Scale selection
|
||||||
|
// Perform actions when Fixed Scale is selected
|
||||||
|
radioButtonFixedScale->setChecked(true); // Enable relevant controls
|
||||||
|
radioButtonAutoscale->setChecked(false); // Disable other controls
|
||||||
|
}//
|
||||||
|
else if (button == radioButtonAutoscale)
|
||||||
|
{
|
||||||
|
// Autoscale radio button clicked
|
||||||
|
// Handle the Autoscale selection
|
||||||
|
// Perform actions when Autoscale is selected
|
||||||
|
ui->radioButtonFixedScale->setChecked(false); // Disable relevant controls
|
||||||
|
ui->radioButtonAutoscale->setChecked(true); // setEnabled(true); // Enable other controls
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QVector>
|
#include <QVector>
|
||||||
|
#include <QRadioButton>
|
||||||
|
#include <QButtonGroup>
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class display;
|
class display;
|
||||||
@ -25,12 +27,17 @@ public:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void showEvent(QShowEvent *event);
|
void showEvent(QShowEvent *event);
|
||||||
|
void onButtonClicked(QAbstractButton *button);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
int nrPoints = 0;
|
int nrPoints = 0;
|
||||||
QVector<double> dataX;
|
QVector<double> dataX;
|
||||||
QVector<double> dataY;
|
QVector<double> dataY;
|
||||||
private:
|
private:
|
||||||
Ui::display *ui;
|
Ui::display *ui;
|
||||||
|
QRadioButton *radioButtonFixedScale; // Pointer to the Fixed Scale radio button
|
||||||
|
QRadioButton *radioButtonAutoscale; // Pointer to the Autoscale radio button
|
||||||
|
QButtonGroup *buttonGroup;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -49,9 +49,81 @@
|
|||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="checkAutoscale">
|
<widget class="QRadioButton" name="radioButtonAutoscale">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Autoscale</string>
|
<string>Auto Y-Scale</string>
|
||||||
|
</property>
|
||||||
|
<attribute name="buttonGroup">
|
||||||
|
<string notr="true">buttonGroup</string>
|
||||||
|
</attribute>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="Line" name="line">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="radioButtonMaxScale">
|
||||||
|
<property name="text">
|
||||||
|
<string>Max Y-Scale</string>
|
||||||
|
</property>
|
||||||
|
<attribute name="buttonGroup">
|
||||||
|
<string notr="true">buttonGroup</string>
|
||||||
|
</attribute>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="Line" name="line_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="radioButtonFixedScale">
|
||||||
|
<property name="text">
|
||||||
|
<string>Fixed Y-Scale</string>
|
||||||
|
</property>
|
||||||
|
<attribute name="buttonGroup">
|
||||||
|
<string notr="true">buttonGroup</string>
|
||||||
|
</attribute>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fixedmin">
|
||||||
|
<property name="minimum">
|
||||||
|
<number>-1000</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>66000</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>100</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>-1000</number>
|
||||||
|
</property>
|
||||||
|
<property name="displayIntegerBase">
|
||||||
|
<number>10</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QSpinBox" name="spinBox_fixedmax">
|
||||||
|
<property name="minimum">
|
||||||
|
<number>1000</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>65000</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>100</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>65000</number>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@ -70,4 +142,7 @@
|
|||||||
</customwidgets>
|
</customwidgets>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
<buttongroups>
|
||||||
|
<buttongroup name="buttonGroup"/>
|
||||||
|
</buttongroups>
|
||||||
</ui>
|
</ui>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE QtCreatorProject>
|
<!DOCTYPE QtCreatorProject>
|
||||||
<!-- Written by QtCreator 11.0.0, 2023-09-06T18:16:04. -->
|
<!-- Written by QtCreator 11.0.0, 2023-09-07T09:53:02. -->
|
||||||
<qtcreator>
|
<qtcreator>
|
||||||
<data>
|
<data>
|
||||||
<variable>EnvironmentId</variable>
|
<variable>EnvironmentId</variable>
|
||||||
@ -138,7 +138,7 @@
|
|||||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\leverington\cernbox\BeamProfileMonitor\HITDAQ\build-hit2017v2-Desktop_Qt_6_5_2_MinGW_64_bit-Release</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\leverington\cernbox\BeamProfileMonitor\HITDAQ\hit2017v2</value>
|
||||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/leverington/cernbox/BeamProfileMonitor/HITDAQ/build-hit2017v2-Desktop_Qt_6_5_2_MinGW_64_bit-Release</value>
|
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory.shadowDir">C:/Users/leverington/cernbox/BeamProfileMonitor/HITDAQ/build-hit2017v2-Desktop_Qt_6_5_2_MinGW_64_bit-Release</value>
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||||
@ -151,7 +151,13 @@
|
|||||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.2">
|
||||||
|
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||||
|
<value type="QString" key="ProjectExplorer.ProcessStep.Arguments">/c xcopy %{sourceDir}\styles %{buildDir}\release\styles /e /k /i /Y</value>
|
||||||
|
<value type="QString" key="ProjectExplorer.ProcessStep.Command">cmd</value>
|
||||||
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.ProcessStep</value>
|
||||||
|
</valuemap>
|
||||||
|
<value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">3</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
|
||||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||||
@ -246,7 +252,7 @@
|
|||||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
||||||
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
|
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
|
||||||
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
||||||
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/leverington/cernbox/BeamProfileMonitor/HITDAQ/build-hit2017v2-Desktop_Qt_6_5_2_MinGW_64_bit-Release</value>
|
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/leverington/cernbox/BeamProfileMonitor/HITDAQ/hit2017v2</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
<value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
<value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
||||||
</valuemap>
|
</valuemap>
|
||||||
|
@ -4,6 +4,23 @@
|
|||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
|
|
||||||
|
|
||||||
|
// Apply the stylesheet to each display
|
||||||
|
qDebug() << "App path : " << qApp->applicationDirPath();
|
||||||
|
qApp->setStyleSheet("");
|
||||||
|
QString stylesheetPath = qApp->applicationDirPath()+"/styles/Medize.qss";
|
||||||
|
// Load and apply the new stylesheet
|
||||||
|
QFile styleFile(stylesheetPath);
|
||||||
|
if (styleFile.open(QFile::ReadOnly | QFile::Text)) {
|
||||||
|
QString style = QTextStream(&styleFile).readAll();
|
||||||
|
qApp->setStyleSheet(style);
|
||||||
|
styleFile.close();
|
||||||
|
} else {
|
||||||
|
qWarning("Failed to open stylesheet file: %s", qPrintable(stylesheetPath));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
MainWindow w;
|
MainWindow w;
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
|
@ -97,11 +97,7 @@
|
|||||||
<addaction name="actionConnect"/>
|
<addaction name="actionConnect"/>
|
||||||
<addaction name="actionDisconnect"/>
|
<addaction name="actionDisconnect"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionConnect_Keithley"/>
|
|
||||||
<addaction name="actionDisconnect_Keithley"/>
|
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionConnect_Stepper"/>
|
|
||||||
<addaction name="actionDisconnect_Stepper"/>
|
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuSettings">
|
<widget class="QMenu" name="menuSettings">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
@ -111,18 +107,8 @@
|
|||||||
<addaction name="actionDevices"/>
|
<addaction name="actionDevices"/>
|
||||||
<addaction name="actionTrigger_config"/>
|
<addaction name="actionTrigger_config"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuAuto">
|
|
||||||
<property name="title">
|
|
||||||
<string>Auto</string>
|
|
||||||
</property>
|
|
||||||
<addaction name="actionLinearity_test"/>
|
|
||||||
<addaction name="actionIntegration_time_scan"/>
|
|
||||||
<addaction name="actionProfile_viewer"/>
|
|
||||||
<addaction name="actionBeta_Scanner"/>
|
|
||||||
</widget>
|
|
||||||
<addaction name="menuDevice"/>
|
<addaction name="menuDevice"/>
|
||||||
<addaction name="menuSettings"/>
|
<addaction name="menuSettings"/>
|
||||||
<addaction name="menuAuto"/>
|
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QToolBar" name="mainToolBar">
|
<widget class="QToolBar" name="mainToolBar">
|
||||||
<attribute name="toolBarArea">
|
<attribute name="toolBarArea">
|
||||||
|
@ -6,7 +6,8 @@ Q_DebugStream::Q_DebugStream(std::ostream &stream, QTextBrowser* text_edit) : m_
|
|||||||
{
|
{
|
||||||
debugStreamHandle = this; //we can use a global variable as only one instance of QDebugStream can be active
|
debugStreamHandle = this; //we can use a global variable as only one instance of QDebugStream can be active
|
||||||
displayMask = DS_INFO | DS_WARNING | DS_CRITICAL | DS_FATAL;
|
displayMask = DS_INFO | DS_WARNING | DS_CRITICAL | DS_FATAL;
|
||||||
detailsMask = DS_WARNING | DS_CRITICAL | DS_FATAL;
|
// detailsMask = DS_WARNING | DS_CRITICAL | DS_FATAL; //why not info too?
|
||||||
|
detailsMask = DS_CRITICAL | DS_FATAL;
|
||||||
log_window = text_edit;
|
log_window = text_edit;
|
||||||
m_old_buf = stream.rdbuf();
|
m_old_buf = stream.rdbuf();
|
||||||
stream.rdbuf(this);
|
stream.rdbuf(this);
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
hit2017v2/release/hit2017v2.exe
Normal file
BIN
hit2017v2/release/hit2017v2.exe
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,60 +1,114 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
** Meta object code from reading C++ file 'datareceiver.h'
|
** Meta object code from reading C++ file 'datareceiver.h'
|
||||||
**
|
**
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.5.2)
|
||||||
**
|
**
|
||||||
** WARNING! All changes made in this file will be lost!
|
** WARNING! All changes made in this file will be lost!
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#include "../datareceiver.h"
|
#include "../datareceiver.h"
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
#include <QtCore/qmetatype.h>
|
||||||
|
|
||||||
|
#if __has_include(<QtCore/qtmochelpers.h>)
|
||||||
|
#include <QtCore/qtmochelpers.h>
|
||||||
|
#else
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
#error "The header file 'datareceiver.h' doesn't include <QObject>."
|
#error "The header file 'datareceiver.h' doesn't include <QObject>."
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
#elif Q_MOC_OUTPUT_REVISION != 68
|
||||||
#error "This file was generated using the moc from 5.7.0. It"
|
#error "This file was generated using the moc from 6.5.2. It"
|
||||||
#error "cannot be used with the include files from this version of Qt."
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
#error "(The moc has changed too much.)"
|
#error "(The moc has changed too much.)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QT_BEGIN_MOC_NAMESPACE
|
#ifndef Q_CONSTINIT
|
||||||
struct qt_meta_stringdata_DataReceiver_t {
|
#define Q_CONSTINIT
|
||||||
QByteArrayData data[13];
|
#endif
|
||||||
char stringdata0[143];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DataReceiver_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DataReceiver_t qt_meta_stringdata_DataReceiver = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 12), // "DataReceiver"
|
|
||||||
QT_MOC_LITERAL(1, 13, 7), // "sigInit"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 9), // "sigDeinit"
|
|
||||||
QT_MOC_LITERAL(4, 32, 23), // "sigConfigureEthSettings"
|
|
||||||
QT_MOC_LITERAL(5, 56, 12), // "sigDataReady"
|
|
||||||
QT_MOC_LITERAL(6, 69, 13), // "DataReceiver*"
|
|
||||||
QT_MOC_LITERAL(7, 83, 3), // "ptr"
|
|
||||||
QT_MOC_LITERAL(8, 87, 7), // "onTimer"
|
|
||||||
QT_MOC_LITERAL(9, 95, 8), // "readData"
|
|
||||||
QT_MOC_LITERAL(10, 104, 6), // "onInit"
|
|
||||||
QT_MOC_LITERAL(11, 111, 8), // "onDeinit"
|
|
||||||
QT_MOC_LITERAL(12, 120, 22) // "onConfigureEthSettings"
|
|
||||||
|
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
QT_WARNING_DISABLE_GCC("-Wuseless-cast")
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
#ifdef QT_MOC_HAS_STRINGDATA
|
||||||
|
struct qt_meta_stringdata_CLASSDataReceiverENDCLASS_t {};
|
||||||
|
static constexpr auto qt_meta_stringdata_CLASSDataReceiverENDCLASS = QtMocHelpers::stringData(
|
||||||
|
"DataReceiver",
|
||||||
|
"sigInit",
|
||||||
|
"",
|
||||||
|
"sigDeinit",
|
||||||
|
"sigConfigureEthSettings",
|
||||||
|
"sigDataReady",
|
||||||
|
"DataReceiver*",
|
||||||
|
"ptr",
|
||||||
|
"onTimer",
|
||||||
|
"readData",
|
||||||
|
"onInit",
|
||||||
|
"onDeinit",
|
||||||
|
"onConfigureEthSettings"
|
||||||
|
);
|
||||||
|
#else // !QT_MOC_HAS_STRING_DATA
|
||||||
|
struct qt_meta_stringdata_CLASSDataReceiverENDCLASS_t {
|
||||||
|
uint offsetsAndSizes[26];
|
||||||
|
char stringdata0[13];
|
||||||
|
char stringdata1[8];
|
||||||
|
char stringdata2[1];
|
||||||
|
char stringdata3[10];
|
||||||
|
char stringdata4[24];
|
||||||
|
char stringdata5[13];
|
||||||
|
char stringdata6[14];
|
||||||
|
char stringdata7[4];
|
||||||
|
char stringdata8[8];
|
||||||
|
char stringdata9[9];
|
||||||
|
char stringdata10[7];
|
||||||
|
char stringdata11[9];
|
||||||
|
char stringdata12[23];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(ofs, len) \
|
||||||
|
uint(sizeof(qt_meta_stringdata_CLASSDataReceiverENDCLASS_t::offsetsAndSizes) + ofs), len
|
||||||
|
Q_CONSTINIT static const qt_meta_stringdata_CLASSDataReceiverENDCLASS_t qt_meta_stringdata_CLASSDataReceiverENDCLASS = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 12), // "DataReceiver"
|
||||||
|
QT_MOC_LITERAL(13, 7), // "sigInit"
|
||||||
|
QT_MOC_LITERAL(21, 0), // ""
|
||||||
|
QT_MOC_LITERAL(22, 9), // "sigDeinit"
|
||||||
|
QT_MOC_LITERAL(32, 23), // "sigConfigureEthSettings"
|
||||||
|
QT_MOC_LITERAL(56, 12), // "sigDataReady"
|
||||||
|
QT_MOC_LITERAL(69, 13), // "DataReceiver*"
|
||||||
|
QT_MOC_LITERAL(83, 3), // "ptr"
|
||||||
|
QT_MOC_LITERAL(87, 7), // "onTimer"
|
||||||
|
QT_MOC_LITERAL(95, 8), // "readData"
|
||||||
|
QT_MOC_LITERAL(104, 6), // "onInit"
|
||||||
|
QT_MOC_LITERAL(111, 8), // "onDeinit"
|
||||||
|
QT_MOC_LITERAL(120, 22) // "onConfigureEthSettings"
|
||||||
},
|
},
|
||||||
"DataReceiver\0sigInit\0\0sigDeinit\0"
|
"DataReceiver",
|
||||||
"sigConfigureEthSettings\0sigDataReady\0"
|
"sigInit",
|
||||||
"DataReceiver*\0ptr\0onTimer\0readData\0"
|
"",
|
||||||
"onInit\0onDeinit\0onConfigureEthSettings"
|
"sigDeinit",
|
||||||
|
"sigConfigureEthSettings",
|
||||||
|
"sigDataReady",
|
||||||
|
"DataReceiver*",
|
||||||
|
"ptr",
|
||||||
|
"onTimer",
|
||||||
|
"readData",
|
||||||
|
"onInit",
|
||||||
|
"onDeinit",
|
||||||
|
"onConfigureEthSettings"
|
||||||
};
|
};
|
||||||
#undef QT_MOC_LITERAL
|
#undef QT_MOC_LITERAL
|
||||||
|
#endif // !QT_MOC_HAS_STRING_DATA
|
||||||
|
} // unnamed namespace
|
||||||
|
|
||||||
static const uint qt_meta_data_DataReceiver[] = {
|
Q_CONSTINIT static const uint qt_meta_data_CLASSDataReceiverENDCLASS[] = {
|
||||||
|
|
||||||
// content:
|
// content:
|
||||||
7, // revision
|
11, // revision
|
||||||
0, // classname
|
0, // classname
|
||||||
0, 0, // classinfo
|
0, 0, // classinfo
|
||||||
9, 14, // methods
|
9, 14, // methods
|
||||||
@ -64,18 +118,18 @@ static const uint qt_meta_data_DataReceiver[] = {
|
|||||||
0, // flags
|
0, // flags
|
||||||
4, // signalCount
|
4, // signalCount
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags
|
// signals: name, argc, parameters, tag, flags, initial metatype offsets
|
||||||
1, 0, 59, 2, 0x06 /* Public */,
|
1, 0, 68, 2, 0x06, 1 /* Public */,
|
||||||
3, 0, 60, 2, 0x06 /* Public */,
|
3, 0, 69, 2, 0x06, 2 /* Public */,
|
||||||
4, 0, 61, 2, 0x06 /* Public */,
|
4, 0, 70, 2, 0x06, 3 /* Public */,
|
||||||
5, 1, 62, 2, 0x06 /* Public */,
|
5, 1, 71, 2, 0x06, 4 /* Public */,
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
// slots: name, argc, parameters, tag, flags, initial metatype offsets
|
||||||
8, 0, 65, 2, 0x0a /* Public */,
|
8, 0, 74, 2, 0x0a, 6 /* Public */,
|
||||||
9, 0, 66, 2, 0x09 /* Protected */,
|
9, 0, 75, 2, 0x09, 7 /* Protected */,
|
||||||
10, 0, 67, 2, 0x09 /* Protected */,
|
10, 0, 76, 2, 0x09, 8 /* Protected */,
|
||||||
11, 0, 68, 2, 0x09 /* Protected */,
|
11, 0, 77, 2, 0x09, 9 /* Protected */,
|
||||||
12, 0, 69, 2, 0x09 /* Protected */,
|
12, 0, 78, 2, 0x09, 10 /* Protected */,
|
||||||
|
|
||||||
// signals: parameters
|
// signals: parameters
|
||||||
QMetaType::Void,
|
QMetaType::Void,
|
||||||
@ -93,16 +147,48 @@ static const uint qt_meta_data_DataReceiver[] = {
|
|||||||
0 // eod
|
0 // eod
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Q_CONSTINIT const QMetaObject DataReceiver::staticMetaObject = { {
|
||||||
|
QMetaObject::SuperData::link<QObject::staticMetaObject>(),
|
||||||
|
qt_meta_stringdata_CLASSDataReceiverENDCLASS.offsetsAndSizes,
|
||||||
|
qt_meta_data_CLASSDataReceiverENDCLASS,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
qt_incomplete_metaTypeArray<qt_meta_stringdata_CLASSDataReceiverENDCLASS_t,
|
||||||
|
// Q_OBJECT / Q_GADGET
|
||||||
|
QtPrivate::TypeAndForceComplete<DataReceiver, std::true_type>,
|
||||||
|
// method 'sigInit'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'sigDeinit'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'sigConfigureEthSettings'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'sigDataReady'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
QtPrivate::TypeAndForceComplete<DataReceiver *, std::false_type>,
|
||||||
|
// method 'onTimer'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'readData'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'onInit'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'onDeinit'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'onConfigureEthSettings'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>
|
||||||
|
>,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
void DataReceiver::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
void DataReceiver::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
{
|
{
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
DataReceiver *_t = static_cast<DataReceiver *>(_o);
|
auto *_t = static_cast<DataReceiver *>(_o);
|
||||||
Q_UNUSED(_t)
|
(void)_t;
|
||||||
switch (_id) {
|
switch (_id) {
|
||||||
case 0: _t->sigInit(); break;
|
case 0: _t->sigInit(); break;
|
||||||
case 1: _t->sigDeinit(); break;
|
case 1: _t->sigDeinit(); break;
|
||||||
case 2: _t->sigConfigureEthSettings(); break;
|
case 2: _t->sigConfigureEthSettings(); break;
|
||||||
case 3: _t->sigDataReady((*reinterpret_cast< DataReceiver*(*)>(_a[1]))); break;
|
case 3: _t->sigDataReady((*reinterpret_cast< std::add_pointer_t<DataReceiver*>>(_a[1]))); break;
|
||||||
case 4: _t->onTimer(); break;
|
case 4: _t->onTimer(); break;
|
||||||
case 5: _t->readData(); break;
|
case 5: _t->readData(); break;
|
||||||
case 6: _t->onInit(); break;
|
case 6: _t->onInit(); break;
|
||||||
@ -112,42 +198,41 @@ void DataReceiver::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id
|
|||||||
}
|
}
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
switch (_id) {
|
switch (_id) {
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
||||||
case 3:
|
case 3:
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
switch (*reinterpret_cast<int*>(_a[1])) {
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
||||||
case 0:
|
case 0:
|
||||||
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< DataReceiver* >(); break;
|
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType::fromType< DataReceiver* >(); break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else if (_c == QMetaObject::IndexOfMethod) {
|
} else if (_c == QMetaObject::IndexOfMethod) {
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
int *result = reinterpret_cast<int *>(_a[0]);
|
||||||
void **func = reinterpret_cast<void **>(_a[1]);
|
|
||||||
{
|
{
|
||||||
typedef void (DataReceiver::*_t)();
|
using _t = void (DataReceiver::*)();
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigInit)) {
|
if (_t _q_method = &DataReceiver::sigInit; *reinterpret_cast<_t *>(_a[1]) == _q_method) {
|
||||||
*result = 0;
|
*result = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
typedef void (DataReceiver::*_t)();
|
using _t = void (DataReceiver::*)();
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigDeinit)) {
|
if (_t _q_method = &DataReceiver::sigDeinit; *reinterpret_cast<_t *>(_a[1]) == _q_method) {
|
||||||
*result = 1;
|
*result = 1;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
typedef void (DataReceiver::*_t)();
|
using _t = void (DataReceiver::*)();
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigConfigureEthSettings)) {
|
if (_t _q_method = &DataReceiver::sigConfigureEthSettings; *reinterpret_cast<_t *>(_a[1]) == _q_method) {
|
||||||
*result = 2;
|
*result = 2;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
typedef void (DataReceiver::*_t)(DataReceiver * );
|
using _t = void (DataReceiver::*)(DataReceiver * );
|
||||||
if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DataReceiver::sigDataReady)) {
|
if (_t _q_method = &DataReceiver::sigDataReady; *reinterpret_cast<_t *>(_a[1]) == _q_method) {
|
||||||
*result = 3;
|
*result = 3;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -155,12 +240,6 @@ void DataReceiver::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const QMetaObject DataReceiver::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_DataReceiver.data,
|
|
||||||
qt_meta_data_DataReceiver, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DataReceiver::metaObject() const
|
const QMetaObject *DataReceiver::metaObject() const
|
||||||
{
|
{
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
@ -168,9 +247,9 @@ const QMetaObject *DataReceiver::metaObject() const
|
|||||||
|
|
||||||
void *DataReceiver::qt_metacast(const char *_clname)
|
void *DataReceiver::qt_metacast(const char *_clname)
|
||||||
{
|
{
|
||||||
if (!_clname) return Q_NULLPTR;
|
if (!_clname) return nullptr;
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DataReceiver.stringdata0))
|
if (!strcmp(_clname, qt_meta_stringdata_CLASSDataReceiverENDCLASS.stringdata0))
|
||||||
return static_cast<void*>(const_cast< DataReceiver*>(this));
|
return static_cast<void*>(this);
|
||||||
return QObject::qt_metacast(_clname);
|
return QObject::qt_metacast(_clname);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,25 +273,25 @@ int DataReceiver::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|||||||
// SIGNAL 0
|
// SIGNAL 0
|
||||||
void DataReceiver::sigInit()
|
void DataReceiver::sigInit()
|
||||||
{
|
{
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, Q_NULLPTR);
|
QMetaObject::activate(this, &staticMetaObject, 0, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// SIGNAL 1
|
// SIGNAL 1
|
||||||
void DataReceiver::sigDeinit()
|
void DataReceiver::sigDeinit()
|
||||||
{
|
{
|
||||||
QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR);
|
QMetaObject::activate(this, &staticMetaObject, 1, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// SIGNAL 2
|
// SIGNAL 2
|
||||||
void DataReceiver::sigConfigureEthSettings()
|
void DataReceiver::sigConfigureEthSettings()
|
||||||
{
|
{
|
||||||
QMetaObject::activate(this, &staticMetaObject, 2, Q_NULLPTR);
|
QMetaObject::activate(this, &staticMetaObject, 2, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// SIGNAL 3
|
// SIGNAL 3
|
||||||
void DataReceiver::sigDataReady(DataReceiver * _t1)
|
void DataReceiver::sigDataReady(DataReceiver * _t1)
|
||||||
{
|
{
|
||||||
void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
|
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
|
||||||
QMetaObject::activate(this, &staticMetaObject, 3, _a);
|
QMetaObject::activate(this, &staticMetaObject, 3, _a);
|
||||||
}
|
}
|
||||||
QT_END_MOC_NAMESPACE
|
QT_WARNING_POP
|
||||||
|
Binary file not shown.
@ -1,53 +1,90 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
** Meta object code from reading C++ file 'device.h'
|
** Meta object code from reading C++ file 'device.h'
|
||||||
**
|
**
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.5.2)
|
||||||
**
|
**
|
||||||
** WARNING! All changes made in this file will be lost!
|
** WARNING! All changes made in this file will be lost!
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#include "../device.h"
|
#include "../device.h"
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
#include <QtCore/qmetatype.h>
|
||||||
|
|
||||||
|
#if __has_include(<QtCore/qtmochelpers.h>)
|
||||||
|
#include <QtCore/qtmochelpers.h>
|
||||||
|
#else
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
#error "The header file 'device.h' doesn't include <QObject>."
|
#error "The header file 'device.h' doesn't include <QObject>."
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
#elif Q_MOC_OUTPUT_REVISION != 68
|
||||||
#error "This file was generated using the moc from 5.7.0. It"
|
#error "This file was generated using the moc from 6.5.2. It"
|
||||||
#error "cannot be used with the include files from this version of Qt."
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
#error "(The moc has changed too much.)"
|
#error "(The moc has changed too much.)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QT_BEGIN_MOC_NAMESPACE
|
#ifndef Q_CONSTINIT
|
||||||
struct qt_meta_stringdata_Device_t {
|
#define Q_CONSTINIT
|
||||||
QByteArrayData data[7];
|
#endif
|
||||||
char stringdata0[90];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_Device_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_Device_t qt_meta_stringdata_Device = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 6), // "Device"
|
|
||||||
QT_MOC_LITERAL(1, 7, 11), // "onConnected"
|
|
||||||
QT_MOC_LITERAL(2, 19, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 20, 13), // "onSocketError"
|
|
||||||
QT_MOC_LITERAL(4, 34, 28), // "QAbstractSocket::SocketError"
|
|
||||||
QT_MOC_LITERAL(5, 63, 11), // "socketError"
|
|
||||||
QT_MOC_LITERAL(6, 75, 14) // "onDisconnected"
|
|
||||||
|
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
QT_WARNING_DISABLE_GCC("-Wuseless-cast")
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
#ifdef QT_MOC_HAS_STRINGDATA
|
||||||
|
struct qt_meta_stringdata_CLASSDeviceENDCLASS_t {};
|
||||||
|
static constexpr auto qt_meta_stringdata_CLASSDeviceENDCLASS = QtMocHelpers::stringData(
|
||||||
|
"Device",
|
||||||
|
"onConnected",
|
||||||
|
"",
|
||||||
|
"onSocketError",
|
||||||
|
"QAbstractSocket::SocketError",
|
||||||
|
"socketError",
|
||||||
|
"onDisconnected"
|
||||||
|
);
|
||||||
|
#else // !QT_MOC_HAS_STRING_DATA
|
||||||
|
struct qt_meta_stringdata_CLASSDeviceENDCLASS_t {
|
||||||
|
uint offsetsAndSizes[14];
|
||||||
|
char stringdata0[7];
|
||||||
|
char stringdata1[12];
|
||||||
|
char stringdata2[1];
|
||||||
|
char stringdata3[14];
|
||||||
|
char stringdata4[29];
|
||||||
|
char stringdata5[12];
|
||||||
|
char stringdata6[15];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(ofs, len) \
|
||||||
|
uint(sizeof(qt_meta_stringdata_CLASSDeviceENDCLASS_t::offsetsAndSizes) + ofs), len
|
||||||
|
Q_CONSTINIT static const qt_meta_stringdata_CLASSDeviceENDCLASS_t qt_meta_stringdata_CLASSDeviceENDCLASS = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 6), // "Device"
|
||||||
|
QT_MOC_LITERAL(7, 11), // "onConnected"
|
||||||
|
QT_MOC_LITERAL(19, 0), // ""
|
||||||
|
QT_MOC_LITERAL(20, 13), // "onSocketError"
|
||||||
|
QT_MOC_LITERAL(34, 28), // "QAbstractSocket::SocketError"
|
||||||
|
QT_MOC_LITERAL(63, 11), // "socketError"
|
||||||
|
QT_MOC_LITERAL(75, 14) // "onDisconnected"
|
||||||
},
|
},
|
||||||
"Device\0onConnected\0\0onSocketError\0"
|
"Device",
|
||||||
"QAbstractSocket::SocketError\0socketError\0"
|
"onConnected",
|
||||||
|
"",
|
||||||
|
"onSocketError",
|
||||||
|
"QAbstractSocket::SocketError",
|
||||||
|
"socketError",
|
||||||
"onDisconnected"
|
"onDisconnected"
|
||||||
};
|
};
|
||||||
#undef QT_MOC_LITERAL
|
#undef QT_MOC_LITERAL
|
||||||
|
#endif // !QT_MOC_HAS_STRING_DATA
|
||||||
|
} // unnamed namespace
|
||||||
|
|
||||||
static const uint qt_meta_data_Device[] = {
|
Q_CONSTINIT static const uint qt_meta_data_CLASSDeviceENDCLASS[] = {
|
||||||
|
|
||||||
// content:
|
// content:
|
||||||
7, // revision
|
11, // revision
|
||||||
0, // classname
|
0, // classname
|
||||||
0, 0, // classinfo
|
0, 0, // classinfo
|
||||||
3, 14, // methods
|
3, 14, // methods
|
||||||
@ -57,10 +94,10 @@ static const uint qt_meta_data_Device[] = {
|
|||||||
0, // flags
|
0, // flags
|
||||||
0, // signalCount
|
0, // signalCount
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
// slots: name, argc, parameters, tag, flags, initial metatype offsets
|
||||||
1, 0, 29, 2, 0x09 /* Protected */,
|
1, 0, 32, 2, 0x09, 1 /* Protected */,
|
||||||
3, 1, 30, 2, 0x09 /* Protected */,
|
3, 1, 33, 2, 0x09, 2 /* Protected */,
|
||||||
6, 0, 33, 2, 0x09 /* Protected */,
|
6, 0, 36, 2, 0x09, 4 /* Protected */,
|
||||||
|
|
||||||
// slots: parameters
|
// slots: parameters
|
||||||
QMetaType::Void,
|
QMetaType::Void,
|
||||||
@ -70,37 +107,51 @@ static const uint qt_meta_data_Device[] = {
|
|||||||
0 // eod
|
0 // eod
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Q_CONSTINIT const QMetaObject Device::staticMetaObject = { {
|
||||||
|
QMetaObject::SuperData::link<QObject::staticMetaObject>(),
|
||||||
|
qt_meta_stringdata_CLASSDeviceENDCLASS.offsetsAndSizes,
|
||||||
|
qt_meta_data_CLASSDeviceENDCLASS,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
qt_incomplete_metaTypeArray<qt_meta_stringdata_CLASSDeviceENDCLASS_t,
|
||||||
|
// Q_OBJECT / Q_GADGET
|
||||||
|
QtPrivate::TypeAndForceComplete<Device, std::true_type>,
|
||||||
|
// method 'onConnected'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'onSocketError'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
QtPrivate::TypeAndForceComplete<QAbstractSocket::SocketError, std::false_type>,
|
||||||
|
// method 'onDisconnected'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>
|
||||||
|
>,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
void Device::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
void Device::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
{
|
{
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
Device *_t = static_cast<Device *>(_o);
|
auto *_t = static_cast<Device *>(_o);
|
||||||
Q_UNUSED(_t)
|
(void)_t;
|
||||||
switch (_id) {
|
switch (_id) {
|
||||||
case 0: _t->onConnected(); break;
|
case 0: _t->onConnected(); break;
|
||||||
case 1: _t->onSocketError((*reinterpret_cast< QAbstractSocket::SocketError(*)>(_a[1]))); break;
|
case 1: _t->onSocketError((*reinterpret_cast< std::add_pointer_t<QAbstractSocket::SocketError>>(_a[1]))); break;
|
||||||
case 2: _t->onDisconnected(); break;
|
case 2: _t->onDisconnected(); break;
|
||||||
default: ;
|
default: ;
|
||||||
}
|
}
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
switch (_id) {
|
switch (_id) {
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
||||||
case 1:
|
case 1:
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
switch (*reinterpret_cast<int*>(_a[1])) {
|
||||||
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
|
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
||||||
case 0:
|
case 0:
|
||||||
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QAbstractSocket::SocketError >(); break;
|
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType::fromType< QAbstractSocket::SocketError >(); break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const QMetaObject Device::staticMetaObject = {
|
|
||||||
{ &QObject::staticMetaObject, qt_meta_stringdata_Device.data,
|
|
||||||
qt_meta_data_Device, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *Device::metaObject() const
|
const QMetaObject *Device::metaObject() const
|
||||||
{
|
{
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
@ -108,9 +159,9 @@ const QMetaObject *Device::metaObject() const
|
|||||||
|
|
||||||
void *Device::qt_metacast(const char *_clname)
|
void *Device::qt_metacast(const char *_clname)
|
||||||
{
|
{
|
||||||
if (!_clname) return Q_NULLPTR;
|
if (!_clname) return nullptr;
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_Device.stringdata0))
|
if (!strcmp(_clname, qt_meta_stringdata_CLASSDeviceENDCLASS.stringdata0))
|
||||||
return static_cast<void*>(const_cast< Device*>(this));
|
return static_cast<void*>(this);
|
||||||
return QObject::qt_metacast(_clname);
|
return QObject::qt_metacast(_clname);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -130,4 +181,4 @@ int Device::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|||||||
}
|
}
|
||||||
return _id;
|
return _id;
|
||||||
}
|
}
|
||||||
QT_END_MOC_NAMESPACE
|
QT_WARNING_POP
|
||||||
|
Binary file not shown.
@ -1,64 +1,122 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
** Meta object code from reading C++ file 'dialogbeta.h'
|
** Meta object code from reading C++ file 'dialogbeta.h'
|
||||||
**
|
**
|
||||||
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
|
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.5.2)
|
||||||
**
|
**
|
||||||
** WARNING! All changes made in this file will be lost!
|
** WARNING! All changes made in this file will be lost!
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#include "../dialogbeta.h"
|
#include "../dialogbeta.h"
|
||||||
#include <QtCore/qbytearray.h>
|
|
||||||
#include <QtCore/qmetatype.h>
|
#include <QtCore/qmetatype.h>
|
||||||
|
|
||||||
|
#if __has_include(<QtCore/qtmochelpers.h>)
|
||||||
|
#include <QtCore/qtmochelpers.h>
|
||||||
|
#else
|
||||||
|
QT_BEGIN_MOC_NAMESPACE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||||
#error "The header file 'dialogbeta.h' doesn't include <QObject>."
|
#error "The header file 'dialogbeta.h' doesn't include <QObject>."
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 67
|
#elif Q_MOC_OUTPUT_REVISION != 68
|
||||||
#error "This file was generated using the moc from 5.7.0. It"
|
#error "This file was generated using the moc from 6.5.2. It"
|
||||||
#error "cannot be used with the include files from this version of Qt."
|
#error "cannot be used with the include files from this version of Qt."
|
||||||
#error "(The moc has changed too much.)"
|
#error "(The moc has changed too much.)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QT_BEGIN_MOC_NAMESPACE
|
#ifndef Q_CONSTINIT
|
||||||
struct qt_meta_stringdata_DialogBeta_t {
|
#define Q_CONSTINIT
|
||||||
QByteArrayData data[15];
|
#endif
|
||||||
char stringdata0[237];
|
|
||||||
};
|
|
||||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
|
||||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
|
||||||
qptrdiff(offsetof(qt_meta_stringdata_DialogBeta_t, stringdata0) + ofs \
|
|
||||||
- idx * sizeof(QByteArrayData)) \
|
|
||||||
)
|
|
||||||
static const qt_meta_stringdata_DialogBeta_t qt_meta_stringdata_DialogBeta = {
|
|
||||||
{
|
|
||||||
QT_MOC_LITERAL(0, 0, 10), // "DialogBeta"
|
|
||||||
QT_MOC_LITERAL(1, 11, 9), // "showEvent"
|
|
||||||
QT_MOC_LITERAL(2, 21, 0), // ""
|
|
||||||
QT_MOC_LITERAL(3, 22, 11), // "QShowEvent*"
|
|
||||||
QT_MOC_LITERAL(4, 34, 5), // "event"
|
|
||||||
QT_MOC_LITERAL(5, 40, 20), // "onHistogramCompleted"
|
|
||||||
QT_MOC_LITERAL(6, 61, 7), // "onTimer"
|
|
||||||
QT_MOC_LITERAL(7, 69, 18), // "on_pushRun_pressed"
|
|
||||||
QT_MOC_LITERAL(8, 88, 19), // "on_pushSave_pressed"
|
|
||||||
QT_MOC_LITERAL(9, 108, 20), // "on_pushClear_pressed"
|
|
||||||
QT_MOC_LITERAL(10, 129, 19), // "on_pushLeft_pressed"
|
|
||||||
QT_MOC_LITERAL(11, 149, 20), // "on_pushLeft_released"
|
|
||||||
QT_MOC_LITERAL(12, 170, 20), // "on_pushRight_pressed"
|
|
||||||
QT_MOC_LITERAL(13, 191, 21), // "on_pushRight_released"
|
|
||||||
QT_MOC_LITERAL(14, 213, 23) // "on_pushResetCtr_pressed"
|
|
||||||
|
|
||||||
|
QT_WARNING_PUSH
|
||||||
|
QT_WARNING_DISABLE_DEPRECATED
|
||||||
|
QT_WARNING_DISABLE_GCC("-Wuseless-cast")
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
#ifdef QT_MOC_HAS_STRINGDATA
|
||||||
|
struct qt_meta_stringdata_CLASSDialogBetaENDCLASS_t {};
|
||||||
|
static constexpr auto qt_meta_stringdata_CLASSDialogBetaENDCLASS = QtMocHelpers::stringData(
|
||||||
|
"DialogBeta",
|
||||||
|
"showEvent",
|
||||||
|
"",
|
||||||
|
"QShowEvent*",
|
||||||
|
"event",
|
||||||
|
"onHistogramCompleted",
|
||||||
|
"onTimer",
|
||||||
|
"on_pushRun_pressed",
|
||||||
|
"on_pushSave_pressed",
|
||||||
|
"on_pushClear_pressed",
|
||||||
|
"on_pushLeft_pressed",
|
||||||
|
"on_pushLeft_released",
|
||||||
|
"on_pushRight_pressed",
|
||||||
|
"on_pushRight_released",
|
||||||
|
"on_pushResetCtr_pressed"
|
||||||
|
);
|
||||||
|
#else // !QT_MOC_HAS_STRING_DATA
|
||||||
|
struct qt_meta_stringdata_CLASSDialogBetaENDCLASS_t {
|
||||||
|
uint offsetsAndSizes[30];
|
||||||
|
char stringdata0[11];
|
||||||
|
char stringdata1[10];
|
||||||
|
char stringdata2[1];
|
||||||
|
char stringdata3[12];
|
||||||
|
char stringdata4[6];
|
||||||
|
char stringdata5[21];
|
||||||
|
char stringdata6[8];
|
||||||
|
char stringdata7[19];
|
||||||
|
char stringdata8[20];
|
||||||
|
char stringdata9[21];
|
||||||
|
char stringdata10[20];
|
||||||
|
char stringdata11[21];
|
||||||
|
char stringdata12[21];
|
||||||
|
char stringdata13[22];
|
||||||
|
char stringdata14[24];
|
||||||
|
};
|
||||||
|
#define QT_MOC_LITERAL(ofs, len) \
|
||||||
|
uint(sizeof(qt_meta_stringdata_CLASSDialogBetaENDCLASS_t::offsetsAndSizes) + ofs), len
|
||||||
|
Q_CONSTINIT static const qt_meta_stringdata_CLASSDialogBetaENDCLASS_t qt_meta_stringdata_CLASSDialogBetaENDCLASS = {
|
||||||
|
{
|
||||||
|
QT_MOC_LITERAL(0, 10), // "DialogBeta"
|
||||||
|
QT_MOC_LITERAL(11, 9), // "showEvent"
|
||||||
|
QT_MOC_LITERAL(21, 0), // ""
|
||||||
|
QT_MOC_LITERAL(22, 11), // "QShowEvent*"
|
||||||
|
QT_MOC_LITERAL(34, 5), // "event"
|
||||||
|
QT_MOC_LITERAL(40, 20), // "onHistogramCompleted"
|
||||||
|
QT_MOC_LITERAL(61, 7), // "onTimer"
|
||||||
|
QT_MOC_LITERAL(69, 18), // "on_pushRun_pressed"
|
||||||
|
QT_MOC_LITERAL(88, 19), // "on_pushSave_pressed"
|
||||||
|
QT_MOC_LITERAL(108, 20), // "on_pushClear_pressed"
|
||||||
|
QT_MOC_LITERAL(129, 19), // "on_pushLeft_pressed"
|
||||||
|
QT_MOC_LITERAL(149, 20), // "on_pushLeft_released"
|
||||||
|
QT_MOC_LITERAL(170, 20), // "on_pushRight_pressed"
|
||||||
|
QT_MOC_LITERAL(191, 21), // "on_pushRight_released"
|
||||||
|
QT_MOC_LITERAL(213, 23) // "on_pushResetCtr_pressed"
|
||||||
},
|
},
|
||||||
"DialogBeta\0showEvent\0\0QShowEvent*\0"
|
"DialogBeta",
|
||||||
"event\0onHistogramCompleted\0onTimer\0"
|
"showEvent",
|
||||||
"on_pushRun_pressed\0on_pushSave_pressed\0"
|
"",
|
||||||
"on_pushClear_pressed\0on_pushLeft_pressed\0"
|
"QShowEvent*",
|
||||||
"on_pushLeft_released\0on_pushRight_pressed\0"
|
"event",
|
||||||
"on_pushRight_released\0on_pushResetCtr_pressed"
|
"onHistogramCompleted",
|
||||||
|
"onTimer",
|
||||||
|
"on_pushRun_pressed",
|
||||||
|
"on_pushSave_pressed",
|
||||||
|
"on_pushClear_pressed",
|
||||||
|
"on_pushLeft_pressed",
|
||||||
|
"on_pushLeft_released",
|
||||||
|
"on_pushRight_pressed",
|
||||||
|
"on_pushRight_released",
|
||||||
|
"on_pushResetCtr_pressed"
|
||||||
};
|
};
|
||||||
#undef QT_MOC_LITERAL
|
#undef QT_MOC_LITERAL
|
||||||
|
#endif // !QT_MOC_HAS_STRING_DATA
|
||||||
|
} // unnamed namespace
|
||||||
|
|
||||||
static const uint qt_meta_data_DialogBeta[] = {
|
Q_CONSTINIT static const uint qt_meta_data_CLASSDialogBetaENDCLASS[] = {
|
||||||
|
|
||||||
// content:
|
// content:
|
||||||
7, // revision
|
11, // revision
|
||||||
0, // classname
|
0, // classname
|
||||||
0, 0, // classinfo
|
0, 0, // classinfo
|
||||||
11, 14, // methods
|
11, 14, // methods
|
||||||
@ -68,18 +126,18 @@ static const uint qt_meta_data_DialogBeta[] = {
|
|||||||
0, // flags
|
0, // flags
|
||||||
0, // signalCount
|
0, // signalCount
|
||||||
|
|
||||||
// slots: name, argc, parameters, tag, flags
|
// slots: name, argc, parameters, tag, flags, initial metatype offsets
|
||||||
1, 1, 69, 2, 0x0a /* Public */,
|
1, 1, 80, 2, 0x0a, 1 /* Public */,
|
||||||
5, 0, 72, 2, 0x0a /* Public */,
|
5, 0, 83, 2, 0x0a, 3 /* Public */,
|
||||||
6, 0, 73, 2, 0x0a /* Public */,
|
6, 0, 84, 2, 0x0a, 4 /* Public */,
|
||||||
7, 0, 74, 2, 0x08 /* Private */,
|
7, 0, 85, 2, 0x08, 5 /* Private */,
|
||||||
8, 0, 75, 2, 0x08 /* Private */,
|
8, 0, 86, 2, 0x08, 6 /* Private */,
|
||||||
9, 0, 76, 2, 0x08 /* Private */,
|
9, 0, 87, 2, 0x08, 7 /* Private */,
|
||||||
10, 0, 77, 2, 0x08 /* Private */,
|
10, 0, 88, 2, 0x08, 8 /* Private */,
|
||||||
11, 0, 78, 2, 0x08 /* Private */,
|
11, 0, 89, 2, 0x08, 9 /* Private */,
|
||||||
12, 0, 79, 2, 0x08 /* Private */,
|
12, 0, 90, 2, 0x08, 10 /* Private */,
|
||||||
13, 0, 80, 2, 0x08 /* Private */,
|
13, 0, 91, 2, 0x08, 11 /* Private */,
|
||||||
14, 0, 81, 2, 0x08 /* Private */,
|
14, 0, 92, 2, 0x08, 12 /* Private */,
|
||||||
|
|
||||||
// slots: parameters
|
// slots: parameters
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
QMetaType::Void, 0x80000000 | 3, 4,
|
||||||
@ -97,13 +155,49 @@ static const uint qt_meta_data_DialogBeta[] = {
|
|||||||
0 // eod
|
0 // eod
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Q_CONSTINIT const QMetaObject DialogBeta::staticMetaObject = { {
|
||||||
|
QMetaObject::SuperData::link<QDialog::staticMetaObject>(),
|
||||||
|
qt_meta_stringdata_CLASSDialogBetaENDCLASS.offsetsAndSizes,
|
||||||
|
qt_meta_data_CLASSDialogBetaENDCLASS,
|
||||||
|
qt_static_metacall,
|
||||||
|
nullptr,
|
||||||
|
qt_incomplete_metaTypeArray<qt_meta_stringdata_CLASSDialogBetaENDCLASS_t,
|
||||||
|
// Q_OBJECT / Q_GADGET
|
||||||
|
QtPrivate::TypeAndForceComplete<DialogBeta, std::true_type>,
|
||||||
|
// method 'showEvent'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
QtPrivate::TypeAndForceComplete<QShowEvent *, std::false_type>,
|
||||||
|
// method 'onHistogramCompleted'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'onTimer'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushRun_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushSave_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushClear_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushLeft_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushLeft_released'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushRight_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushRight_released'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
||||||
|
// method 'on_pushResetCtr_pressed'
|
||||||
|
QtPrivate::TypeAndForceComplete<void, std::false_type>
|
||||||
|
>,
|
||||||
|
nullptr
|
||||||
|
} };
|
||||||
|
|
||||||
void DialogBeta::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
void DialogBeta::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||||
{
|
{
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||||
DialogBeta *_t = static_cast<DialogBeta *>(_o);
|
auto *_t = static_cast<DialogBeta *>(_o);
|
||||||
Q_UNUSED(_t)
|
(void)_t;
|
||||||
switch (_id) {
|
switch (_id) {
|
||||||
case 0: _t->showEvent((*reinterpret_cast< QShowEvent*(*)>(_a[1]))); break;
|
case 0: _t->showEvent((*reinterpret_cast< std::add_pointer_t<QShowEvent*>>(_a[1]))); break;
|
||||||
case 1: _t->onHistogramCompleted(); break;
|
case 1: _t->onHistogramCompleted(); break;
|
||||||
case 2: _t->onTimer(); break;
|
case 2: _t->onTimer(); break;
|
||||||
case 3: _t->on_pushRun_pressed(); break;
|
case 3: _t->on_pushRun_pressed(); break;
|
||||||
@ -119,12 +213,6 @@ void DialogBeta::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const QMetaObject DialogBeta::staticMetaObject = {
|
|
||||||
{ &QDialog::staticMetaObject, qt_meta_stringdata_DialogBeta.data,
|
|
||||||
qt_meta_data_DialogBeta, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const QMetaObject *DialogBeta::metaObject() const
|
const QMetaObject *DialogBeta::metaObject() const
|
||||||
{
|
{
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||||
@ -132,9 +220,9 @@ const QMetaObject *DialogBeta::metaObject() const
|
|||||||
|
|
||||||
void *DialogBeta::qt_metacast(const char *_clname)
|
void *DialogBeta::qt_metacast(const char *_clname)
|
||||||
{
|
{
|
||||||
if (!_clname) return Q_NULLPTR;
|
if (!_clname) return nullptr;
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_DialogBeta.stringdata0))
|
if (!strcmp(_clname, qt_meta_stringdata_CLASSDialogBetaENDCLASS.stringdata0))
|
||||||
return static_cast<void*>(const_cast< DialogBeta*>(this));
|
return static_cast<void*>(this);
|
||||||
return QDialog::qt_metacast(_clname);
|
return QDialog::qt_metacast(_clname);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -149,9 +237,9 @@ int DialogBeta::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|||||||
_id -= 11;
|
_id -= 11;
|
||||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||||
if (_id < 11)
|
if (_id < 11)
|
||||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType();
|
||||||
_id -= 11;
|
_id -= 11;
|
||||||
}
|
}
|
||||||
return _id;
|
return _id;
|
||||||
}
|
}
|
||||||
QT_END_MOC_NAMESPACE
|
QT_WARNING_POP
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user