diff --git a/trunk/CMake/FindOGRE.cmake b/trunk/CMake/FindOGRE.cmake deleted file mode 100644 index 899d183..0000000 --- a/trunk/CMake/FindOGRE.cmake +++ /dev/null @@ -1,589 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -# - Try to find OGRE -# If you have multiple versions of Ogre installed, use the CMake or -# the environment variable OGRE_HOME to point to the path where the -# desired Ogre version can be found. -# By default this script will look for a dynamic Ogre build. If you -# need to link against static Ogre libraries, set the CMake variable -# OGRE_STATIC to TRUE. -# -# Once done, this will define -# -# OGRE_FOUND - system has OGRE -# OGRE_INCLUDE_DIRS - the OGRE include directories -# OGRE_LIBRARIES - link these to use the OGRE core -# OGRE_BINARY_REL - location of the main Ogre binary (win32 non-static only, release) -# OGRE_BINARY_DBG - location of the main Ogre binaries (win32 non-static only, debug) -# -# Additionally this script searches for the following optional -# parts of the Ogre package: -# Plugin_BSPSceneManager, Plugin_CgProgramManager, -# Plugin_OctreeSceneManager, Plugin_OctreeZone, -# Plugin_ParticleFX, Plugin_PCZSceneManager, -# RenderSystem_GL, RenderSystem_GL3Plus, -# RenderSystem_GLES, RenderSystem_GLES2, -# RenderSystem_Direct3D9, RenderSystem_Direct3D11 -# Paging, Terrain, Volume, Overlay -# -# For each of these components, the following variables are defined: -# -# OGRE_${COMPONENT}_FOUND - ${COMPONENT} is available -# OGRE_${COMPONENT}_INCLUDE_DIRS - additional include directories for ${COMPONENT} -# OGRE_${COMPONENT}_LIBRARIES - link these to use ${COMPONENT} -# OGRE_${COMPONENT}_BINARY_REL - location of the component binary (win32 non-static only, release) -# OGRE_${COMPONENT}_BINARY_DBG - location of the component binary (win32 non-static only, debug) -# -# Finally, the following variables are defined: -# -# OGRE_PLUGIN_DIR_REL - The directory where the release versions of -# the OGRE plugins are located -# OGRE_PLUGIN_DIR_DBG - The directory where the debug versions of -# the OGRE plugins are located -# OGRE_MEDIA_DIR - The directory where the OGRE sample media is -# located, if available - -include(FindPkgMacros) -include(PreprocessorUtils) -findpkg_begin(OGRE) - -message(STATUS "OGRE_HOME: $ENV{OGRE_HOME}") - -# Get path, convert backslashes as ${ENV_${var}} -getenv_path(OGRE_HOME) -getenv_path(OGRE_SDK) -getenv_path(OGRE_SOURCE) -getenv_path(OGRE_BUILD) -getenv_path(OGRE_DEPENDENCIES_DIR) -getenv_path(PROGRAMFILES) - - -# Determine whether to search for a dynamic or static build -if (OGRE_STATIC) - set(OGRE_LIB_SUFFIX "Static") -else () - set(OGRE_LIB_SUFFIX "") -endif () - -if(APPLE AND NOT OGRE_STATIC) - set(OGRE_LIBRARY_NAMES "Ogre${OGRE_LIB_SUFFIX}") -else() - set(OGRE_LIBRARY_NAMES "OgreMain${OGRE_LIB_SUFFIX}") -endif() -get_debug_names(OGRE_LIBRARY_NAMES) - -# construct search paths from environmental hints and -# OS specific guesses -if (WIN32) - set(OGRE_PREFIX_GUESSES - ${ENV_PROGRAMFILES}/OGRE - C:/OgreSDK - ) -elseif (UNIX) - set(OGRE_PREFIX_GUESSES - /opt/ogre - /opt/OGRE - /usr/lib${LIB_SUFFIX}/ogre - /usr/lib${LIB_SUFFIX}/OGRE - /usr/local/lib${LIB_SUFFIX}/ogre - /usr/local/lib${LIB_SUFFIX}/OGRE - $ENV{HOME}/ogre - $ENV{HOME}/OGRE - ) - if (APPLE) - set(OGRE_PREFIX_GUESSES - ${CMAKE_CURRENT_SOURCE_DIR}/lib/macosx - ${OGRE_PREFIX_GUESSES} - ) - endif () -endif () -set(OGRE_PREFIX_PATH - ${OGRE_HOME} ${OGRE_SDK} ${ENV_OGRE_HOME} ${ENV_OGRE_SDK} - ${OGRE_PREFIX_GUESSES} -) -create_search_paths(OGRE) -# If both OGRE_BUILD and OGRE_SOURCE are set, prepare to find Ogre in a build dir -set(OGRE_PREFIX_SOURCE ${OGRE_SOURCE} ${ENV_OGRE_SOURCE}) -set(OGRE_PREFIX_BUILD ${OGRE_BUILD} ${ENV_OGRE_BUILD}) -set(OGRE_PREFIX_DEPENDENCIES_DIR ${OGRE_DEPENDENCIES_DIR} ${ENV_OGRE_DEPENDENCIES_DIR}) -if (OGRE_PREFIX_SOURCE AND OGRE_PREFIX_BUILD) - foreach(dir ${OGRE_PREFIX_SOURCE}) - set(OGRE_INC_SEARCH_PATH ${dir}/OgreMain/include ${dir}/Dependencies/include ${dir}/iOSDependencies/include ${dir}/AndroidDependencies/include ${OGRE_INC_SEARCH_PATH}) - set(OGRE_LIB_SEARCH_PATH ${dir}/lib ${dir}/Dependencies/lib ${dir}/iOSDependencies/lib ${dir}/AndroidDependencies/lib/${ANDROID_ABI} ${OGRE_LIB_SEARCH_PATH}) - set(OGRE_BIN_SEARCH_PATH ${dir}/Samples/Common/bin ${OGRE_BIN_SEARCH_PATH}) - endforeach(dir) - foreach(dir ${OGRE_PREFIX_BUILD}) - set(OGRE_INC_SEARCH_PATH ${dir}/include ${OGRE_INC_SEARCH_PATH}) - if(APPLE AND NOT OGRE_BUILD_PLATFORM_APPLE_IOS) - set(OGRE_LIB_SEARCH_PATH ${dir}/lib/macosx ${OGRE_LIB_SEARCH_PATH}) - else() - set(OGRE_LIB_SEARCH_PATH ${dir}/lib ${OGRE_LIB_SEARCH_PATH}) - endif() - - if (OGRE_BUILD_PLATFORM_APPLE_IOS) - set(OGRE_LIB_SEARCH_PATH ${dir}/lib/iphoneos ${dir}/lib/iphonesimulator ${OGRE_LIB_SEARCH_PATH}) - endif() - - set(OGRE_BIN_SEARCH_PATH ${dir}/bin ${OGRE_BIN_SEARCH_PATH}) - set(OGRE_BIN_SEARCH_PATH ${dir}/Samples/Common/bin ${OGRE_BIN_SEARCH_PATH}) - - if(APPLE AND NOT OGRE_BUILD_PLATFORM_APPLE_IOS) - set(OGRE_BIN_SEARCH_PATH ${dir}/bin/macosx ${OGRE_BIN_SEARCH_PATH}) - endif() - endforeach(dir) - - if (OGRE_PREFIX_DEPENDENCIES_DIR) - set(OGRE_INC_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/include ${OGRE_INC_SEARCH_PATH}) - set(OGRE_LIB_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/lib ${OGRE_LIB_SEARCH_PATH}) - set(OGRE_BIN_SEARCH_PATH ${OGRE_PREFIX_DEPENDENCIES_DIR}/bin ${OGRE_BIN_SEARCH_PATH}) - endif() -else() - set(OGRE_PREFIX_SOURCE "NOTFOUND") - set(OGRE_PREFIX_BUILD "NOTFOUND") -endif () - -# redo search if any of the environmental hints changed -set(OGRE_COMPONENTS Paging Terrain Volume Overlay - Plugin_BSPSceneManager Plugin_CgProgramManager Plugin_OctreeSceneManager - Plugin_OctreeZone Plugin_PCZSceneManager Plugin_ParticleFX - RenderSystem_Direct3D11 RenderSystem_Direct3D9 RenderSystem_GL RenderSystem_GL3Plus RenderSystem_GLES RenderSystem_GLES2) -set(OGRE_RESET_VARS - OGRE_CONFIG_INCLUDE_DIR OGRE_INCLUDE_DIR - OGRE_FRAMEWORK_INCLUDES OGRE_FRAMEWORK_PATH OGRE_LIBRARY_FWK OGRE_LIBRARY_REL OGRE_LIBRARY_DBG - OGRE_PLUGIN_DIR_DBG OGRE_PLUGIN_DIR_REL OGRE_MEDIA_DIR) -foreach (comp ${OGRE_COMPONENTS}) - set(OGRE_RESET_VARS ${OGRE_RESET_VARS} - OGRE_${comp}_INCLUDE_DIR OGRE_${comp}_LIBRARY_FWK - OGRE_${comp}_LIBRARY_DBG OGRE_${comp}_LIBRARY_REL - ) -endforeach (comp) -set(OGRE_PREFIX_WATCH ${OGRE_PREFIX_PATH} ${OGRE_PREFIX_SOURCE} ${OGRE_PREFIX_BUILD}) -clear_if_changed(OGRE_PREFIX_WATCH ${OGRE_RESET_VARS}) - -if(NOT OGRE_STATIC) - # try to locate Ogre via pkg-config - use_pkgconfig(OGRE_PKGC "OGRE${OGRE_LIB_SUFFIX}") - - # Set the framework search path for OS X - set(OGRE_FRAMEWORK_SEARCH_PATH - ${CMAKE_FRAMEWORK_PATH} - ~/Library/Frameworks - /Library/Frameworks - /System/Library/Frameworks - /Network/Library/Frameworks - ${CMAKE_CURRENT_SOURCE_DIR}/lib/macosx/Release - ${CMAKE_CURRENT_SOURCE_DIR}/lib/macosx/Debug - $ENV{OGRE_HOME}/lib/macosx/Release - $ENV{OGRE_HOME}/lib/macosx/Debug - ) -else() - set(OGRE_LIBRARY_FWK "") -endif() - -# locate Ogre include files -find_path(OGRE_CONFIG_INCLUDE_DIR NAMES OgreBuildSettings.h HINTS ${OGRE_INC_SEARCH_PATH} ${OGRE_FRAMEWORK_INCLUDES} ${OGRE_PKGC_INCLUDE_DIRS} PATH_SUFFIXES "OGRE") -find_path(OGRE_INCLUDE_DIR NAMES OgreRoot.h HINTS ${OGRE_CONFIG_INCLUDE_DIR} ${OGRE_INC_SEARCH_PATH} ${OGRE_FRAMEWORK_INCLUDES} ${OGRE_PKGC_INCLUDE_DIRS} PATH_SUFFIXES "OGRE") -set(OGRE_INCOMPATIBLE FALSE) - -if (OGRE_INCLUDE_DIR) - if (NOT OGRE_CONFIG_INCLUDE_DIR) - set(OGRE_CONFIG_INCLUDE_DIR ${OGRE_INCLUDE_DIR}) - endif () - # determine Ogre version - file(READ ${OGRE_INCLUDE_DIR}/OgrePrerequisites.h OGRE_TEMP_VERSION_CONTENT) - get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_MAJOR OGRE_VERSION_MAJOR) - get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_MINOR OGRE_VERSION_MINOR) - get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_PATCH OGRE_VERSION_PATCH) - get_preprocessor_entry(OGRE_TEMP_VERSION_CONTENT OGRE_VERSION_NAME OGRE_VERSION_NAME) - set(OGRE_VERSION "${OGRE_VERSION_MAJOR}.${OGRE_VERSION_MINOR}.${OGRE_VERSION_PATCH}") - pkg_message(OGRE "Found Ogre ${OGRE_VERSION_NAME} (${OGRE_VERSION})") - - # determine configuration settings - set(OGRE_CONFIG_HEADERS - ${OGRE_CONFIG_INCLUDE_DIR}/OgreBuildSettings.h - ${OGRE_CONFIG_INCLUDE_DIR}/OgreConfig.h - ) - foreach(CFG_FILE ${OGRE_CONFIG_HEADERS}) - if (EXISTS ${CFG_FILE}) - set(OGRE_CONFIG_HEADER ${CFG_FILE}) - break() - endif() - endforeach() - if (OGRE_CONFIG_HEADER) - file(READ ${OGRE_CONFIG_HEADER} OGRE_TEMP_CONFIG_CONTENT) - has_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_STATIC_LIB OGRE_CONFIG_STATIC) - get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_THREAD_SUPPORT OGRE_CONFIG_THREADS) - get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_THREAD_PROVIDER OGRE_CONFIG_THREAD_PROVIDER) - get_preprocessor_entry(OGRE_TEMP_CONFIG_CONTENT OGRE_NO_FREEIMAGE OGRE_CONFIG_FREEIMAGE) - if (OGRE_CONFIG_STATIC AND OGRE_STATIC) - elseif (OGRE_CONFIG_STATIC OR OGRE_STATIC) - pkg_message(OGRE "Build type (static, dynamic) does not match the requested one.") - set(OGRE_INCOMPATIBLE TRUE) - endif () - else () - pkg_message(OGRE "Could not determine Ogre build configuration.") - set(OGRE_INCOMPATIBLE TRUE) - endif () -else () - set(OGRE_INCOMPATIBLE FALSE) -endif () - -find_library(OGRE_LIBRARY_REL NAMES ${OGRE_LIBRARY_NAMES} HINTS ${OGRE_LIB_SEARCH_PATH} ${OGRE_PKGC_LIBRARY_DIRS} ${OGRE_FRAMEWORK_SEARCH_PATH} PATH_SUFFIXES "" "Release" "RelWithDebInfo" "MinSizeRel") -find_library(OGRE_LIBRARY_DBG NAMES ${OGRE_LIBRARY_NAMES_DBG} HINTS ${OGRE_LIB_SEARCH_PATH} ${OGRE_PKGC_LIBRARY_DIRS} ${OGRE_FRAMEWORK_SEARCH_PATH} PATH_SUFFIXES "" "Debug") - -make_library_set(OGRE_LIBRARY) - -if (OGRE_INCOMPATIBLE) - set(OGRE_LIBRARY "NOTFOUND") -endif () - -set(OGRE_INCLUDE_DIR ${OGRE_CONFIG_INCLUDE_DIR} ${OGRE_INCLUDE_DIR} ${OGRE_FRAMEWORK_INCLUDES}) -list(REMOVE_DUPLICATES OGRE_INCLUDE_DIR) -findpkg_finish(OGRE) -add_parent_dir(OGRE_INCLUDE_DIRS OGRE_INCLUDE_DIR) -if (OGRE_SOURCE) - # If working from source rather than SDK, add samples include - set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} "${OGRE_SOURCE}/Samples/Common/include") -endif() - -mark_as_advanced(OGRE_CONFIG_INCLUDE_DIR OGRE_MEDIA_DIR OGRE_PLUGIN_DIR_REL OGRE_PLUGIN_DIR_DBG) - -if (NOT OGRE_FOUND) - return() -endif () - - -# look for required Ogre dependencies in case of static build and/or threading -if (OGRE_STATIC) - set(OGRE_DEPS_FOUND TRUE) - find_package(Cg QUIET) - find_package(DirectX QUIET) - find_package(FreeImage QUIET) - find_package(Freetype QUIET) - find_package(OpenGL QUIET) - find_package(OpenGLES QUIET) - find_package(OpenGLES2 QUIET) - find_package(ZLIB QUIET) - find_package(ZZip QUIET) - if (UNIX AND NOT APPLE AND NOT ANDROID) - find_package(X11 QUIET) - find_library(XAW_LIBRARY NAMES Xaw Xaw7 PATHS ${DEP_LIB_SEARCH_DIR} ${X11_LIB_SEARCH_PATH}) - if (NOT XAW_LIBRARY OR NOT X11_Xt_FOUND) - set(X11_FOUND FALSE) - endif () - endif () - - set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${ZZip_LIBRARIES} ${ZLIB_LIBRARIES} ${FreeImage_LIBRARIES} ${FREETYPE_LIBRARIES}) - - if (APPLE AND NOT OGRE_BUILD_PLATFORM_APPLE_IOS AND NOT ANDROID) - set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${X11_LIBRARIES} ${X11_Xt_LIBRARIES} ${XAW_LIBRARY} ${X11_Xrandr_LIB} ${Carbon_LIBRARIES} ${Cocoa_LIBRARIES}) - endif() - - if (NOT ZLIB_FOUND OR NOT ZZip_FOUND) - set(OGRE_DEPS_FOUND FALSE) - endif () - if (NOT FreeImage_FOUND AND NOT OGRE_CONFIG_FREEIMAGE) - set(OGRE_DEPS_FOUND FALSE) - endif () - if (NOT FREETYPE_FOUND) - set(OGRE_DEPS_FOUND FALSE) - endif () - if (UNIX AND NOT APPLE AND NOT ANDROID) - if (NOT X11_FOUND) - set(OGRE_DEPS_FOUND FALSE) - endif () - endif () -endif() - if (OGRE_CONFIG_THREADS) - if (OGRE_CONFIG_THREAD_PROVIDER EQUAL 1) - if (OGRE_STATIC) - set(Boost_USE_STATIC_LIBS TRUE) - if(OGRE_BUILD_PLATFORM_APPLE_IOS) - set(Boost_USE_MULTITHREADED OFF) - endif() - endif() - - set(OGRE_BOOST_COMPONENTS thread date_time) - find_package(Boost COMPONENTS ${OGRE_BOOST_COMPONENTS} QUIET) - if(Boost_FOUND AND Boost_VERSION GREATER 104900) - if(Boost_VERSION GREATER 105300) - set(OGRE_BOOST_COMPONENTS thread date_time system atomic chrono) - else() - set(OGRE_BOOST_COMPONENTS thread date_time system chrono) - endif() - endif() - - find_package(Boost COMPONENTS ${OGRE_BOOST_COMPONENTS} QUIET) - if (NOT Boost_THREAD_FOUND) - set(OGRE_DEPS_FOUND FALSE) - else () - set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${Boost_LIBRARIES}) - set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS}) - endif () - elseif (OGRE_CONFIG_THREAD_PROVIDER EQUAL 2) - find_package(POCO QUIET) - if (NOT POCO_FOUND) - set(OGRE_DEPS_FOUND FALSE) - else () - set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${POCO_LIBRARIES}) - set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${POCO_INCLUDE_DIRS}) - endif () - elseif (OGRE_CONFIG_THREAD_PROVIDER EQUAL 3) - find_package(TBB QUIET) - if (NOT TBB_FOUND) - set(OGRE_DEPS_FOUND FALSE) - else () - set(OGRE_LIBRARIES ${OGRE_LIBRARIES} ${TBB_LIBRARIES}) - set(OGRE_INCLUDE_DIRS ${OGRE_INCLUDE_DIRS} ${TBB_INCLUDE_DIRS}) - endif () - endif () - endif () -if (OGRE_STATIC) - if (NOT OGRE_DEPS_FOUND) - pkg_message(OGRE "Could not find all required dependencies for the Ogre package.") - set(OGRE_FOUND FALSE) - endif () -endif () - -if (NOT OGRE_FOUND) - return() -endif () - - -get_filename_component(OGRE_LIBRARY_DIR_REL "${OGRE_LIBRARY_REL}" PATH) -get_filename_component(OGRE_LIBRARY_DIR_DBG "${OGRE_LIBRARY_DBG}" PATH) -set(OGRE_LIBRARY_DIRS ${OGRE_LIBRARY_DIR_REL} ${OGRE_LIBRARY_DIR_DBG}) - -# find binaries -if (NOT OGRE_STATIC) - if (WIN32) - find_file(OGRE_BINARY_REL NAMES "OgreMain.dll" HINTS ${OGRE_BIN_SEARCH_PATH} - PATH_SUFFIXES "" Release RelWithDebInfo MinSizeRel) - find_file(OGRE_BINARY_DBG NAMES "OgreMain_d.dll" HINTS ${OGRE_BIN_SEARCH_PATH} - PATH_SUFFIXES "" Debug ) - endif() - mark_as_advanced(OGRE_BINARY_REL OGRE_BINARY_DBG) -endif() - - -######################################################### -# Find Ogre components -######################################################### - -set(OGRE_COMPONENT_SEARCH_PATH_REL - ${OGRE_LIBRARY_DIR_REL}/.. - ${OGRE_LIBRARY_DIR_REL}/../.. - ${OGRE_BIN_SEARCH_PATH} -) -set(OGRE_COMPONENT_SEARCH_PATH_DBG - ${OGRE_LIBRARY_DIR_DBG}/.. - ${OGRE_LIBRARY_DIR_DBG}/../.. - ${OGRE_BIN_SEARCH_PATH} -) - -macro(ogre_find_component COMPONENT HEADER) - findpkg_begin(OGRE_${COMPONENT}) - find_path(OGRE_${COMPONENT}_INCLUDE_DIR NAMES ${HEADER} HINTS ${OGRE_INCLUDE_DIRS} ${OGRE_PREFIX_SOURCE} PATH_SUFFIXES ${COMPONENT} OGRE/${COMPONENT} Components/${COMPONENT}/include) - set(OGRE_${COMPONENT}_LIBRARY_NAMES "Ogre${COMPONENT}${OGRE_LIB_SUFFIX}") - get_debug_names(OGRE_${COMPONENT}_LIBRARY_NAMES) - find_library(OGRE_${COMPONENT}_LIBRARY_REL NAMES ${OGRE_${COMPONENT}_LIBRARY_NAMES} HINTS ${OGRE_LIBRARY_DIR_REL} ${OGRE_FRAMEWORK_PATH} PATH_SUFFIXES "" "Release" "RelWithDebInfo" "MinSizeRel") - find_library(OGRE_${COMPONENT}_LIBRARY_DBG NAMES ${OGRE_${COMPONENT}_LIBRARY_NAMES_DBG} HINTS ${OGRE_LIBRARY_DIR_DBG} ${OGRE_FRAMEWORK_PATH} PATH_SUFFIXES "" "Debug") - make_library_set(OGRE_${COMPONENT}_LIBRARY) - findpkg_finish(OGRE_${COMPONENT}) - if (OGRE_${COMPONENT}_FOUND) - # find binaries - if (NOT OGRE_STATIC) - if (WIN32) - find_file(OGRE_${COMPONENT}_BINARY_REL NAMES "Ogre${COMPONENT}.dll" HINTS ${OGRE_COMPONENT_SEARCH_PATH_REL} PATH_SUFFIXES "" bin bin/Release bin/RelWithDebInfo bin/MinSizeRel Release) - find_file(OGRE_${COMPONENT}_BINARY_DBG NAMES "Ogre${COMPONENT}_d.dll" HINTS ${OGRE_COMPONENT_SEARCH_PATH_DBG} PATH_SUFFIXES "" bin bin/Debug Debug) - endif() - mark_as_advanced(OGRE_${COMPONENT}_BINARY_REL OGRE_${COMPONENT}_BINARY_DBG) - endif() - endif() -endmacro() - -# look for Paging component -ogre_find_component(Paging OgrePaging.h) -# look for Terrain component -ogre_find_component(Terrain OgreTerrain.h) -# look for Property component -ogre_find_component(Property OgreProperty.h) -# look for RTShaderSystem component -ogre_find_component(RTShaderSystem OgreRTShaderSystem.h) -# look for Volume component -ogre_find_component(Volume OgreVolumePrerequisites.h) -# look for Overlay component -ogre_find_component(Overlay OgreOverlaySystem.h) - -######################################################### -# Find Ogre plugins -######################################################### -macro(ogre_find_plugin PLUGIN HEADER) - # On Unix, the plugins might have no prefix - if (CMAKE_FIND_LIBRARY_PREFIXES) - set(TMP_CMAKE_LIB_PREFIX ${CMAKE_FIND_LIBRARY_PREFIXES}) - set(CMAKE_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES} "") - endif() - - # strip RenderSystem_ or Plugin_ prefix from plugin name - string(REPLACE "RenderSystem_" "" PLUGIN_TEMP ${PLUGIN}) - string(REPLACE "Plugin_" "" PLUGIN_NAME ${PLUGIN_TEMP}) - - # header files for plugins are not usually needed, but find them anyway if they are present - set(OGRE_PLUGIN_PATH_SUFFIXES - PlugIns PlugIns/${PLUGIN_NAME} Plugins Plugins/${PLUGIN_NAME} ${PLUGIN} - RenderSystems RenderSystems/${PLUGIN_NAME} ${ARGN}) - find_path(OGRE_${PLUGIN}_INCLUDE_DIR NAMES ${HEADER} - HINTS ${OGRE_INCLUDE_DIRS} ${OGRE_PREFIX_SOURCE} - PATH_SUFFIXES ${OGRE_PLUGIN_PATH_SUFFIXES}) - # find link libraries for plugins - set(OGRE_${PLUGIN}_LIBRARY_NAMES "${PLUGIN}${OGRE_LIB_SUFFIX}") - get_debug_names(OGRE_${PLUGIN}_LIBRARY_NAMES) - set(OGRE_${PLUGIN}_LIBRARY_FWK ${OGRE_LIBRARY_FWK}) - find_library(OGRE_${PLUGIN}_LIBRARY_REL NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES} - HINTS "${OGRE_BUILD}/lib" ${OGRE_LIBRARY_DIRS} ${OGRE_FRAMEWORK_PATH} PATH_SUFFIXES "" OGRE opt Release Release/opt RelWithDebInfo RelWithDebInfo/opt MinSizeRel MinSizeRel/opt) - find_library(OGRE_${PLUGIN}_LIBRARY_DBG NAMES ${OGRE_${PLUGIN}_LIBRARY_NAMES_DBG} - HINTS "${OGRE_BUILD}/lib" ${OGRE_LIBRARY_DIRS} ${OGRE_FRAMEWORK_PATH} PATH_SUFFIXES "" OGRE opt Debug Debug/opt) - make_library_set(OGRE_${PLUGIN}_LIBRARY) - - if (OGRE_${PLUGIN}_LIBRARY OR OGRE_${PLUGIN}_INCLUDE_DIR) - set(OGRE_${PLUGIN}_FOUND TRUE) - if (OGRE_${PLUGIN}_INCLUDE_DIR) - set(OGRE_${PLUGIN}_INCLUDE_DIRS ${OGRE_${PLUGIN}_INCLUDE_DIR}) - endif() - set(OGRE_${PLUGIN}_LIBRARIES ${OGRE_${PLUGIN}_LIBRARY}) - endif () - - mark_as_advanced(OGRE_${PLUGIN}_INCLUDE_DIR OGRE_${PLUGIN}_LIBRARY_REL OGRE_${PLUGIN}_LIBRARY_DBG OGRE_${PLUGIN}_LIBRARY_FWK) - - # look for plugin dirs - if (OGRE_${PLUGIN}_FOUND) - if (NOT OGRE_PLUGIN_DIR_REL OR NOT OGRE_PLUGIN_DIR_DBG) - if (WIN32) - set(OGRE_PLUGIN_SEARCH_PATH_REL - ${OGRE_LIBRARY_DIR_REL}/.. - ${OGRE_LIBRARY_DIR_REL}/../.. - ${OGRE_BIN_SEARCH_PATH} - ) - set(OGRE_PLUGIN_SEARCH_PATH_DBG - ${OGRE_LIBRARY_DIR_DBG}/.. - ${OGRE_LIBRARY_DIR_DBG}/../.. - ${OGRE_BIN_SEARCH_PATH} - ) - find_path(OGRE_PLUGIN_DIR_REL NAMES "${PLUGIN}.dll" HINTS ${OGRE_PLUGIN_SEARCH_PATH_REL} - PATH_SUFFIXES "" bin bin/Release bin/RelWithDebInfo bin/MinSizeRel Release) - find_path(OGRE_PLUGIN_DIR_DBG NAMES "${PLUGIN}_d.dll" HINTS ${OGRE_PLUGIN_SEARCH_PATH_DBG} - PATH_SUFFIXES "" bin bin/Debug Debug) - elseif (UNIX) - get_filename_component(OGRE_PLUGIN_DIR_TMP ${OGRE_${PLUGIN}_LIBRARY_REL} PATH) - set(OGRE_PLUGIN_DIR_REL ${OGRE_PLUGIN_DIR_TMP} CACHE STRING "Ogre plugin dir (release)" FORCE) - get_filename_component(OGRE_PLUGIN_DIR_TMP ${OGRE_${PLUGIN}_LIBRARY_DBG} PATH) - set(OGRE_PLUGIN_DIR_DBG ${OGRE_PLUGIN_DIR_TMP} CACHE STRING "Ogre plugin dir (debug)" FORCE) - endif () - endif () - - # find binaries - if (NOT OGRE_STATIC) - if (WIN32) - find_file(OGRE_${PLUGIN}_REL NAMES "${PLUGIN}.dll" HINTS ${OGRE_PLUGIN_DIR_REL}) - find_file(OGRE_${PLUGIN}_DBG NAMES "${PLUGIN}_d.dll" HINTS ${OGRE_PLUGIN_DIR_DBG}) - endif() - mark_as_advanced(OGRE_${PLUGIN}_REL OGRE_${PLUGIN}_DBG) - endif() - - endif () - - if (TMP_CMAKE_LIB_PREFIX) - set(CMAKE_FIND_LIBRARY_PREFIXES ${TMP_CMAKE_LIB_PREFIX}) - endif () -endmacro(ogre_find_plugin) - -ogre_find_plugin(Plugin_PCZSceneManager OgrePCZSceneManager.h PCZ PlugIns/PCZSceneManager/include) -ogre_find_plugin(Plugin_OctreeZone OgreOctreeZone.h PCZ PlugIns/OctreeZone/include) -ogre_find_plugin(Plugin_BSPSceneManager OgreBspSceneManager.h PlugIns/BSPSceneManager/include) -ogre_find_plugin(Plugin_CgProgramManager OgreCgProgram.h PlugIns/CgProgramManager/include) -ogre_find_plugin(Plugin_OctreeSceneManager OgreOctreeSceneManager.h PlugIns/OctreeSceneManager/include) -ogre_find_plugin(Plugin_ParticleFX OgreParticleFXPrerequisites.h PlugIns/ParticleFX/include) -ogre_find_plugin(RenderSystem_GL OgreGLRenderSystem.h RenderSystems/GL/include) -ogre_find_plugin(RenderSystem_GL3Plus OgreGL3PlusRenderSystem.h RenderSystems/GL3Plus/include) -ogre_find_plugin(RenderSystem_GLES OgreGLESRenderSystem.h RenderSystems/GLES/include) -ogre_find_plugin(RenderSystem_GLES2 OgreGLES2RenderSystem.h RenderSystems/GLES2/include) -ogre_find_plugin(RenderSystem_Direct3D9 OgreD3D9RenderSystem.h RenderSystems/Direct3D9/include) -ogre_find_plugin(RenderSystem_Direct3D11 OgreD3D11RenderSystem.h RenderSystems/Direct3D11/include) - -if (OGRE_STATIC) - # check if dependencies for plugins are met - if (NOT DirectX_FOUND) - set(OGRE_RenderSystem_Direct3D9_FOUND FALSE) - endif () - if (NOT DirectX_D3D11_FOUND) - set(OGRE_RenderSystem_Direct3D11_FOUND FALSE) - endif () - if (NOT OPENGL_FOUND) - set(OGRE_RenderSystem_GL_FOUND FALSE) - endif () - if (NOT OPENGL_FOUND) - set(OGRE_RenderSystem_GL3Plus_FOUND FALSE) - endif () - if (NOT OPENGLES_FOUND) - set(OGRE_RenderSystem_GLES_FOUND FALSE) - endif () - if (NOT OPENGLES2_FOUND) - set(OGRE_RenderSystem_GLES2_FOUND FALSE) - endif () - if (NOT Cg_FOUND) - set(OGRE_Plugin_CgProgramManager_FOUND FALSE) - endif () - - set(OGRE_RenderSystem_Direct3D9_LIBRARIES ${OGRE_RenderSystem_Direct3D9_LIBRARIES} - ${DirectX_LIBRARIES} - ) - - set(OGRE_RenderSystem_Direct3D11_LIBRARIES ${OGRE_RenderSystem_Direct3D11_LIBRARIES} - ${DirectX_D3D11_LIBRARIES} - ) - set(OGRE_RenderSystem_GL_LIBRARIES ${OGRE_RenderSystem_GL_LIBRARIES} - ${OPENGL_LIBRARIES} - ) - set(OGRE_RenderSystem_GL3Plus_LIBRARIES ${OGRE_RenderSystem_GL3Plus_LIBRARIES} - ${OPENGL_LIBRARIES} - ) - set(OGRE_RenderSystem_GLES_LIBRARIES ${OGRE_RenderSystem_GLES_LIBRARIES} - ${OPENGLES_LIBRARIES} - ) - set(OGRE_RenderSystem_GLES2_LIBRARIES ${OGRE_RenderSystem_GLES2_LIBRARIES} - ${OPENGLES2_LIBRARIES} - ) - set(OGRE_Plugin_CgProgramManager_LIBRARIES ${OGRE_Plugin_CgProgramManager_LIBRARIES} - ${Cg_LIBRARIES} - ) -endif () - -# look for the media directory -set(OGRE_MEDIA_SEARCH_PATH - ${OGRE_SOURCE} - ${OGRE_LIBRARY_DIR_REL}/.. - ${OGRE_LIBRARY_DIR_DBG}/.. - ${OGRE_LIBRARY_DIR_REL}/../.. - ${OGRE_LIBRARY_DIR_DBG}/../.. - ${OGRE_PREFIX_SOURCE} -) -set(OGRE_MEDIA_SEARCH_SUFFIX - Samples/Media - Media - media - share/OGRE/media - share/OGRE/Media -) - -clear_if_changed(OGRE_PREFIX_WATCH OGRE_MEDIA_DIR) -find_path(OGRE_MEDIA_DIR NAMES packs/cubemapsJS.zip HINTS ${OGRE_MEDIA_SEARCH_PATH} - PATHS ${OGRE_PREFIX_PATH} PATH_SUFFIXES ${OGRE_MEDIA_SEARCH_SUFFIX}) - diff --git a/trunk/CMake/FindOIS.cmake b/trunk/CMake/FindOIS.cmake deleted file mode 100644 index e7dc803..0000000 --- a/trunk/CMake/FindOIS.cmake +++ /dev/null @@ -1,71 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -# - Try to find OIS -# Once done, this will define -# -# OIS_FOUND - system has OIS -# OIS_INCLUDE_DIRS - the OIS include directories -# OIS_LIBRARIES - link these to use OIS - -include(FindPkgMacros) -findpkg_begin(OIS) - -# Get path, convert backslashes as ${ENV_${var}} -getenv_path(OIS_HOME) -getenv_path(OGRE_SDK) -getenv_path(OGRE_HOME) -getenv_path(OGRE_SOURCE) - -# construct search paths -set(OIS_PREFIX_PATH ${OIS_HOME} ${ENV_OIS_HOME} - ${OGRE_SOURCE}/iPhoneDependencies ${ENV_OGRE_SOURCE}/iPhoneDependencies - ${OGRE_SOURCE}/Dependencies ${ENV_OGRE_SOURCE}/Dependencies - ${OGRE_SDK} ${ENV_OGRE_SDK} - ${OGRE_HOME} ${ENV_OGRE_HOME}) -create_search_paths(OIS) -# redo search if prefix path changed -clear_if_changed(OIS_PREFIX_PATH - OIS_LIBRARY_FWK - OIS_LIBRARY_REL - OIS_LIBRARY_DBG - OIS_INCLUDE_DIR -) - -set(OIS_LIBRARY_NAMES OIS) -get_debug_names(OIS_LIBRARY_NAMES) - -use_pkgconfig(OIS_PKGC OIS) - -# For OIS, prefer static library over framework (important when referencing OIS source build) -set(CMAKE_FIND_FRAMEWORK "LAST") - -findpkg_framework(OIS) -if (OIS_HOME) - # OIS uses the 'includes' path for its headers in the source release, not 'include' - set(OIS_INC_SEARCH_PATH ${OIS_INC_SEARCH_PATH} ${OIS_HOME}/includes) -endif() -if (APPLE AND OIS_HOME) - # OIS source build on Mac stores libs in a different location - # Also this is for static build - set(OIS_LIB_SEARCH_PATH ${OIS_LIB_SEARCH_PATH} ${OIS_HOME}/Mac/XCode-2.2/build) -endif() -find_path(OIS_INCLUDE_DIR NAMES OIS.h HINTS ${OIS_INC_SEARCH_PATH} ${OIS_PKGC_INCLUDE_DIRS} PATH_SUFFIXES OIS) -find_library(OIS_LIBRARY_REL NAMES ${OIS_LIBRARY_NAMES} HINTS ${OIS_LIB_SEARCH_PATH} ${OIS_PKGC_LIBRARY_DIRS} PATH_SUFFIXES "" release relwithdebinfo minsizerel) -find_library(OIS_LIBRARY_DBG NAMES ${OIS_LIBRARY_NAMES_DBG} HINTS ${OIS_LIB_SEARCH_PATH} ${OIS_PKGC_LIBRARY_DIRS} PATH_SUFFIXES "" debug) -make_library_set(OIS_LIBRARY) - - -findpkg_finish(OIS) - -# add parent of OIS folder to support OIS/OIS.h -add_parent_dir(OIS_INCLUDE_DIRS OIS_INCLUDE_DIR) - -# Reset framework finding -set(CMAKE_FIND_FRAMEWORK "FIRST") diff --git a/trunk/CMake/FindPOCO.cmake b/trunk/CMake/FindPOCO.cmake deleted file mode 100644 index 6b6d7fa..0000000 --- a/trunk/CMake/FindPOCO.cmake +++ /dev/null @@ -1,101 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -# - Try to find POCO libraries -# Once done, this will define -# -# POCO_FOUND - system has POCO -# POCO_INCLUDE_DIRS - the POCO include directories -# POCO_LIBRARIES - link these to use POCO - -include(FindPkgMacros) -findpkg_begin(POCO) - -# Get path, convert backslashes as ${ENV_${var}} -getenv_path(POCO_HOME) -getenv_path(POCO_ROOT) -getenv_path(POCO_BASE) - -# construct search paths -set(POCO_PREFIX_PATH - ${POCO_HOME} ${ENV_POCO_HOME} - ${POCO_ROOT} ${ENV_POCO_ROOT} - ${POCO_BASE} ${ENV_POCO_BASE} -) -# redo search if prefix path changed -clear_if_changed(POCO_PREFIX_PATH - POCO_LIBRARY_FWK - POCO_LIBRARY_REL - POCO_LIBRARY_DBG - POCO_INCLUDE_DIR -) - -create_search_paths(POCO) -set(POCO_INC_SEARCH_PATH ${POCO_INC_SEARCH_PATH} ${POCO_PREFIX_PATH}) - - -set(POCO_LIBRARY_NAMES PocoFoundation PocoFoundationmt) -get_debug_names(POCO_LIBRARY_NAMES) - -use_pkgconfig(POCO_PKGC POCO) - -findpkg_framework(POCO) - -find_path(POCO_INCLUDE_DIR NAMES Poco/Foundation.h HINTS ${POCO_INC_SEARCH_PATH} ${POCO_PKGC_INCLUDE_DIRS} PATH_SUFFIXES Foundation/include) -find_library(POCO_LIBRARY_REL NAMES ${POCO_LIBRARY_NAMES} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -find_library(POCO_LIBRARY_DBG NAMES ${POCO_LIBRARY_NAMES_DBG} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -make_library_set(POCO_LIBRARY) - -findpkg_finish(POCO) - -if (NOT POCO_FOUND) - return() -endif () - - -# Look for Poco's Util package -findpkg_begin(POCO_Util) -set(POCO_Util_LIBRARY_NAMES PocoUtil PocoUtilmt) -get_debug_names(POCO_Util_LIBRARY_NAMES) -find_path(POCO_Util_INCLUDE_DIR NAMES Poco/Util/Util.h HINTS ${POCO_INCLUDE_DIR} ${POCO_INC_SEARCH_PATH} ${POCO_PKGC_INCLUDE_DIRS} PATH_SUFFIXES Util/include) -find_library(POCO_Util_LIBRARY_REL NAMES ${POCO_Util_LIBRARY_NAMES} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -find_library(POCO_Util_LIBRARY_DBG NAMES ${POCO_Util_LIBRARY_NAMES_DBG} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -make_library_set(POCO_Util_LIBRARY) -findpkg_finish(POCO_Util) - -# Look for Poco's Net package -findpkg_begin(POCO_Net) -set(POCO_Net_LIBRARY_NAMES PocoNet PocoNetmt) -get_debug_names(POCO_Net_LIBRARY_NAMES) -find_path(POCO_Net_INCLUDE_DIR NAMES Poco/Net/Net.h HINTS ${POCO_INCLUDE_DIR} ${POCO_INC_SEARCH_PATH} ${POCO_PKGC_INCLUDE_DIRS} PATH_SUFFIXES Net/include) -find_library(POCO_Net_LIBRARY_REL NAMES ${POCO_Net_LIBRARY_NAMES} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -find_library(POCO_Net_LIBRARY_DBG NAMES ${POCO_Net_LIBRARY_NAMES_DBG} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -make_library_set(POCO_Net_LIBRARY) -findpkg_finish(POCO_Net) - -# Look for Poco's NetSSL package -findpkg_begin(POCO_NetSSL) -set(POCO_NetSSL_LIBRARY_NAMES PocoNetSSL PocoNetSSLmt) -get_debug_names(POCO_NetSSL_LIBRARY_NAMES) -find_path(POCO_NetSSL_INCLUDE_DIR NAMES Poco/Net/NetSSL.h HINTS ${POCO_INCLUDE_DIR} ${POCO_INC_SEARCH_PATH} ${POCO_PKGC_INCLUDE_DIRS} PATH_SUFFIXES NetSSL/include) -find_library(POCO_NetSSL_LIBRARY_REL NAMES ${POCO_NetSSL_LIBRARY_NAMES} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -find_library(POCO_NetSSL_LIBRARY_DBG NAMES ${POCO_NetSSL_LIBRARY_NAMES_DBG} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -make_library_set(POCO_NetSSL_LIBRARY) -findpkg_finish(POCO_NetSSL) - -# Look for Poco's XML package -findpkg_begin(POCO_XML) -set(POCO_XML_LIBRARY_NAMES PocoXML PocoXMLmt) -get_debug_names(POCO_XML_LIBRARY_NAMES) -find_path(POCO_XML_INCLUDE_DIR NAMES Poco/XML/XML.h HINTS ${POCO_INCLUDE_DIR} ${POCO_INC_SEARCH_PATH} ${POCO_PKGC_INCLUDE_DIRS} PATH_SUFFIXES XML/include) -find_library(POCO_XML_LIBRARY_REL NAMES ${POCO_XML_LIBRARY_NAMES} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -find_library(POCO_XML_LIBRARY_DBG NAMES ${POCO_XML_LIBRARY_NAMES_DBG} HINTS ${POCO_LIB_SEARCH_PATH} ${POCO_PKGC_LIBRARY_DIRS} PATH_SUFFIXES Linux/i686) -make_library_set(POCO_XML_LIBRARY) -findpkg_finish(POCO_XML) - diff --git a/trunk/CMake/FindPkgMacros.cmake b/trunk/CMake/FindPkgMacros.cmake deleted file mode 100644 index 885ba46..0000000 --- a/trunk/CMake/FindPkgMacros.cmake +++ /dev/null @@ -1,163 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -################################################################## -# Provides some common functionality for the FindPackage modules -################################################################## - -# Begin processing of package -macro(findpkg_begin PREFIX) - if (NOT ${PREFIX}_FIND_QUIETLY) - message(STATUS "Looking for ${PREFIX}...") - endif () -endmacro(findpkg_begin) - -# Display a status message unless FIND_QUIETLY is set -macro(pkg_message PREFIX) - if (NOT ${PREFIX}_FIND_QUIETLY) - message(STATUS ${ARGN}) - endif () -endmacro(pkg_message) - -# Get environment variable, define it as ENV_$var and make sure backslashes are converted to forward slashes -macro(getenv_path VAR) - set(ENV_${VAR} $ENV{${VAR}}) - # replace won't work if var is blank - if (ENV_${VAR}) - string( REGEX REPLACE "\\\\" "/" ENV_${VAR} ${ENV_${VAR}} ) - endif () -endmacro(getenv_path) - -# Construct search paths for includes and libraries from a PREFIX_PATH -macro(create_search_paths PREFIX) - foreach(dir ${${PREFIX}_PREFIX_PATH}) - set(${PREFIX}_INC_SEARCH_PATH ${${PREFIX}_INC_SEARCH_PATH} - ${dir}/include ${dir}/Include ${dir}/include/${PREFIX} ${dir}/Headers) - set(${PREFIX}_LIB_SEARCH_PATH ${${PREFIX}_LIB_SEARCH_PATH} - ${dir}/lib ${dir}/Lib ${dir}/lib/${PREFIX} ${dir}/Libs) - set(${PREFIX}_BIN_SEARCH_PATH ${${PREFIX}_BIN_SEARCH_PATH} - ${dir}/bin) - endforeach(dir) - if(ANDROID) - set(${PREFIX}_LIB_SEARCH_PATH ${${PREFIX}_LIB_SEARCH_PATH} ${OGRE_DEPENDENCIES_DIR}/lib/${ANDROID_ABI}) - endif() - set(${PREFIX}_FRAMEWORK_SEARCH_PATH ${${PREFIX}_PREFIX_PATH}) -endmacro(create_search_paths) - -# clear cache variables if a certain variable changed -macro(clear_if_changed TESTVAR) - # test against internal check variable - # HACK: Apparently, adding a variable to the cache cleans up the list - # a bit. We need to also remove any empty strings from the list, but - # at the same time ensure that we are actually dealing with a list. - list(APPEND ${TESTVAR} "") - list(REMOVE_ITEM ${TESTVAR} "") - if (NOT "${${TESTVAR}}" STREQUAL "${${TESTVAR}_INT_CHECK}") - message(STATUS "${TESTVAR} changed.") - foreach(var ${ARGN}) - set(${var} "NOTFOUND" CACHE STRING "x" FORCE) - endforeach(var) - endif () - set(${TESTVAR}_INT_CHECK ${${TESTVAR}} CACHE INTERNAL "x" FORCE) -endmacro(clear_if_changed) - -# Try to get some hints from pkg-config, if available -macro(use_pkgconfig PREFIX PKGNAME) - find_package(PkgConfig) - if (PKG_CONFIG_FOUND) - pkg_check_modules(${PREFIX} ${PKGNAME}) - endif () -endmacro (use_pkgconfig) - -# Couple a set of release AND debug libraries (or frameworks) -macro(make_library_set PREFIX) - if (${PREFIX}_FWK) - set(${PREFIX} ${${PREFIX}_FWK}) - elseif (${PREFIX}_REL AND ${PREFIX}_DBG) - set(${PREFIX} optimized ${${PREFIX}_REL} debug ${${PREFIX}_DBG}) - elseif (${PREFIX}_REL) - set(${PREFIX} ${${PREFIX}_REL}) - elseif (${PREFIX}_DBG) - set(${PREFIX} ${${PREFIX}_DBG}) - endif () -endmacro(make_library_set) - -# Generate debug names from given release names -macro(get_debug_names PREFIX) - foreach(i ${${PREFIX}}) - set(${PREFIX}_DBG ${${PREFIX}_DBG} ${i}d ${i}D ${i}_d ${i}_D ${i}_debug ${i}) - endforeach(i) -endmacro(get_debug_names) - -# Add the parent dir from DIR to VAR -macro(add_parent_dir VAR DIR) - get_filename_component(${DIR}_TEMP "${${DIR}}/.." ABSOLUTE) - set(${VAR} ${${VAR}} ${${DIR}_TEMP}) -endmacro(add_parent_dir) - -# Do the final processing for the package find. -macro(findpkg_finish PREFIX) - # skip if already processed during this run - if (NOT ${PREFIX}_FOUND) - if (${PREFIX}_INCLUDE_DIR AND ${PREFIX}_LIBRARY) - set(${PREFIX}_FOUND TRUE) - set(${PREFIX}_INCLUDE_DIRS ${${PREFIX}_INCLUDE_DIR}) - set(${PREFIX}_LIBRARIES ${${PREFIX}_LIBRARY}) - if (NOT ${PREFIX}_FIND_QUIETLY) - message(STATUS "Found ${PREFIX}: ${${PREFIX}_LIBRARIES}") - endif () - else () - if (NOT ${PREFIX}_FIND_QUIETLY) - message(STATUS "Could not locate ${PREFIX}") - endif () - if (${PREFIX}_FIND_REQUIRED) - message(FATAL_ERROR "Required library ${PREFIX} not found! Install the library (including dev packages) and try again. If the library is already installed, set the missing variables manually in cmake.") - endif () - endif () - - mark_as_advanced(${PREFIX}_INCLUDE_DIR ${PREFIX}_LIBRARY ${PREFIX}_LIBRARY_REL ${PREFIX}_LIBRARY_DBG ${PREFIX}_LIBRARY_FWK) - endif () -endmacro(findpkg_finish) - - -# Slightly customised framework finder -macro(findpkg_framework fwk) - if(APPLE) - set(${fwk}_FRAMEWORK_PATH - ${${fwk}_FRAMEWORK_SEARCH_PATH} - ${CMAKE_FRAMEWORK_PATH} - ~/Library/Frameworks - /Library/Frameworks - /System/Library/Frameworks - /Network/Library/Frameworks - ${CMAKE_CURRENT_SOURCE_DIR}/lib/macosx/Release - ${CMAKE_CURRENT_SOURCE_DIR}/lib/macosx/Debug - ) - # These could be arrays of paths, add each individually to the search paths - foreach(i ${OGRE_PREFIX_PATH}) - set(${fwk}_FRAMEWORK_PATH ${${fwk}_FRAMEWORK_PATH} ${i}/lib/macosx/Release ${i}/lib/macosx/Debug) - endforeach(i) - - foreach(i ${OGRE_PREFIX_BUILD}) - set(${fwk}_FRAMEWORK_PATH ${${fwk}_FRAMEWORK_PATH} ${i}/lib/macosx/Release ${i}/lib/macosx/Debug) - endforeach(i) - - foreach(dir ${${fwk}_FRAMEWORK_PATH}) - set(fwkpath ${dir}/${fwk}.framework) - if(EXISTS ${fwkpath}) - set(${fwk}_FRAMEWORK_INCLUDES ${${fwk}_FRAMEWORK_INCLUDES} - ${fwkpath}/Headers ${fwkpath}/PrivateHeaders) - set(${fwk}_FRAMEWORK_PATH ${dir}) - if (NOT ${fwk}_LIBRARY_FWK) - set(${fwk}_LIBRARY_FWK "-framework ${fwk}") - endif () - endif(EXISTS ${fwkpath}) - endforeach(dir) - endif(APPLE) -endmacro(findpkg_framework) diff --git a/trunk/CMake/OgreConfigTargets.cmake b/trunk/CMake/OgreConfigTargets.cmake deleted file mode 100644 index 246ba5f..0000000 --- a/trunk/CMake/OgreConfigTargets.cmake +++ /dev/null @@ -1,377 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -# Configure settings and install targets - -if (WIN32) - set(OGRE_RELEASE_PATH "/Release") - set(OGRE_RELWDBG_PATH "/RelWithDebInfo") - set(OGRE_MINSIZE_PATH "/MinSizeRel") - set(OGRE_DEBUG_PATH "/Debug") - set(OGRE_LIB_RELEASE_PATH "/Release") - set(OGRE_LIB_RELWDBG_PATH "/RelWithDebInfo") - set(OGRE_LIB_MINSIZE_PATH "/MinSizeRel") - set(OGRE_LIB_DEBUG_PATH "/Debug") - set(OGRE_PLUGIN_PATH "/opt") - set(OGRE_SAMPLE_PATH "/opt/samples") -elseif (UNIX) - set(OGRE_RELEASE_PATH "") - set(OGRE_RELWDBG_PATH "") - set(OGRE_MINSIZE_PATH "") - set(OGRE_DEBUG_PATH "/debug") - if (NOT APPLE) - set(OGRE_DEBUG_PATH "") - endif () - set(OGRE_LIB_RELEASE_PATH "") - set(OGRE_LIB_RELWDBG_PATH "") - set(OGRE_LIB_MINSIZE_PATH "") - set(OGRE_LIB_DEBUG_PATH "") - if (APPLE) - set(OGRE_PLUGIN_PATH "/") - else() - set(OGRE_PLUGIN_PATH "/OGRE") - endif(APPLE) - set(OGRE_SAMPLE_PATH "/OGRE/Samples") -endif () - -# create vcproj.user file for Visual Studio to set debug working directory -function(ogre_create_vcproj_userfile TARGETNAME) - if (MSVC) - configure_file( - ${OGRE_TEMPLATES_DIR}/VisualStudioUserFile.vcproj.user.in - ${CMAKE_CURRENT_BINARY_DIR}/${TARGETNAME}.vcproj.user - @ONLY - ) - endif () -endfunction(ogre_create_vcproj_userfile) - -# install targets according to current build type -function(ogre_install_target TARGETNAME SUFFIX EXPORT) - # Skip all install targets in SDK - if (OGRE_SDK_BUILD) - return() - endif() - - if(EXPORT) - install(TARGETS ${TARGETNAME} #EXPORT Ogre-exports - BUNDLE DESTINATION "bin${OGRE_RELEASE_PATH}" CONFIGURATIONS Release None "" - RUNTIME DESTINATION "bin${OGRE_RELEASE_PATH}" CONFIGURATIONS Release None "" - LIBRARY DESTINATION "lib${OGRE_LIB_RELEASE_PATH}${SUFFIX}" CONFIGURATIONS Release None "" - ARCHIVE DESTINATION "lib${OGRE_LIB_RELEASE_PATH}${SUFFIX}" CONFIGURATIONS Release None "" - FRAMEWORK DESTINATION "lib${OGRE_RELEASE_PATH}/Release" CONFIGURATIONS Release None "" - ) - install(TARGETS ${TARGETNAME} #EXPORT Ogre-exports - BUNDLE DESTINATION "bin${OGRE_RELWDBG_PATH}" CONFIGURATIONS RelWithDebInfo - RUNTIME DESTINATION "bin${OGRE_RELWDBG_PATH}" CONFIGURATIONS RelWithDebInfo - LIBRARY DESTINATION "lib${OGRE_LIB_RELWDBG_PATH}${SUFFIX}" CONFIGURATIONS RelWithDebInfo - ARCHIVE DESTINATION "lib${OGRE_LIB_RELWDBG_PATH}${SUFFIX}" CONFIGURATIONS RelWithDebInfo - FRAMEWORK DESTINATION "lib${OGRE_RELWDBG_PATH}/RelWithDebInfo" CONFIGURATIONS RelWithDebInfo - ) - install(TARGETS ${TARGETNAME} #EXPORT Ogre-exports - BUNDLE DESTINATION "bin${OGRE_MINSIZE_PATH}" CONFIGURATIONS MinSizeRel - RUNTIME DESTINATION "bin${OGRE_MINSIZE_PATH}" CONFIGURATIONS MinSizeRel - LIBRARY DESTINATION "lib${OGRE_LIB_MINSIZE_PATH}${SUFFIX}" CONFIGURATIONS MinSizeRel - ARCHIVE DESTINATION "lib${OGRE_LIB_MINSIZE_PATH}${SUFFIX}" CONFIGURATIONS MinSizeRel - FRAMEWORK DESTINATION "lib${OGRE_MINSIZE_PATH}/MinSizeRel" CONFIGURATIONS MinSizeRel - ) - install(TARGETS ${TARGETNAME} #EXPORT Ogre-exports - BUNDLE DESTINATION "bin${OGRE_DEBUG_PATH}" CONFIGURATIONS Debug - RUNTIME DESTINATION "bin${OGRE_DEBUG_PATH}" CONFIGURATIONS Debug - LIBRARY DESTINATION "lib${OGRE_LIB_DEBUG_PATH}${SUFFIX}" CONFIGURATIONS Debug - ARCHIVE DESTINATION "lib${OGRE_LIB_DEBUG_PATH}${SUFFIX}" CONFIGURATIONS Debug - FRAMEWORK DESTINATION "lib${OGRE_DEBUG_PATH}/Debug" CONFIGURATIONS Debug - ) - #install(EXPORT Ogre-exports DESTINATION lib) - else() - install(TARGETS ${TARGETNAME} - BUNDLE DESTINATION "bin${OGRE_RELEASE_PATH}" CONFIGURATIONS Release None "" - RUNTIME DESTINATION "bin${OGRE_RELEASE_PATH}" CONFIGURATIONS Release None "" - LIBRARY DESTINATION "lib${OGRE_LIB_RELEASE_PATH}${SUFFIX}" CONFIGURATIONS Release None "" - ARCHIVE DESTINATION "lib${OGRE_LIB_RELEASE_PATH}${SUFFIX}" CONFIGURATIONS Release None "" - FRAMEWORK DESTINATION "lib${OGRE_RELEASE_PATH}/Release" CONFIGURATIONS Release None "" - ) - install(TARGETS ${TARGETNAME} - BUNDLE DESTINATION "bin${OGRE_RELWDBG_PATH}" CONFIGURATIONS RelWithDebInfo - RUNTIME DESTINATION "bin${OGRE_RELWDBG_PATH}" CONFIGURATIONS RelWithDebInfo - LIBRARY DESTINATION "lib${OGRE_LIB_RELWDBG_PATH}${SUFFIX}" CONFIGURATIONS RelWithDebInfo - ARCHIVE DESTINATION "lib${OGRE_LIB_RELWDBG_PATH}${SUFFIX}" CONFIGURATIONS RelWithDebInfo - FRAMEWORK DESTINATION "lib${OGRE_RELWDBG_PATH}/RelWithDebInfo" CONFIGURATIONS RelWithDebInfo - ) - install(TARGETS ${TARGETNAME} - BUNDLE DESTINATION "bin${OGRE_MINSIZE_PATH}" CONFIGURATIONS MinSizeRel - RUNTIME DESTINATION "bin${OGRE_MINSIZE_PATH}" CONFIGURATIONS MinSizeRel - LIBRARY DESTINATION "lib${OGRE_LIB_MINSIZE_PATH}${SUFFIX}" CONFIGURATIONS MinSizeRel - ARCHIVE DESTINATION "lib${OGRE_LIB_MINSIZE_PATH}${SUFFIX}" CONFIGURATIONS MinSizeRel - FRAMEWORK DESTINATION "lib${OGRE_MINSIZE_PATH}/MinSizeRel" CONFIGURATIONS MinSizeRel - ) - install(TARGETS ${TARGETNAME} - BUNDLE DESTINATION "bin${OGRE_DEBUG_PATH}" CONFIGURATIONS Debug - RUNTIME DESTINATION "bin${OGRE_DEBUG_PATH}" CONFIGURATIONS Debug - LIBRARY DESTINATION "lib${OGRE_LIB_DEBUG_PATH}${SUFFIX}" CONFIGURATIONS Debug - ARCHIVE DESTINATION "lib${OGRE_LIB_DEBUG_PATH}${SUFFIX}" CONFIGURATIONS Debug - FRAMEWORK DESTINATION "lib${OGRE_DEBUG_PATH}/Debug" CONFIGURATIONS Debug - ) - endif() - -endfunction(ogre_install_target) - -# setup common target settings -function(ogre_config_common TARGETNAME) - set_target_properties(${TARGETNAME} PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY ${OGRE_BINARY_DIR}/lib - LIBRARY_OUTPUT_DIRECTORY ${OGRE_BINARY_DIR}/lib - RUNTIME_OUTPUT_DIRECTORY ${OGRE_BINARY_DIR}/bin - ) - if(OGRE_BUILD_PLATFORM_IPHONE) - set_target_properties(${TARGETNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_THUMB_SUPPORT "NO") - set_target_properties(${TARGETNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_UNROLL_LOOPS "YES") - set_target_properties(${TARGETNAME} PROPERTIES XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "iPhone Developer") - set_target_properties(${TARGETNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES") - set_target_properties(${TARGETNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${OGRE_SOURCE_DIR}/OgreMain/include/OgreStableHeaders.h") - endif(OGRE_BUILD_PLATFORM_IPHONE) - - ogre_create_vcproj_userfile(${TARGETNAME}) -endfunction(ogre_config_common) - -# setup library build -function(ogre_config_lib LIBNAME EXPORT) - ogre_config_common(${LIBNAME}) - if (OGRE_STATIC) - # add static prefix, if compiling static version - set_target_properties(${LIBNAME} PROPERTIES OUTPUT_NAME ${LIBNAME}Static) - else (OGRE_STATIC) - if (CMAKE_COMPILER_IS_GNUCXX) - # add GCC visibility flags to shared library build - set_target_properties(${LIBNAME} PROPERTIES COMPILE_FLAGS "${OGRE_GCC_VISIBILITY_FLAGS}") - endif (CMAKE_COMPILER_IS_GNUCXX) - if (MINGW) - # remove lib prefix from DLL outputs - set_target_properties(${LIBNAME} PROPERTIES PREFIX "") - endif () - endif (OGRE_STATIC) - ogre_install_target(${LIBNAME} "" ${EXPORT}) - - if (OGRE_INSTALL_PDB) - # install debug pdb files - if (OGRE_STATIC) - install(FILES ${OGRE_BINARY_DIR}/lib${OGRE_LIB_DEBUG_PATH}/${LIBNAME}Static_d.pdb - DESTINATION lib${OGRE_LIB_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/lib${OGRE_LIB_RELWDBG_PATH}/${LIBNAME}Static.pdb - DESTINATION lib${OGRE_LIB_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - else () - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_DEBUG_PATH}/${LIBNAME}_d.pdb - DESTINATION bin${OGRE_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_RELWDBG_PATH}/${LIBNAME}.pdb - DESTINATION bin${OGRE_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - endif () - endif () -endfunction(ogre_config_lib) - -function(ogre_config_component LIBNAME) - ogre_config_lib(${LIBNAME} FALSE) -endfunction(ogre_config_component) - - -# setup plugin build -function(ogre_config_plugin PLUGINNAME) - ogre_config_common(${PLUGINNAME}) - if (OGRE_STATIC) - # add static prefix, if compiling static version - set_target_properties(${PLUGINNAME} PROPERTIES OUTPUT_NAME ${PLUGINNAME}Static) - - if(OGRE_BUILD_PLATFORM_IPHONE) - set_target_properties(${PLUGINNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_THUMB_SUPPORT "NO") - set_target_properties(${PLUGINNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_UNROLL_LOOPS "YES") - set_target_properties(${PLUGINNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES") - set_target_properties(${PLUGINNAME} PROPERTIES XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${OGRE_SOURCE_DIR}/OgreMain/include/OgreStableHeaders.h") - endif(OGRE_BUILD_PLATFORM_IPHONE) - else (OGRE_STATIC) - if (CMAKE_COMPILER_IS_GNUCXX) - # add GCC visibility flags to shared library build - set_target_properties(${PLUGINNAME} PROPERTIES COMPILE_FLAGS "${OGRE_GCC_VISIBILITY_FLAGS}") - # disable "lib" prefix on Unix - set_target_properties(${PLUGINNAME} PROPERTIES PREFIX "") - endif (CMAKE_COMPILER_IS_GNUCXX) - endif (OGRE_STATIC) - # export only if static - ogre_install_target(${PLUGINNAME} ${OGRE_PLUGIN_PATH} ${OGRE_STATIC}) - - if (OGRE_INSTALL_PDB) - # install debug pdb files - if (OGRE_STATIC) - install(FILES ${OGRE_BINARY_DIR}/lib${OGRE_LIB_DEBUG_PATH}/${PLUGINNAME}Static_d.pdb - DESTINATION lib${OGRE_LIB_DEBUG_PATH}/opt - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/lib${OGRE_LIB_RELWDBG_PATH}/${PLUGINNAME}Static.pdb - DESTINATION lib${OGRE_LIB_RELWDBG_PATH}/opt - CONFIGURATIONS RelWithDebInfo - ) - else () - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_DEBUG_PATH}/${PLUGINNAME}_d.pdb - DESTINATION bin${OGRE_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_RELWDBG_PATH}/${PLUGINNAME}.pdb - DESTINATION bin${OGRE_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - endif () - endif () -endfunction(ogre_config_plugin) - -# setup Ogre sample build -function(ogre_config_sample_common SAMPLENAME) - # The PRODUCT_NAME target setting cannot contain underscores. Just remove them - # Known bug in Xcode CFBundleIdentifier processing rdar://6187020 - # Can cause an instant App Store rejection. Also, code signing will fail. - #if (OGRE_BUILD_PLATFORM_IPHONE) -# string (REPLACE "_" "" SAMPLENAME ${SAMPLENAME}) - #endif() - ogre_config_common(${SAMPLENAME}) - - # set install RPATH for Unix systems - if (UNIX AND OGRE_FULL_RPATH) - set_property(TARGET ${SAMPLENAME} APPEND PROPERTY - INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib) - set_property(TARGET ${SAMPLENAME} PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE) - endif () - - if (APPLE) - # On OS X, create .app bundle - set_property(TARGET ${SAMPLENAME} PROPERTY MACOSX_BUNDLE TRUE) - if (NOT OGRE_BUILD_PLATFORM_IPHONE) - # Add the path where the Ogre framework was found - if(${OGRE_FRAMEWORK_PATH}) - set_target_properties(${SAMPLENAME} PROPERTIES - COMPILE_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - LINK_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - ) - endif() - endif(NOT OGRE_BUILD_PLATFORM_IPHONE) - endif (APPLE) - if (CMAKE_COMPILER_IS_GNUCXX) - # add GCC visibility flags to shared library build - set_target_properties(${SAMPLENAME} PROPERTIES COMPILE_FLAGS "${OGRE_GCC_VISIBILITY_FLAGS}") - # disable "lib" prefix on Unix - set_target_properties(${SAMPLENAME} PROPERTIES PREFIX "") - endif (CMAKE_COMPILER_IS_GNUCXX) - if (OGRE_INSTALL_SAMPLES) - ogre_install_target(${SAMPLENAME} ${OGRE_SAMPLE_PATH} FALSE) - endif() - -endfunction(ogre_config_sample_common) - -function(ogre_config_sample_exe SAMPLENAME) - ogre_config_sample_common(${SAMPLENAME}) - if (OGRE_INSTALL_PDB AND OGRE_INSTALL_SAMPLES) - # install debug pdb files - no _d on exe - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_DEBUG_PATH}/${SAMPLENAME}.pdb - DESTINATION bin${OGRE_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_RELWDBG_PATH}/${SAMPLENAME}.pdb - DESTINATION bin${OGRE_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - endif () - - if (APPLE AND NOT OGRE_BUILD_PLATFORM_IPHONE AND OGRE_SDK_BUILD) - # Add the path where the Ogre framework was found - if(NOT ${OGRE_FRAMEWORK_PATH} STREQUAL "") - set_target_properties(${SAMPLENAME} PROPERTIES - COMPILE_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - LINK_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - ) - endif() - endif(APPLE AND NOT OGRE_BUILD_PLATFORM_IPHONE AND OGRE_SDK_BUILD) -endfunction(ogre_config_sample_exe) - -function(ogre_config_sample_lib SAMPLENAME) - ogre_config_sample_common(${SAMPLENAME}) - if (OGRE_INSTALL_PDB AND OGRE_INSTALL_SAMPLES) - # install debug pdb files - with a _d on lib - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_DEBUG_PATH}/${SAMPLENAME}_d.pdb - DESTINATION bin${OGRE_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_RELWDBG_PATH}/${SAMPLENAME}.pdb - DESTINATION bin${OGRE_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - endif () - - if (APPLE AND NOT OGRE_BUILD_PLATFORM_IPHONE AND OGRE_SDK_BUILD) - # Add the path where the Ogre framework was found - if(NOT ${OGRE_FRAMEWORK_PATH} STREQUAL "") - set_target_properties(${SAMPLENAME} PROPERTIES - COMPILE_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - LINK_FLAGS "-F${OGRE_FRAMEWORK_PATH}" - ) - endif() - endif(APPLE AND NOT OGRE_BUILD_PLATFORM_IPHONE AND OGRE_SDK_BUILD) - - # Add sample to the list of link targets - # Global property so that we can build this up across entire sample tree - # since vars are local to containing scope of directories / functions - get_property(OGRE_SAMPLES_LIST GLOBAL PROPERTY "OGRE_SAMPLES_LIST") - set_property (GLOBAL PROPERTY "OGRE_SAMPLES_LIST" ${OGRE_SAMPLES_LIST} ${SAMPLENAME}) - -endfunction(ogre_config_sample_lib) - - -# setup Ogre tool build -function(ogre_config_tool TOOLNAME) - ogre_config_common(${TOOLNAME}) - - #set _d debug postfix - if (NOT APPLE) - set_property(TARGET ${TOOLNAME} APPEND PROPERTY DEBUG_POSTFIX "_d") - endif () - - # set install RPATH for Unix systems - if (UNIX AND OGRE_FULL_RPATH) - set_property(TARGET ${TOOLNAME} APPEND PROPERTY - INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib) - set_property(TARGET ${TOOLNAME} PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE) - endif () - - if (OGRE_INSTALL_TOOLS) - ogre_install_target(${TOOLNAME} "" FALSE) - if (OGRE_INSTALL_PDB) - # install debug pdb files - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_DEBUG_PATH}/${TOOLNAME}.pdb - DESTINATION bin${OGRE_DEBUG_PATH} - CONFIGURATIONS Debug - ) - install(FILES ${OGRE_BINARY_DIR}/bin${OGRE_RELWDBG_PATH}/${TOOLNAME}.pdb - DESTINATION bin${OGRE_RELWDBG_PATH} - CONFIGURATIONS RelWithDebInfo - ) - endif () - endif () - -endfunction(ogre_config_tool) - -# Get component include dir (different when referencing SDK) -function(ogre_add_component_include_dir COMPONENTNAME) - if (OGRE_SDK_BUILD) - include_directories("${OGRE_INCLUDE_DIR}/${COMPONENTNAME}") - else() - include_directories("${OGRE_SOURCE_DIR}/Components/${COMPONENTNAME}/include") - endif() -endfunction(ogre_add_component_include_dir) diff --git a/trunk/CMake/OgreFindFrameworks.cmake b/trunk/CMake/OgreFindFrameworks.cmake deleted file mode 100644 index 6c58376..0000000 --- a/trunk/CMake/OgreFindFrameworks.cmake +++ /dev/null @@ -1,35 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -# - helper module to find OSX frameworks -# Adapted from standard CMake version, but added dependencies -# Standard finder does not look in any variable locations such as -# CMAKE_FRAMEWORK_PATH (not sure why not) - -IF(NOT OGRE_FIND_FRAMEWORKS_INCLUDED) - SET(OGRE_FIND_FRAMEWORKS_INCLUDED 1) - MACRO(OGRE_FIND_FRAMEWORKS fwk) - IF(APPLE) - SET(${fwk}_FRAMEWORKS) - SET(OGRE_FRAMEWORK_PATH - ${OGRE_DEPENDENCIES_DIR} - ~/Library/Frameworks - /Library/Frameworks - /System/Library/Frameworks - /Network/Library/Frameworks - ) - FOREACH(dir ${OGRE_FRAMEWORK_PATH}) - SET(fwkpath ${dir}/${fwk}.framework) - IF(EXISTS ${fwkpath}) - SET(${fwk}_FRAMEWORKS ${${fwk}_FRAMEWORKS} ${fwkpath}) - ENDIF(EXISTS ${fwkpath}) - ENDFOREACH(dir) - ENDIF(APPLE) - ENDMACRO(OGRE_FIND_FRAMEWORKS) -ENDIF(NOT OGRE_FIND_FRAMEWORKS_INCLUDED) diff --git a/trunk/CMake/OgreGetVersion.cmake b/trunk/CMake/OgreGetVersion.cmake deleted file mode 100644 index 098c25d..0000000 --- a/trunk/CMake/OgreGetVersion.cmake +++ /dev/null @@ -1,23 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -include(PreprocessorUtils) - -macro(ogre_get_version HEADER) - file(READ ${HEADER} TEMP_VAR_CONTENTS) - get_preprocessor_entry(TEMP_VAR_CONTENTS OGRE_VERSION_MAJOR OGRE_VERSION_MAJOR) - get_preprocessor_entry(TEMP_VAR_CONTENTS OGRE_VERSION_MINOR OGRE_VERSION_MINOR) - get_preprocessor_entry(TEMP_VAR_CONTENTS OGRE_VERSION_PATCH OGRE_VERSION_PATCH) - get_preprocessor_entry(TEMP_VAR_CONTENTS OGRE_VERSION_NAME OGRE_VERSION_NAME) - get_preprocessor_entry(TEMP_VAR_CONTENTS OGRE_VERSION_SUFFIX OGRE_VERSION_SUFFIX) - set(OGRE_VERSION "${OGRE_VERSION_MAJOR}.${OGRE_VERSION_MINOR}.${OGRE_VERSION_PATCH} ${OGRE_VERSION_SUFFIX}") - set(OGRE_SOVERSION "${OGRE_VERSION_MAJOR}.${OGRE_VERSION_MINOR}.${OGRE_VERSION_PATCH}") - set(OGRE_VERSION_DASH_SEPARATED "${OGRE_VERSION_MAJOR}-${OGRE_VERSION_MINOR}-${OGRE_VERSION_PATCH}${OGRE_VERSION_SUFFIX}") - -endmacro() diff --git a/trunk/CMake/PreprocessorUtils.cmake b/trunk/CMake/PreprocessorUtils.cmake deleted file mode 100644 index 6c366ff..0000000 --- a/trunk/CMake/PreprocessorUtils.cmake +++ /dev/null @@ -1,60 +0,0 @@ -#------------------------------------------------------------------- -# This file is part of the CMake build system for OGRE -# (Object-oriented Graphics Rendering Engine) -# For the latest info, see http://www.ogre3d.org/ -# -# The contents of this file are placed in the public domain. Feel -# free to make use of it in any way you like. -#------------------------------------------------------------------- - -macro(get_preprocessor_entry CONTENTS KEYWORD VARIABLE) - string(REGEX MATCH - "# *define +${KEYWORD} +((\"([^\n]*)\")|([^ \n]*))" - PREPROC_TEMP_VAR - ${${CONTENTS}} - ) - if (CMAKE_MATCH_3) - set(${VARIABLE} ${CMAKE_MATCH_3}) - else () - set(${VARIABLE} ${CMAKE_MATCH_4}) - endif () -endmacro() - -macro(has_preprocessor_entry CONTENTS KEYWORD VARIABLE) - string(REGEX MATCH - "\n *# *define +(${KEYWORD})" - PREPROC_TEMP_VAR - ${${CONTENTS}} - ) - if (CMAKE_MATCH_1) - set(${VARIABLE} TRUE) - else () - set(${VARIABLE} FALSE) - endif () -endmacro() - -macro(replace_preprocessor_entry VARIABLE KEYWORD NEW_VALUE) - string(REGEX REPLACE - "(// *)?# *define +${KEYWORD} +[^ \n]*" - "#define ${KEYWORD} ${NEW_VALUE}" - ${VARIABLE}_TEMP - ${${VARIABLE}} - ) - set(${VARIABLE} ${${VARIABLE}_TEMP}) -endmacro() - -macro(set_preprocessor_entry VARIABLE KEYWORD ENABLE) - if (${ENABLE}) - set(TMP_REPLACE_STR "#define ${KEYWORD}") - else () - set(TMP_REPLACE_STR "// #define ${KEYWORD}") - endif () - string(REGEX REPLACE - "(// *)?# *define +${KEYWORD} *\n" - ${TMP_REPLACE_STR} - ${VARIABLE}_TEMP - ${${VARIABLE}} - ) - set(${VARIABLE} ${${VARIABLE}_TEMP}) -endmacro() - diff --git a/trunk/Spacescape/CMakeLists.txt b/trunk/Spacescape/CMakeLists.txt index 620edf7..bd57038 100644 --- a/trunk/Spacescape/CMakeLists.txt +++ b/trunk/Spacescape/CMakeLists.txt @@ -10,7 +10,7 @@ INCLUDE_DIRECTORIES(include/) INCLUDE_DIRECTORIES(external/QtPropertyBrowser5/src/) INCLUDE_DIRECTORIES(../SpacescapePlugin/include/) -LINK_DIRECTORIES("${OGRE_LIBRARY_DIR_DBG}" "${OGRE_LIBRARY_DIR_REL}") +LINK_DIRECTORIES("${OGRE_LIBRARY_DIRS}") if(POCO_INCLUDE_DIR) INCLUDE_DIRECTORIES(${POCO_INCLUDE_DIR}) @@ -120,7 +120,7 @@ ELSEIF(WIN32) ENDIF() TARGET_LINK_LIBRARIES(Spacescape SpacescapePlugin "${OGRE_LIBRARIES}" Qt5::Widgets) -TARGET_LINK_LIBRARIES(Spacescape debug ${QtPropertyBrowser_Library_DBG} optimized ${QtPropertyBrowser_Library_REL}) +TARGET_LINK_LIBRARIES(Spacescape ${QtPropertyBrowser_Libraries}) IF(WIN32) set_target_properties(Spacescape PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:CONSOLE") diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/CMakeLists.txt b/trunk/Spacescape/external/QtPropertyBrowser5/CMakeLists.txt index 5b3f9e5..7c90a8f 100644 --- a/trunk/Spacescape/external/QtPropertyBrowser5/CMakeLists.txt +++ b/trunk/Spacescape/external/QtPropertyBrowser5/CMakeLists.txt @@ -4,26 +4,28 @@ IF(UNIX) EXECUTE_PROCESS(COMMAND ./configure -library WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) EXECUTE_PROCESS(COMMAND qmake qtpropertybrowser.pro WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) EXECUTE_PROCESS(COMMAND make WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) - + ELSEIF(APPLE) EXECUTE_PROCESS(COMMAND ./configure -library WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) EXECUTE_PROCESS(COMMAND qmake qtpropertybrowser.pro WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) EXECUTE_PROCESS(COMMAND make WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) - + ELSEIF(WIN32) EXECUTE_PROCESS(COMMAND qmake qtpropertybrowser.pro WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) EXECUTE_PROCESS(COMMAND vcvars32-nmake.bat WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} RESULT_VARIABLE ret_var OUTPUT_VARIABLE ret_val ERROR_VARIABLE ret_val ) ENDIF(UNIX) # FIND_LIBRARY(QtPropertyBrowser_Library_DBG NAMES QtSolutions_PropertyBrowser-2.5d PATHS lib/) -FIND_LIBRARY(QtPropertyBrowser_Library_DBG NAMES libQtSolutions_PropertyBrowser-head_debug.1.0.0.dylib PATHS lib/) -FIND_LIBRARY(QtPropertyBrowser_Library_REL NAMES libQtSolutions_PropertyBrowser-head.1.0.0.dylib PATHS lib/) +FIND_LIBRARY(QtPropertyBrowser_Library_DBG NAMES QtSolutions_PropertyBrowser-head_debug PATHS lib/) +FIND_LIBRARY(QtPropertyBrowser_Library_REL NAMES QtSolutions_PropertyBrowser-head PATHS lib/) + +set(QtPropertyBrowser_Libraries ${QtPropertyBrowser_Library_REL} PARENT_SCOPE) IF(NOT QtPropertyBrowser_Library_REL) MESSAGE(FATAL_ERROR "Failed to make QtPropertyBrowser - check that qmake.exe and vcvars32.bat are in your PATH") MESSAGE(STATUS ${ret_val}) ELSE(NOT QtPropertyBrowser_Library_REL) MESSAGE(STATUS "Successfully made QtPropertyBrowser") - FILE(COPY lib/ DESTINATION ${CMAKE_SOURCE_DIR}/Spacescape/lib FILES_MATCHING PATTERN "*.lib") + FILE(COPY lib/ DESTINATION ${CMAKE_SOURCE_DIR}/Spacescape/lib FILES_MATCHING PATTERN "${QtPropertyBrowser_Library_REL}") if(WIN32) FILE(COPY lib/QtSolutions_PropertyBrowser-2.5.dll DESTINATION ${CMAKE_SOURCE_DIR}/Spacescape/app/win/release/) FILE(COPY lib/QtSolutions_PropertyBrowser-2.5d.dll DESTINATION ${CMAKE_SOURCE_DIR}/Spacescape/app/win/debug/) diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Debug b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Debug deleted file mode 100644 index f14a074..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Debug +++ /dev/null @@ -1,2754 +0,0 @@ -############################################################################# -# Makefile for building: QtSolutions_PropertyBrowser-headd -# Generated by qmake (3.0) (Qt 5.3.1) -# Project: buildlib.pro -# Template: lib -############################################################################# - -MAKEFILE = Makefile.Debug - -####### Compiler, tools and options - -CC = cl -CXX = cl -DEFINES = -DUNICODE -DWIN32 -DQT_DISABLE_DEPRECATED_BEFORE=0 -DQT_QTPROPERTYBROWSER_EXPORT -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_OPENGL_ES_2 -DQT_OPENGL_ES_2_ANGLE -CFLAGS = -nologo -Zm200 -Zc:wchar_t -FS -Zi -MDd -W3 /Fd..\lib\QtSolutions_PropertyBrowser-headd.pdb $(DEFINES) -CXXFLAGS = -nologo -Zm200 -Zc:wchar_t -FS -Zi -MDd -GR -W3 -w34100 -w34189 -EHsc /Fd..\lib\QtSolutions_PropertyBrowser-headd.pdb $(DEFINES) -INCPATH = -I"..\src" -I"F:\qt\5.3.1\5.3\msvc2013\include" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtGui" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtANGLE" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtCore" -I"debug" -I"F:\qt\5.3.1\5.3\msvc2013\mkspecs\win32-msvc2013" -LINKER = link -LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /DLL -LIBS = /LIBPATH:F:\qt\5.3.1\5.3\msvc2013\lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Widgetsd.lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Guid.lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Cored.lib libEGLd.lib libGLESv2d.lib gdi32.lib user32.lib -QMAKE = f:\qt\5.3.1\5.3\msvc2013\bin\qmake.exe -IDC = idc -IDL = midl -ZIP = zip -r -9 -DEF_FILE = -RES_FILE = -COPY = copy /y -SED = $(QMAKE) -install sed -COPY_FILE = $(COPY) -COPY_DIR = xcopy /s /q /y /i -DEL_FILE = del -DEL_DIR = rmdir -MOVE = move -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -INSTALL_FILE = $(COPY_FILE) -INSTALL_PROGRAM = $(COPY_FILE) -INSTALL_DIR = $(COPY_DIR) - -####### Output directory - -OBJECTS_DIR = debug - -####### Files - -SOURCES = ..\src\qtpropertybrowser.cpp \ - ..\src\qtpropertymanager.cpp \ - ..\src\qteditorfactory.cpp \ - ..\src\qtvariantproperty.cpp \ - ..\src\qttreepropertybrowser.cpp \ - ..\src\qtbuttonpropertybrowser.cpp \ - ..\src\qtgroupboxpropertybrowser.cpp \ - ..\src\qtpropertybrowserutils.cpp debug\qrc_qtpropertybrowser.cpp \ - debug\moc_qtpropertybrowserutils_p.cpp -OBJECTS = debug\qtpropertybrowser.obj \ - debug\qtpropertymanager.obj \ - debug\qteditorfactory.obj \ - debug\qtvariantproperty.obj \ - debug\qttreepropertybrowser.obj \ - debug\qtbuttonpropertybrowser.obj \ - debug\qtgroupboxpropertybrowser.obj \ - debug\qtpropertybrowserutils.obj \ - debug\qrc_qtpropertybrowser.obj \ - debug\moc_qtpropertybrowserutils_p.obj - -DIST = -QMAKE_TARGET = QtSolutions_PropertyBrowser-headd -DESTDIR = ..\lib\ #avoid trailing-slash linebreak -TARGET = QtSolutions_PropertyBrowser-headd.dll -DESTDIR_TARGET = ..\lib\QtSolutions_PropertyBrowser-headd.dll - -####### Implicit rules - -.SUFFIXES: .c .cpp .cc .cxx - -{..\src}.cpp{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{..\src}.cc{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{..\src}.cxx{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{..\src}.c{debug\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{debug}.cpp{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{debug}.cc{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{debug}.cxx{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{debug}.c{debug\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{.}.cpp{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{.}.cc{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{.}.cxx{debug\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -{.}.c{debug\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Fodebug\ @<< - $< -<< - -####### Build rules - -first: all -all: Makefile.Debug $(DESTDIR_TARGET) - -$(DESTDIR_TARGET): $(OBJECTS) - echo 2 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ "..\\lib\\QtSolutions_PropertyBrowser-headd.dll.embed.manifest">..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.rc - if not exist $(DESTDIR_TARGET) if exist ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest del ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest - if exist ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest copy /Y ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak - $(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest /OUT:$(DESTDIR_TARGET) @<< -$(OBJECTS) $(LIBS) -!IF EXIST(..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.res) -..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.res -!ENDIF -<< - if exist ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak fc /b ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak >NUL || del ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak - if not exist ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak rc.exe /fo..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.res ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.rc - if not exist ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak $(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest /OUT:$(DESTDIR_TARGET) @<< -$(OBJECTS) $(LIBS) ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.res -<< - if exist ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak del ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.bak - -$(COPY_FILE) "$(DESTDIR_TARGET)" F:\qt\5.3.1\5.3\msvc2013\bin - -qmake: FORCE - @$(QMAKE) -o Makefile.Debug buildlib.pro - -qmake_all: FORCE - -dist: - $(ZIP) QtSolutions_PropertyBrowser-headd.zip $(SOURCES) $(DIST) qtpropertybrowser.pro F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\spec_pre.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\common\shell-win32.conf F:\qt\5.3.1\5.3\msvc2013\mkspecs\qconfig.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axbase.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axbase_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axcontainer.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axcontainer_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axserver.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axserver_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bluetooth.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bluetooth_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bootstrap_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_clucene_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_concurrent.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_concurrent_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_core.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_core_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_declarative.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_declarative_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designer.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designer_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designercomponents_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_enginio.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_enginio_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_gui.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_gui_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_help.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_help_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimedia.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimedia_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_network.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_network_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_nfc.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_nfc_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_opengl.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_opengl_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_openglextensions.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_openglextensions_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_platformsupport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_positioning.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_positioning_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_printsupport.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_printsupport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qml.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qml_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmldevtools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmltest.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmltest_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quick.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quick_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickparticles_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_script.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_script_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_scripttools.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_scripttools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sensors.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sensors_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_serialport.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_serialport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sql.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sql_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_svg.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_svg_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_testlib.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_testlib_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_uitools.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_uitools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkit.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkit_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkitwidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkitwidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_websockets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_websockets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_widgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_widgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_winextras.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_winextras_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xml.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xml_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt_functions.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\qt_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\win32-msvc2013\qmake.conf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\spec_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exclusive_builds.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\default_pre.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\default_pre.prf ..\config.pri ..\common.pri ..\src\qtpropertybrowser.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\resolve_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exclusive_builds_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\default_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\build_pass.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\resources.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\moc.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\opengl.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\uic.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\rtti.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\precompile_header.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\warn_on.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\windows.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\testcase_targets.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exceptions.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\yacc.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\lex.prf buildlib.pro ..\src\qtpropertybrowser.qrc F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Widgetsd.prl F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Guid.prl F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Cored.prl F:/qt/5.3.1/5.3/msvc2013/lib/libEGLd.prl F:/qt/5.3.1/5.3/msvc2013/lib/libGLESv2d.prl RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS NO_PCH_SOURCES YACCSOURCES YACCSOURCES LEXSOURCES - -clean: compiler_clean - -$(DEL_FILE) debug\qtpropertybrowser.obj debug\qtpropertymanager.obj debug\qteditorfactory.obj debug\qtvariantproperty.obj debug\qttreepropertybrowser.obj debug\qtbuttonpropertybrowser.obj debug\qtgroupboxpropertybrowser.obj debug\qtpropertybrowserutils.obj debug\qrc_qtpropertybrowser.obj debug\moc_qtpropertybrowserutils_p.obj - -$(DEL_FILE) ..\lib\QtSolutions_PropertyBrowser-headd.exp ..\lib\QtSolutions_PropertyBrowser-headd.ilk ..\lib\QtSolutions_PropertyBrowser-headd.idb ..\lib\QtSolutions_PropertyBrowser-headd.dll.embed.manifest ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.rc ..\lib\QtSolutions_PropertyBrowser-headd.dll_manifest.res - -distclean: clean - -$(DEL_FILE) F:\qt\5.3.1\5.3\msvc2013\bin\QtSolutions_PropertyBrowser-headd.dll ..\lib\QtSolutions_PropertyBrowser-headd.pdb - -$(DEL_FILE) $(DESTDIR_TARGET) - -$(DEL_FILE) Makefile.Debug - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -check: first - -compiler_rcc_make_all: debug\qrc_qtpropertybrowser.cpp -compiler_rcc_clean: - -$(DEL_FILE) debug\qrc_qtpropertybrowser.cpp -debug\qrc_qtpropertybrowser.cpp: ..\src\qtpropertybrowser.qrc \ - ..\src\images\cursor-sizeb.png \ - ..\src\images\cursor-sizeall.png \ - ..\src\images\cursor-ibeam.png \ - ..\src\images\cursor-sizef.png \ - ..\src\images\cursor-closedhand.png \ - ..\src\images\cursor-busy.png \ - ..\src\images\cursor-cross.png \ - ..\src\images\cursor-sizeh.png \ - ..\src\images\cursor-forbidden.png \ - ..\src\images\cursor-hand.png \ - ..\src\images\cursor-uparrow.png \ - ..\src\images\cursor-openhand.png \ - ..\src\images\cursor-vsplit.png \ - ..\src\images\cursor-sizev.png \ - ..\src\images\cursor-hsplit.png \ - ..\src\images\cursor-arrow.png \ - ..\src\images\cursor-wait.png \ - ..\src\images\cursor-whatsthis.png - F:\qt\5.3.1\5.3\msvc2013\bin\rcc.exe -name qtpropertybrowser ..\src\qtpropertybrowser.qrc -o debug\qrc_qtpropertybrowser.cpp - -compiler_moc_header_make_all: debug\moc_qtpropertybrowser.cpp debug\moc_qtpropertymanager.cpp debug\moc_qteditorfactory.cpp debug\moc_qtvariantproperty.cpp debug\moc_qttreepropertybrowser.cpp debug\moc_qtbuttonpropertybrowser.cpp debug\moc_qtgroupboxpropertybrowser.cpp debug\moc_qtpropertybrowserutils_p.cpp -compiler_moc_header_clean: - -$(DEL_FILE) debug\moc_qtpropertybrowser.cpp debug\moc_qtpropertymanager.cpp debug\moc_qteditorfactory.cpp debug\moc_qtvariantproperty.cpp debug\moc_qttreepropertybrowser.cpp debug\moc_qtbuttonpropertybrowser.cpp debug\moc_qtgroupboxpropertybrowser.cpp debug\moc_qtpropertybrowserutils_p.cpp -debug\moc_qtpropertybrowser.cpp: F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertybrowser.h -o debug\moc_qtpropertybrowser.cpp - -debug\moc_qtpropertymanager.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertymanager.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertymanager.h -o debug\moc_qtpropertymanager.cpp - -debug\moc_qteditorfactory.cpp: ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qteditorfactory.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qteditorfactory.h -o debug\moc_qteditorfactory.cpp - -debug\moc_qtvariantproperty.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QVariant \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - ..\src\qtvariantproperty.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtvariantproperty.h -o debug\moc_qtvariantproperty.cpp - -debug\moc_qttreepropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qttreepropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qttreepropertybrowser.h -o debug\moc_qttreepropertybrowser.cpp - -debug\moc_qtbuttonpropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtbuttonpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtbuttonpropertybrowser.h -o debug\moc_qtbuttonpropertybrowser.cpp - -debug\moc_qtgroupboxpropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtgroupboxpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtgroupboxpropertybrowser.h -o debug\moc_qtgroupboxpropertybrowser.cpp - -debug\moc_qtpropertybrowserutils_p.cpp: F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - ..\src\qtpropertybrowserutils_p.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertybrowserutils_p.h -o debug\moc_qtpropertybrowserutils_p.cpp - -compiler_moc_source_make_all: debug\qtpropertymanager.moc debug\qteditorfactory.moc debug\qttreepropertybrowser.moc -compiler_moc_source_clean: - -$(DEL_FILE) debug\qtpropertymanager.moc debug\qteditorfactory.moc debug\qttreepropertybrowser.moc -debug\qtpropertymanager.moc: ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDateTime \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMetaEnum \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetaobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFontDatabase \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontdatabase.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - debug\moc_qtpropertymanager.cpp \ - ..\src\qtpropertymanager.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertymanager.cpp -o debug\qtpropertymanager.moc - -debug\qteditorfactory.moc: ..\src\qteditorfactory.h \ - ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpinBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QScrollBar \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qscrollbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QComboBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcombobox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QAbstractItemView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QDateTimeEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdatetimeedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QKeyEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QColorDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcolordialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QFontDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qfontdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpacerItem \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - debug\moc_qteditorfactory.cpp \ - ..\src\qteditorfactory.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qteditorfactory.cpp -o debug\qteditorfactory.moc - -debug\qttreepropertybrowser.moc: ..\src\qttreepropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QTreeWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreeview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidgetitemiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QItemDelegate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHeaderView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qheaderview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFocusEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPalette \ - debug\moc_qttreepropertybrowser.cpp \ - ..\src\qttreepropertybrowser.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qttreepropertybrowser.cpp -o debug\qttreepropertybrowser.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_no_pch_compiler_make_all: -compiler_no_pch_compiler_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_header_clean compiler_moc_source_clean - - - -####### Compile - -debug\qtpropertybrowser.obj: ..\src\qtpropertybrowser.cpp ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - debug\moc_qtpropertybrowser.cpp - -debug\qtpropertymanager.obj: ..\src\qtpropertymanager.cpp ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDateTime \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMetaEnum \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetaobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFontDatabase \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontdatabase.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - debug\moc_qtpropertymanager.cpp \ - debug\qtpropertymanager.moc - -debug\qteditorfactory.obj: ..\src\qteditorfactory.cpp ..\src\qteditorfactory.h \ - ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpinBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QScrollBar \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qscrollbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QComboBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcombobox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QAbstractItemView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QDateTimeEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdatetimeedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QKeyEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QColorDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcolordialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QFontDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qfontdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpacerItem \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - debug\moc_qteditorfactory.cpp \ - debug\qteditorfactory.moc - -debug\qtvariantproperty.obj: ..\src\qtvariantproperty.cpp ..\src\qtvariantproperty.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QVariant \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - ..\src\qtpropertymanager.h \ - ..\src\qteditorfactory.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - debug\moc_qtvariantproperty.cpp - -debug\qttreepropertybrowser.obj: ..\src\qttreepropertybrowser.cpp ..\src\qttreepropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QTreeWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreeview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidgetitemiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QItemDelegate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHeaderView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qheaderview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFocusEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPalette \ - debug\moc_qttreepropertybrowser.cpp \ - debug\qttreepropertybrowser.moc - -debug\qtbuttonpropertybrowser.obj: ..\src\qtbuttonpropertybrowser.cpp ..\src\qtbuttonpropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGridLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - debug\moc_qtbuttonpropertybrowser.cpp - -debug\qtgroupboxpropertybrowser.obj: ..\src\qtgroupboxpropertybrowser.cpp ..\src\qtgroupboxpropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGridLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGroupBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgroupbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - debug\moc_qtgroupboxpropertybrowser.cpp - -debug\qtpropertybrowserutils.obj: ..\src\qtpropertybrowserutils.cpp ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QMouseEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h - -debug\qrc_qtpropertybrowser.obj: debug\qrc_qtpropertybrowser.cpp - -debug\moc_qtpropertybrowserutils_p.obj: debug\moc_qtpropertybrowserutils_p.cpp - -####### Install - -install_target: all FORCE - @if not exist F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib mkdir F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib & if not exist F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib exit 1 - -$(INSTALL_FILE) "..\lib\QtSolutions_PropertyBrowser-headd.lib" "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-headd.lib" - -$(INSTALL_FILE) "$(DESTDIR_TARGET)" "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\$(TARGET)" - -$(INSTALL_FILE) "..\lib\QtSolutions_PropertyBrowser-headd.pdb" "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-headd.pdb" - -uninstall_target: FORCE - -$(DEL_FILE) "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-headd.lib" - -$(DEL_FILE) "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\$(TARGET)" - -$(DEL_FILE) "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-headd.pdb" - -$(DEL_DIR) F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib - - -install: install_target FORCE - -uninstall: uninstall_target FORCE - -FORCE: - diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Release b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Release deleted file mode 100644 index d022414..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/Makefile.Release +++ /dev/null @@ -1,2741 +0,0 @@ -############################################################################# -# Makefile for building: QtSolutions_PropertyBrowser-head -# Generated by qmake (3.0) (Qt 5.3.1) -# Project: buildlib.pro -# Template: lib -############################################################################# - -MAKEFILE = Makefile.Release - -####### Compiler, tools and options - -CC = cl -CXX = cl -DEFINES = -DUNICODE -DWIN32 -DQT_DISABLE_DEPRECATED_BEFORE=0 -DQT_QTPROPERTYBROWSER_EXPORT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_OPENGL_ES_2 -DQT_OPENGL_ES_2_ANGLE -DNDEBUG -CFLAGS = -nologo -Zm200 -Zc:wchar_t -FS -O2 -MD -W3 $(DEFINES) -CXXFLAGS = -nologo -Zm200 -Zc:wchar_t -FS -O2 -MD -GR -W3 -w34100 -w34189 -EHsc $(DEFINES) -INCPATH = -I"..\src" -I"F:\qt\5.3.1\5.3\msvc2013\include" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtGui" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtANGLE" -I"F:\qt\5.3.1\5.3\msvc2013\include\QtCore" -I"release" -I"F:\qt\5.3.1\5.3\msvc2013\mkspecs\win32-msvc2013" -LINKER = link -LFLAGS = /NOLOGO /DYNAMICBASE /NXCOMPAT /INCREMENTAL:NO /DLL -LIBS = /LIBPATH:F:\qt\5.3.1\5.3\msvc2013\lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Widgets.lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Gui.lib F:\qt\5.3.1\5.3\msvc2013\lib\Qt5Core.lib libEGL.lib libGLESv2.lib gdi32.lib user32.lib -QMAKE = f:\qt\5.3.1\5.3\msvc2013\bin\qmake.exe -IDC = idc -IDL = midl -ZIP = zip -r -9 -DEF_FILE = -RES_FILE = -COPY = copy /y -SED = $(QMAKE) -install sed -COPY_FILE = $(COPY) -COPY_DIR = xcopy /s /q /y /i -DEL_FILE = del -DEL_DIR = rmdir -MOVE = move -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -INSTALL_FILE = $(COPY_FILE) -INSTALL_PROGRAM = $(COPY_FILE) -INSTALL_DIR = $(COPY_DIR) - -####### Output directory - -OBJECTS_DIR = release - -####### Files - -SOURCES = ..\src\qtpropertybrowser.cpp \ - ..\src\qtpropertymanager.cpp \ - ..\src\qteditorfactory.cpp \ - ..\src\qtvariantproperty.cpp \ - ..\src\qttreepropertybrowser.cpp \ - ..\src\qtbuttonpropertybrowser.cpp \ - ..\src\qtgroupboxpropertybrowser.cpp \ - ..\src\qtpropertybrowserutils.cpp release\qrc_qtpropertybrowser.cpp \ - release\moc_qtpropertybrowserutils_p.cpp -OBJECTS = release\qtpropertybrowser.obj \ - release\qtpropertymanager.obj \ - release\qteditorfactory.obj \ - release\qtvariantproperty.obj \ - release\qttreepropertybrowser.obj \ - release\qtbuttonpropertybrowser.obj \ - release\qtgroupboxpropertybrowser.obj \ - release\qtpropertybrowserutils.obj \ - release\qrc_qtpropertybrowser.obj \ - release\moc_qtpropertybrowserutils_p.obj - -DIST = -QMAKE_TARGET = QtSolutions_PropertyBrowser-head -DESTDIR = ..\lib\ #avoid trailing-slash linebreak -TARGET = QtSolutions_PropertyBrowser-head.dll -DESTDIR_TARGET = ..\lib\QtSolutions_PropertyBrowser-head.dll - -####### Implicit rules - -.SUFFIXES: .c .cpp .cc .cxx - -{..\src}.cpp{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{..\src}.cc{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{..\src}.cxx{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{..\src}.c{release\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{release}.cpp{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{release}.cc{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{release}.cxx{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{release}.c{release\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{.}.cpp{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{.}.cc{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{.}.cxx{release\}.obj:: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -{.}.c{release\}.obj:: - $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<< - $< -<< - -####### Build rules - -first: all -all: Makefile.Release $(DESTDIR_TARGET) - -$(DESTDIR_TARGET): $(OBJECTS) - $(LINKER) $(LFLAGS) /MANIFEST /MANIFESTFILE:..\lib\QtSolutions_PropertyBrowser-head.dll.embed.manifest /OUT:$(DESTDIR_TARGET) @<< -$(OBJECTS) $(LIBS) -<< - mt.exe /nologo /manifest ..\lib\QtSolutions_PropertyBrowser-head.dll.embed.manifest /outputresource:$(DESTDIR_TARGET);2 - -$(COPY_FILE) "$(DESTDIR_TARGET)" F:\qt\5.3.1\5.3\msvc2013\bin - -qmake: FORCE - @$(QMAKE) -o Makefile.Release buildlib.pro - -qmake_all: FORCE - -dist: - $(ZIP) QtSolutions_PropertyBrowser-head.zip $(SOURCES) $(DIST) qtpropertybrowser.pro F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\spec_pre.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\common\shell-win32.conf F:\qt\5.3.1\5.3\msvc2013\mkspecs\qconfig.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axbase.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axbase_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axcontainer.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axcontainer_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axserver.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_axserver_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bluetooth.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bluetooth_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_bootstrap_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_clucene_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_concurrent.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_concurrent_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_core.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_core_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_declarative.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_declarative_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designer.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designer_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_designercomponents_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_enginio.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_enginio_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_gui.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_gui_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_help.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_help_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimedia.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimedia_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_multimediawidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_network.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_network_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_nfc.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_nfc_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_opengl.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_opengl_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_openglextensions.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_openglextensions_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_platformsupport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_positioning.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_positioning_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_printsupport.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_printsupport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qml.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qml_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmldevtools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmltest.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qmltest_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quick.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quick_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickparticles_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_quickwidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_script.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_script_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_scripttools.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_scripttools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sensors.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sensors_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_serialport.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_serialport_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sql.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_sql_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_svg.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_svg_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_testlib.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_testlib_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_uitools.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_uitools_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkit.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkit_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkitwidgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_webkitwidgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_websockets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_websockets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_widgets.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_widgets_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_winextras.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_winextras_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xml.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xml_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\modules\qt_lib_xmlpatterns_private.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt_functions.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\qt_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\win32-msvc2013\qmake.conf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\spec_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exclusive_builds.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\default_pre.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\default_pre.prf ..\config.pri ..\common.pri ..\src\qtpropertybrowser.pri F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\resolve_config.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exclusive_builds_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\default_post.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\build_pass.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\qt.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\resources.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\moc.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\opengl.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\uic.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\rtti.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\precompile_header.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\warn_on.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\win32\windows.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\testcase_targets.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\exceptions.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\yacc.prf F:\qt\5.3.1\5.3\msvc2013\mkspecs\features\lex.prf buildlib.pro ..\src\qtpropertybrowser.qrc F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Widgets.prl F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Gui.prl F:/qt/5.3.1/5.3/msvc2013/lib/Qt5Core.prl F:/qt/5.3.1/5.3/msvc2013/lib/libEGL.prl F:/qt/5.3.1/5.3/msvc2013/lib/libGLESv2.prl RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES FORMS NO_PCH_SOURCES YACCSOURCES YACCSOURCES LEXSOURCES - -clean: compiler_clean - -$(DEL_FILE) release\qtpropertybrowser.obj release\qtpropertymanager.obj release\qteditorfactory.obj release\qtvariantproperty.obj release\qttreepropertybrowser.obj release\qtbuttonpropertybrowser.obj release\qtgroupboxpropertybrowser.obj release\qtpropertybrowserutils.obj release\qrc_qtpropertybrowser.obj release\moc_qtpropertybrowserutils_p.obj - -$(DEL_FILE) ..\lib\QtSolutions_PropertyBrowser-head.exp ..\lib\QtSolutions_PropertyBrowser-head.dll.embed.manifest - -distclean: clean - -$(DEL_FILE) F:\qt\5.3.1\5.3\msvc2013\bin\QtSolutions_PropertyBrowser-head.dll - -$(DEL_FILE) $(DESTDIR_TARGET) - -$(DEL_FILE) Makefile.Release - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -check: first - -compiler_rcc_make_all: release\qrc_qtpropertybrowser.cpp -compiler_rcc_clean: - -$(DEL_FILE) release\qrc_qtpropertybrowser.cpp -release\qrc_qtpropertybrowser.cpp: ..\src\qtpropertybrowser.qrc \ - ..\src\images\cursor-sizeb.png \ - ..\src\images\cursor-sizeall.png \ - ..\src\images\cursor-ibeam.png \ - ..\src\images\cursor-sizef.png \ - ..\src\images\cursor-closedhand.png \ - ..\src\images\cursor-busy.png \ - ..\src\images\cursor-cross.png \ - ..\src\images\cursor-sizeh.png \ - ..\src\images\cursor-forbidden.png \ - ..\src\images\cursor-hand.png \ - ..\src\images\cursor-uparrow.png \ - ..\src\images\cursor-openhand.png \ - ..\src\images\cursor-vsplit.png \ - ..\src\images\cursor-sizev.png \ - ..\src\images\cursor-hsplit.png \ - ..\src\images\cursor-arrow.png \ - ..\src\images\cursor-wait.png \ - ..\src\images\cursor-whatsthis.png - F:\qt\5.3.1\5.3\msvc2013\bin\rcc.exe -name qtpropertybrowser ..\src\qtpropertybrowser.qrc -o release\qrc_qtpropertybrowser.cpp - -compiler_moc_header_make_all: release\moc_qtpropertybrowser.cpp release\moc_qtpropertymanager.cpp release\moc_qteditorfactory.cpp release\moc_qtvariantproperty.cpp release\moc_qttreepropertybrowser.cpp release\moc_qtbuttonpropertybrowser.cpp release\moc_qtgroupboxpropertybrowser.cpp release\moc_qtpropertybrowserutils_p.cpp -compiler_moc_header_clean: - -$(DEL_FILE) release\moc_qtpropertybrowser.cpp release\moc_qtpropertymanager.cpp release\moc_qteditorfactory.cpp release\moc_qtvariantproperty.cpp release\moc_qttreepropertybrowser.cpp release\moc_qtbuttonpropertybrowser.cpp release\moc_qtgroupboxpropertybrowser.cpp release\moc_qtpropertybrowserutils_p.cpp -release\moc_qtpropertybrowser.cpp: F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertybrowser.h -o release\moc_qtpropertybrowser.cpp - -release\moc_qtpropertymanager.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertymanager.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertymanager.h -o release\moc_qtpropertymanager.cpp - -release\moc_qteditorfactory.cpp: ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qteditorfactory.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qteditorfactory.h -o release\moc_qteditorfactory.cpp - -release\moc_qtvariantproperty.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QVariant \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - ..\src\qtvariantproperty.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtvariantproperty.h -o release\moc_qtvariantproperty.cpp - -release\moc_qttreepropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qttreepropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qttreepropertybrowser.h -o release\moc_qttreepropertybrowser.cpp - -release\moc_qtbuttonpropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtbuttonpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtbuttonpropertybrowser.h -o release\moc_qtbuttonpropertybrowser.cpp - -release\moc_qtgroupboxpropertybrowser.cpp: ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtgroupboxpropertybrowser.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtgroupboxpropertybrowser.h -o release\moc_qtgroupboxpropertybrowser.cpp - -release\moc_qtpropertybrowserutils_p.cpp: F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - ..\src\qtpropertybrowserutils_p.h - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertybrowserutils_p.h -o release\moc_qtpropertybrowserutils_p.cpp - -compiler_moc_source_make_all: release\qtpropertymanager.moc release\qteditorfactory.moc release\qttreepropertybrowser.moc -compiler_moc_source_clean: - -$(DEL_FILE) release\qtpropertymanager.moc release\qteditorfactory.moc release\qttreepropertybrowser.moc -release\qtpropertymanager.moc: ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDateTime \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMetaEnum \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetaobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFontDatabase \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontdatabase.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - release\moc_qtpropertymanager.cpp \ - ..\src\qtpropertymanager.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qtpropertymanager.cpp -o release\qtpropertymanager.moc - -release\qteditorfactory.moc: ..\src\qteditorfactory.h \ - ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpinBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QScrollBar \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qscrollbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QComboBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcombobox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QAbstractItemView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QDateTimeEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdatetimeedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QKeyEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QColorDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcolordialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QFontDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qfontdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpacerItem \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - release\moc_qteditorfactory.cpp \ - ..\src\qteditorfactory.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qteditorfactory.cpp -o release\qteditorfactory.moc - -release\qttreepropertybrowser.moc: ..\src\qttreepropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QTreeWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreeview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidgetitemiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QItemDelegate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHeaderView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qheaderview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFocusEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPalette \ - release\moc_qttreepropertybrowser.cpp \ - ..\src\qttreepropertybrowser.cpp - F:\qt\5.3.1\5.3\msvc2013\bin\moc.exe $(DEFINES) -D_MSC_VER=1800 -D_WIN32 -IF:/qt/5.3.1/5.3/msvc2013/mkspecs/win32-msvc2013 -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/buildlib -IF:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src -IF:/qt/5.3.1/5.3/msvc2013/include -IF:/qt/5.3.1/5.3/msvc2013/include/QtWidgets -IF:/qt/5.3.1/5.3/msvc2013/include/QtGui -IF:/qt/5.3.1/5.3/msvc2013/include/QtANGLE -IF:/qt/5.3.1/5.3/msvc2013/include/QtCore ..\src\qttreepropertybrowser.cpp -o release\qttreepropertybrowser.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_no_pch_compiler_make_all: -compiler_no_pch_compiler_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_header_clean compiler_moc_source_clean - - - -####### Compile - -release\qtpropertybrowser.obj: ..\src\qtpropertybrowser.cpp ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - release\moc_qtpropertybrowser.cpp - -release\qtpropertymanager.obj: ..\src\qtpropertymanager.cpp ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDateTime \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMetaEnum \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetaobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFontDatabase \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontdatabase.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - release\moc_qtpropertymanager.cpp \ - release\qtpropertymanager.moc - -release\qteditorfactory.obj: ..\src\qteditorfactory.cpp ..\src\qteditorfactory.h \ - ..\src\qtpropertymanager.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpinBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QScrollBar \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qscrollbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QComboBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcombobox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QAbstractItemView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QDateTimeEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdatetimeedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QKeyEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QColorDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcolordialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QFontDialog \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qfontdialog.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QSpacerItem \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - release\moc_qteditorfactory.cpp \ - release\qteditorfactory.moc - -release\qtvariantproperty.obj: ..\src\qtvariantproperty.cpp ..\src\qtvariantproperty.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QVariant \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - ..\src\qtpropertymanager.h \ - ..\src\qteditorfactory.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QDate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatetime.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QLocale \ - release\moc_qtvariantproperty.cpp - -release\qttreepropertybrowser.obj: ..\src\qttreepropertybrowser.cpp ..\src\qttreepropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QTreeWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreeview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractscrollarea.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qitemselectionmodel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtreewidgetitemiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QItemDelegate \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qitemdelegate.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHeaderView \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qheaderview.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QFocusEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPalette \ - release\moc_qttreepropertybrowser.cpp \ - release\qttreepropertybrowser.moc - -release\qtbuttonpropertybrowser.obj: ..\src\qtbuttonpropertybrowser.cpp ..\src\qtbuttonpropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGridLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QToolButton \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtoolbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyle \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - release\moc_qtbuttonpropertybrowser.cpp - -release\qtgroupboxpropertybrowser.obj: ..\src\qtgroupboxpropertybrowser.cpp ..\src\qtgroupboxpropertybrowser.h \ - ..\src\qtpropertybrowser.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QSet \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGridLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLabel \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlabel.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QGroupBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgroupbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QTimer \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasictimer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - release\moc_qtgroupboxpropertybrowser.cpp - -release\qtpropertybrowserutils.obj: ..\src\qtpropertybrowserutils.cpp ..\src\qtpropertybrowserutils_p.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QMap \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiterator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobal.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qconfig.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfeatures.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsystemdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qprocessordetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcompilerdetection.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypeinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtypetraits.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsysinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlogging.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qflags.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbasicatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_bootstrap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qgenericatomic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_msvc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv7.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv6.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_armv5.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_ia64.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_mips.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_x86.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_cxx11.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_gcc.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qatomic_unix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qglobalstatic.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmutex.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnumeric.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qalgorithms.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrefcount.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpair.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdebug.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qhash.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qchar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qtextstream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qiodevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qnamespace.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobjectdefs_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstring.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qbytearray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qarraydata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringbuilder.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qscopedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmetatype.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvarlengtharray.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontainerfwd.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qisenum.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qobject_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qlocale.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvariant.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringlist.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qdatastream.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregexp.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qstringmatcher.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qshareddata.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qvector.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qpoint.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qset.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcontiguouscache.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QIcon \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qicon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsize.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpixmap.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpaintdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qwindowdefs_win.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qrect.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qmargins.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcolor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qrgb.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qsharedpointer_impl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qimage.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtransform.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qmatrix.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpolygon.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qregion.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qline.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainterpath.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QWidget \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpalette.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qbrush.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfont.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontmetrics.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qfontinfo.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qsizepolicy.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qkeysequence.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qevent.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurl.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qurlquery.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfile.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qfiledevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvector2d.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtouchdevice.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\QStringList \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QApplication \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qcoreapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qeventloop.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qdesktopwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qguiapplication.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qinputmethod.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QPainter \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpainter.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qpen.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QHBoxLayout \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qboxlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlayoutitem.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qgridlayout.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\QMouseEvent \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QCheckBox \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qcheckbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractbutton.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QLineEdit \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qlineedit.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qframe.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextcursor.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qtextformat.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QMenu \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qmenu.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qaction.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qactiongroup.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\QStyleOption \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyleoption.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractspinbox.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtGui\qvalidator.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qregularexpression.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qabstractslider.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qstyle.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabbar.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qtabwidget.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtWidgets\qrubberband.h \ - F:\qt\5.3.1\5.3\msvc2013\include\QtCore\qabstractitemmodel.h - -release\qrc_qtpropertybrowser.obj: release\qrc_qtpropertybrowser.cpp - -release\moc_qtpropertybrowserutils_p.obj: release\moc_qtpropertybrowserutils_p.cpp - -####### Install - -install_target: all FORCE - @if not exist F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib mkdir F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib & if not exist F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib exit 1 - -$(INSTALL_FILE) "..\lib\QtSolutions_PropertyBrowser-head.lib" "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-head.lib" - -$(INSTALL_FILE) "$(DESTDIR_TARGET)" "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\$(TARGET)" - -uninstall_target: FORCE - -$(DEL_FILE) "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\QtSolutions_PropertyBrowser-head.lib" - -$(DEL_FILE) "F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib\$(TARGET)" - -$(DEL_DIR) F:$(INSTALL_ROOT)\workspace\Spacescape\trunk\Spacescape\external\QtPropertyBrowser5\lib - - -install: install_target FORCE - -uninstall: uninstall_target FORCE - -FORCE: - diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtbuttonpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtbuttonpropertybrowser.cpp deleted file mode 100644 index 478498d..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtbuttonpropertybrowser.cpp +++ /dev/null @@ -1,161 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtbuttonpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtbuttonpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtbuttonpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtButtonPropertyBrowser_t { - QByteArrayData data[9]; - char stringdata[107]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtButtonPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtButtonPropertyBrowser_t qt_meta_stringdata_QtButtonPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 9), -QT_MOC_LITERAL(2, 34, 0), -QT_MOC_LITERAL(3, 35, 14), -QT_MOC_LITERAL(4, 50, 4), -QT_MOC_LITERAL(5, 55, 8), -QT_MOC_LITERAL(6, 64, 10), -QT_MOC_LITERAL(7, 75, 19), -QT_MOC_LITERAL(8, 95, 11) - }, - "QtButtonPropertyBrowser\0collapsed\0\0" - "QtBrowserItem*\0item\0expanded\0slotUpdate\0" - "slotEditorDestroyed\0slotToggled" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtButtonPropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 39, 2, 0x06 /* Public */, - 5, 1, 42, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 0, 45, 2, 0x08 /* Private */, - 7, 0, 46, 2, 0x08 /* Private */, - 8, 1, 47, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 2, - - 0 // eod -}; - -void QtButtonPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtButtonPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->collapsed((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: _t->expanded((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotUpdate(); break; - case 3: _t->d_func()->slotEditorDestroyed(); break; - case 4: _t->d_func()->slotToggled((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtButtonPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtButtonPropertyBrowser::collapsed)) { - *result = 0; - } - } - { - typedef void (QtButtonPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtButtonPropertyBrowser::expanded)) { - *result = 1; - } - } - } -} - -const QMetaObject QtButtonPropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtButtonPropertyBrowser.data, - qt_meta_data_QtButtonPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtButtonPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtButtonPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtButtonPropertyBrowser.stringdata)) - return static_cast(const_cast< QtButtonPropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtButtonPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void QtButtonPropertyBrowser::collapsed(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtButtonPropertyBrowser::expanded(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qteditorfactory.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qteditorfactory.cpp deleted file mode 100644 index b0da414..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qteditorfactory.cpp +++ /dev/null @@ -1,1568 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qteditorfactory.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qteditorfactory.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qteditorfactory.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtSpinBoxFactory_t { - QByteArrayData data[9]; - char stringdata[142]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSpinBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSpinBoxFactory_t qt_meta_stringdata_QtSpinBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 16), -QT_MOC_LITERAL(1, 17, 19), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 16), -QT_MOC_LITERAL(5, 67, 21), -QT_MOC_LITERAL(6, 89, 19), -QT_MOC_LITERAL(7, 109, 12), -QT_MOC_LITERAL(8, 122, 19) - }, - "QtSpinBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotReadOnlyChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSpinBoxFactory[] = { - - // 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, 2, 44, 2, 0x08 /* Private */, - 4, 3, 49, 2, 0x08 /* Private */, - 5, 2, 56, 2, 0x08 /* Private */, - 6, 2, 61, 2, 0x08 /* Private */, - 7, 1, 66, 2, 0x08 /* Private */, - 8, 1, 69, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtSpinBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSpinBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtSpinBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtSpinBoxFactory.data, - qt_meta_data_QtSpinBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSpinBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSpinBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSpinBoxFactory.stringdata)) - return static_cast(const_cast< QtSpinBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtSpinBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} -struct qt_meta_stringdata_QtSliderFactory_t { - QByteArrayData data[8]; - char stringdata[121]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSliderFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSliderFactory_t qt_meta_stringdata_QtSliderFactory = { - { -QT_MOC_LITERAL(0, 0, 15), -QT_MOC_LITERAL(1, 16, 19), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 16), -QT_MOC_LITERAL(5, 66, 21), -QT_MOC_LITERAL(6, 88, 12), -QT_MOC_LITERAL(7, 101, 19) - }, - "QtSliderFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSliderFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 3, 44, 2, 0x08 /* Private */, - 5, 2, 51, 2, 0x08 /* Private */, - 6, 1, 56, 2, 0x08 /* Private */, - 7, 1, 59, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtSliderFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSliderFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtSliderFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtSliderFactory.data, - qt_meta_data_QtSliderFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSliderFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSliderFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSliderFactory.stringdata)) - return static_cast(const_cast< QtSliderFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtSliderFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtScrollBarFactory_t { - QByteArrayData data[8]; - char stringdata[124]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtScrollBarFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtScrollBarFactory_t qt_meta_stringdata_QtScrollBarFactory = { - { -QT_MOC_LITERAL(0, 0, 18), -QT_MOC_LITERAL(1, 19, 19), -QT_MOC_LITERAL(2, 39, 0), -QT_MOC_LITERAL(3, 40, 11), -QT_MOC_LITERAL(4, 52, 16), -QT_MOC_LITERAL(5, 69, 21), -QT_MOC_LITERAL(6, 91, 12), -QT_MOC_LITERAL(7, 104, 19) - }, - "QtScrollBarFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtScrollBarFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 3, 44, 2, 0x08 /* Private */, - 5, 2, 51, 2, 0x08 /* Private */, - 6, 1, 56, 2, 0x08 /* Private */, - 7, 1, 59, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtScrollBarFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtScrollBarFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtScrollBarFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtScrollBarFactory.data, - qt_meta_data_QtScrollBarFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtScrollBarFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtScrollBarFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtScrollBarFactory.stringdata)) - return static_cast(const_cast< QtScrollBarFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtScrollBarFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtCheckBoxFactory_t { - QByteArrayData data[7]; - char stringdata[107]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCheckBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCheckBoxFactory_t qt_meta_stringdata_QtCheckBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 22), -QT_MOC_LITERAL(5, 74, 12), -QT_MOC_LITERAL(6, 87, 19) - }, - "QtCheckBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotTextVisibleChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCheckBoxFactory[] = { - - // 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, 2, 34, 2, 0x08 /* Private */, - 4, 2, 39, 2, 0x08 /* Private */, - 5, 1, 44, 2, 0x08 /* Private */, - 6, 1, 47, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Bool, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCheckBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCheckBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 1: _t->d_func()->slotTextVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 3: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCheckBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCheckBoxFactory.data, - qt_meta_data_QtCheckBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCheckBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCheckBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCheckBoxFactory.stringdata)) - return static_cast(const_cast< QtCheckBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCheckBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} -struct qt_meta_stringdata_QtDoubleSpinBoxFactory_t { - QByteArrayData data[10]; - char stringdata[168]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDoubleSpinBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDoubleSpinBoxFactory_t qt_meta_stringdata_QtDoubleSpinBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 19), -QT_MOC_LITERAL(2, 43, 0), -QT_MOC_LITERAL(3, 44, 11), -QT_MOC_LITERAL(4, 56, 16), -QT_MOC_LITERAL(5, 73, 21), -QT_MOC_LITERAL(6, 95, 19), -QT_MOC_LITERAL(7, 115, 19), -QT_MOC_LITERAL(8, 135, 12), -QT_MOC_LITERAL(9, 148, 19) - }, - "QtDoubleSpinBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotDecimalsChanged\0" - "slotReadOnlyChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDoubleSpinBoxFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 7, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 49, 2, 0x08 /* Private */, - 4, 3, 54, 2, 0x08 /* Private */, - 5, 2, 61, 2, 0x08 /* Private */, - 6, 2, 66, 2, 0x08 /* Private */, - 7, 2, 71, 2, 0x08 /* Private */, - 8, 1, 76, 2, 0x08 /* Private */, - 9, 1, 79, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Double, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDoubleSpinBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDoubleSpinBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 3: _t->d_func()->slotDecimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotSetValue((*reinterpret_cast< double(*)>(_a[1]))); break; - case 6: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDoubleSpinBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDoubleSpinBoxFactory.data, - qt_meta_data_QtDoubleSpinBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDoubleSpinBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDoubleSpinBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDoubleSpinBoxFactory.stringdata)) - return static_cast(const_cast< QtDoubleSpinBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDoubleSpinBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 7) - qt_static_metacall(this, _c, _id, _a); - _id -= 7; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } - return _id; -} -struct qt_meta_stringdata_QtLineEditFactory_t { - QByteArrayData data[9]; - char stringdata[142]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtLineEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtLineEditFactory_t qt_meta_stringdata_QtLineEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 17), -QT_MOC_LITERAL(5, 69, 19), -QT_MOC_LITERAL(6, 89, 19), -QT_MOC_LITERAL(7, 109, 12), -QT_MOC_LITERAL(8, 122, 19) - }, - "QtLineEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRegExpChanged\0" - "slotEchoModeChanged\0slotReadOnlyChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtLineEditFactory[] = { - - // 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, 2, 44, 2, 0x08 /* Private */, - 4, 2, 49, 2, 0x08 /* Private */, - 5, 2, 54, 2, 0x08 /* Private */, - 6, 2, 59, 2, 0x08 /* Private */, - 7, 1, 64, 2, 0x08 /* Private */, - 8, 1, 67, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::QString, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtLineEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtLineEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRegExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEchoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->d_func()->slotSetValue((*reinterpret_cast< const QString(*)>(_a[1]))); break; - case 5: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtLineEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtLineEditFactory.data, - qt_meta_data_QtLineEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtLineEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtLineEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtLineEditFactory.stringdata)) - return static_cast(const_cast< QtLineEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtLineEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} -struct qt_meta_stringdata_QtDateEditFactory_t { - QByteArrayData data[7]; - char stringdata[101]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateEditFactory_t qt_meta_stringdata_QtDateEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 16), -QT_MOC_LITERAL(5, 68, 12), -QT_MOC_LITERAL(6, 81, 19) - }, - "QtDateEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateEditFactory[] = { - - // 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, 2, 34, 2, 0x08 /* Private */, - 4, 3, 39, 2, 0x08 /* Private */, - 5, 1, 46, 2, 0x08 /* Private */, - 6, 1, 49, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 2, 2, 2, - QMetaType::Void, QMetaType::QDate, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDateEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QDate(*)>(_a[1]))); break; - case 3: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDateEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDateEditFactory.data, - qt_meta_data_QtDateEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateEditFactory.stringdata)) - return static_cast(const_cast< QtDateEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDateEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} -struct qt_meta_stringdata_QtTimeEditFactory_t { - QByteArrayData data[6]; - char stringdata[84]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTimeEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTimeEditFactory_t qt_meta_stringdata_QtTimeEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 12), -QT_MOC_LITERAL(5, 64, 19) - }, - "QtTimeEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTimeEditFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 2, 2, - QMetaType::Void, QMetaType::QTime, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtTimeEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTimeEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QTime(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtTimeEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtTimeEditFactory.data, - qt_meta_data_QtTimeEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTimeEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTimeEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTimeEditFactory.stringdata)) - return static_cast(const_cast< QtTimeEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtTimeEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtDateTimeEditFactory_t { - QByteArrayData data[6]; - char stringdata[88]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateTimeEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateTimeEditFactory_t qt_meta_stringdata_QtDateTimeEditFactory = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 19), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 12), -QT_MOC_LITERAL(5, 68, 19) - }, - "QtDateTimeEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateTimeEditFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 2, 2, - QMetaType::Void, QMetaType::QDateTime, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDateTimeEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateTimeEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QDateTime(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDateTimeEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDateTimeEditFactory.data, - qt_meta_data_QtDateTimeEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateTimeEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateTimeEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateTimeEditFactory.stringdata)) - return static_cast(const_cast< QtDateTimeEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDateTimeEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtKeySequenceEditorFactory_t { - QByteArrayData data[6]; - char stringdata[93]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequenceEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequenceEditorFactory_t qt_meta_stringdata_QtKeySequenceEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 26), -QT_MOC_LITERAL(1, 27, 19), -QT_MOC_LITERAL(2, 47, 0), -QT_MOC_LITERAL(3, 48, 11), -QT_MOC_LITERAL(4, 60, 12), -QT_MOC_LITERAL(5, 73, 19) - }, - "QtKeySequenceEditorFactory\0" - "slotPropertyChanged\0\0QtProperty*\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequenceEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 2, 2, - QMetaType::Void, QMetaType::QKeySequence, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtKeySequenceEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequenceEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtKeySequenceEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtKeySequenceEditorFactory.data, - qt_meta_data_QtKeySequenceEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequenceEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequenceEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequenceEditorFactory.stringdata)) - return static_cast(const_cast< QtKeySequenceEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtKeySequenceEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtCharEditorFactory_t { - QByteArrayData data[6]; - char stringdata[86]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharEditorFactory_t qt_meta_stringdata_QtCharEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 12), -QT_MOC_LITERAL(5, 66, 19) - }, - "QtCharEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 2, 2, - QMetaType::Void, QMetaType::QChar, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCharEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCharEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCharEditorFactory.data, - qt_meta_data_QtCharEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharEditorFactory.stringdata)) - return static_cast(const_cast< QtCharEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCharEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtEnumEditorFactory_t { - QByteArrayData data[9]; - char stringdata[144]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtEnumEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtEnumEditorFactory_t qt_meta_stringdata_QtEnumEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 20), -QT_MOC_LITERAL(5, 74, 20), -QT_MOC_LITERAL(6, 95, 15), -QT_MOC_LITERAL(7, 111, 12), -QT_MOC_LITERAL(8, 124, 19) - }, - "QtEnumEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEnumNamesChanged\0" - "slotEnumIconsChanged\0QMap\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtEnumEditorFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 2, 44, 2, 0x08 /* Private */, - 5, 2, 49, 2, 0x08 /* Private */, - 7, 1, 54, 2, 0x08 /* Private */, - 8, 1, 57, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 6, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtEnumEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtEnumEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEnumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEnumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtEnumEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtEnumEditorFactory.data, - qt_meta_data_QtEnumEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtEnumEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtEnumEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtEnumEditorFactory.stringdata)) - return static_cast(const_cast< QtEnumEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtEnumEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtCursorEditorFactory_t { - QByteArrayData data[6]; - char stringdata[91]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCursorEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCursorEditorFactory_t qt_meta_stringdata_QtCursorEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 19), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 15), -QT_MOC_LITERAL(5, 71, 19) - }, - "QtCursorEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEnumChanged\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCursorEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 2, 34, 2, 0x08 /* Private */, - 5, 1, 39, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCursorEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCursorEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCursorEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCursorEditorFactory.data, - qt_meta_data_QtCursorEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCursorEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCursorEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCursorEditorFactory.stringdata)) - return static_cast(const_cast< QtCursorEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCursorEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtColorEditorFactory_t { - QByteArrayData data[6]; - char stringdata[87]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorEditorFactory_t qt_meta_stringdata_QtColorEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 20), -QT_MOC_LITERAL(1, 21, 19), -QT_MOC_LITERAL(2, 41, 0), -QT_MOC_LITERAL(3, 42, 11), -QT_MOC_LITERAL(4, 54, 19), -QT_MOC_LITERAL(5, 74, 12) - }, - "QtColorEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEditorDestroyed\0" - "slotSetValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - QMetaType::Void, QMetaType::QColor, 2, - - 0 // eod -}; - -void QtColorEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtColorEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtColorEditorFactory.data, - qt_meta_data_QtColorEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorEditorFactory.stringdata)) - return static_cast(const_cast< QtColorEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtColorEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtFontEditorFactory_t { - QByteArrayData data[6]; - char stringdata[86]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontEditorFactory_t qt_meta_stringdata_QtFontEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 19), -QT_MOC_LITERAL(5, 73, 12) - }, - "QtFontEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEditorDestroyed\0" - "slotSetValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - QMetaType::Void, QMetaType::QFont, 2, - - 0 // eod -}; - -void QtFontEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtFontEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtFontEditorFactory.data, - qt_meta_data_QtFontEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontEditorFactory.stringdata)) - return static_cast(const_cast< QtFontEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtFontEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtgroupboxpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtgroupboxpropertybrowser.cpp deleted file mode 100644 index a802f12..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtgroupboxpropertybrowser.cpp +++ /dev/null @@ -1,114 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtgroupboxpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtgroupboxpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtgroupboxpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtGroupBoxPropertyBrowser_t { - QByteArrayData data[4]; - char stringdata[58]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtGroupBoxPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtGroupBoxPropertyBrowser_t qt_meta_stringdata_QtGroupBoxPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 10), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 19) - }, - "QtGroupBoxPropertyBrowser\0slotUpdate\0" - "\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtGroupBoxPropertyBrowser[] = { - - // 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, 0, 24, 2, 0x08 /* Private */, - 3, 0, 25, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtGroupBoxPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtGroupBoxPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotUpdate(); break; - case 1: _t->d_func()->slotEditorDestroyed(); break; - default: ; - } - } - Q_UNUSED(_a); -} - -const QMetaObject QtGroupBoxPropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtGroupBoxPropertyBrowser.data, - qt_meta_data_QtGroupBoxPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtGroupBoxPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtGroupBoxPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtGroupBoxPropertyBrowser.stringdata)) - return static_cast(const_cast< QtGroupBoxPropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtGroupBoxPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowser.cpp deleted file mode 100644 index 7209aff..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowser.cpp +++ /dev/null @@ -1,417 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtAbstractPropertyManager_t { - QByteArrayData data[10]; - char stringdata[128]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractPropertyManager_t qt_meta_stringdata_QtAbstractPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 16), -QT_MOC_LITERAL(2, 43, 0), -QT_MOC_LITERAL(3, 44, 11), -QT_MOC_LITERAL(4, 56, 8), -QT_MOC_LITERAL(5, 65, 6), -QT_MOC_LITERAL(6, 72, 5), -QT_MOC_LITERAL(7, 78, 15), -QT_MOC_LITERAL(8, 94, 15), -QT_MOC_LITERAL(9, 110, 17) - }, - "QtAbstractPropertyManager\0propertyInserted\0" - "\0QtProperty*\0property\0parent\0after\0" - "propertyChanged\0propertyRemoved\0" - "propertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 3, 34, 2, 0x06 /* Public */, - 7, 1, 41, 2, 0x06 /* Public */, - 8, 2, 44, 2, 0x06 /* Public */, - 9, 1, 49, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 0x80000000 | 3, 4, 5, 6, - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 4, 5, - QMetaType::Void, 0x80000000 | 3, 4, - - 0 // eod -}; - -void QtAbstractPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->propertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 1: _t->propertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 2: _t->propertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - case 3: _t->propertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * , QtProperty * , QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyInserted)) { - *result = 0; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyChanged)) { - *result = 1; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * , QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyRemoved)) { - *result = 2; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyDestroyed)) { - *result = 3; - } - } - } -} - -const QMetaObject QtAbstractPropertyManager::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtAbstractPropertyManager.data, - qt_meta_data_QtAbstractPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractPropertyManager.stringdata)) - return static_cast(const_cast< QtAbstractPropertyManager*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtAbstractPropertyManager::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 < 4) - qt_static_metacall(this, _c, _id, _a); - _id -= 4; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 4) - *reinterpret_cast(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtAbstractPropertyManager::propertyInserted(QtProperty * _t1, QtProperty * _t2, QtProperty * _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtAbstractPropertyManager::propertyChanged(QtProperty * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtAbstractPropertyManager::propertyRemoved(QtProperty * _t1, QtProperty * _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtAbstractPropertyManager::propertyDestroyed(QtProperty * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtAbstractEditorFactoryBase_t { - QByteArrayData data[4]; - char stringdata[54]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractEditorFactoryBase_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractEditorFactoryBase_t qt_meta_stringdata_QtAbstractEditorFactoryBase = { - { -QT_MOC_LITERAL(0, 0, 27), -QT_MOC_LITERAL(1, 28, 16), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 7) - }, - "QtAbstractEditorFactoryBase\0" - "managerDestroyed\0\0manager" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractEditorFactoryBase[] = { - - // 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, 0x09 /* Protected */, - - // slots: parameters - QMetaType::Void, QMetaType::QObjectStar, 3, - - 0 // eod -}; - -void QtAbstractEditorFactoryBase::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractEditorFactoryBase *_t = static_cast(_o); - switch (_id) { - case 0: _t->managerDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtAbstractEditorFactoryBase::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtAbstractEditorFactoryBase.data, - qt_meta_data_QtAbstractEditorFactoryBase, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractEditorFactoryBase::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractEditorFactoryBase::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractEditorFactoryBase.stringdata)) - return static_cast(const_cast< QtAbstractEditorFactoryBase*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtAbstractEditorFactoryBase::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 < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} -struct qt_meta_stringdata_QtAbstractPropertyBrowser_t { - QByteArrayData data[14]; - char stringdata[225]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractPropertyBrowser_t qt_meta_stringdata_QtAbstractPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 18), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 14), -QT_MOC_LITERAL(4, 61, 11), -QT_MOC_LITERAL(5, 73, 11), -QT_MOC_LITERAL(6, 85, 8), -QT_MOC_LITERAL(7, 94, 14), -QT_MOC_LITERAL(8, 109, 13), -QT_MOC_LITERAL(9, 123, 14), -QT_MOC_LITERAL(10, 138, 20), -QT_MOC_LITERAL(11, 159, 19), -QT_MOC_LITERAL(12, 179, 21), -QT_MOC_LITERAL(13, 201, 23) - }, - "QtAbstractPropertyBrowser\0currentItemChanged\0" - "\0QtBrowserItem*\0addProperty\0QtProperty*\0" - "property\0insertProperty\0afterProperty\0" - "removeProperty\0slotPropertyInserted\0" - "slotPropertyRemoved\0slotPropertyDestroyed\0" - "slotPropertyDataChanged" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractPropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 57, 2, 0x0a /* Public */, - 7, 2, 60, 2, 0x0a /* Public */, - 9, 1, 65, 2, 0x0a /* Public */, - 10, 3, 68, 2, 0x08 /* Private */, - 11, 2, 75, 2, 0x08 /* Private */, - 12, 1, 80, 2, 0x08 /* Private */, - 13, 1, 83, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 2, - - // slots: parameters - 0x80000000 | 3, 0x80000000 | 5, 6, - 0x80000000 | 3, 0x80000000 | 5, 0x80000000 | 5, 6, 8, - QMetaType::Void, 0x80000000 | 5, 6, - QMetaType::Void, 0x80000000 | 5, 0x80000000 | 5, 0x80000000 | 5, 2, 2, 2, - QMetaType::Void, 0x80000000 | 5, 0x80000000 | 5, 2, 2, - QMetaType::Void, 0x80000000 | 5, 2, - QMetaType::Void, 0x80000000 | 5, 2, - - 0 // eod -}; - -void QtAbstractPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->currentItemChanged((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: { QtBrowserItem* _r = _t->addProperty((*reinterpret_cast< QtProperty*(*)>(_a[1]))); - if (_a[0]) *reinterpret_cast< QtBrowserItem**>(_a[0]) = _r; } break; - case 2: { QtBrowserItem* _r = _t->insertProperty((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); - if (_a[0]) *reinterpret_cast< QtBrowserItem**>(_a[0]) = _r; } break; - case 3: _t->removeProperty((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 4: _t->d_func()->slotPropertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 5: _t->d_func()->slotPropertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - case 6: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 7: _t->d_func()->slotPropertyDataChanged((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtAbstractPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyBrowser::currentItemChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtAbstractPropertyBrowser::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtAbstractPropertyBrowser.data, - qt_meta_data_QtAbstractPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractPropertyBrowser.stringdata)) - return static_cast(const_cast< QtAbstractPropertyBrowser*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtAbstractPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtAbstractPropertyBrowser::currentItemChanged(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.cpp deleted file mode 100644 index 77cdc0e..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.cpp +++ /dev/null @@ -1,241 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertybrowserutils_p.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertybrowserutils_p.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertybrowserutils_p.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtBoolEdit_t { - QByteArrayData data[3]; - char stringdata[20]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtBoolEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtBoolEdit_t qt_meta_stringdata_QtBoolEdit = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 7), -QT_MOC_LITERAL(2, 19, 0) - }, - "QtBoolEdit\0toggled\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtBoolEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Bool, 2, - - 0 // eod -}; - -void QtBoolEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtBoolEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->toggled((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtBoolEdit::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolEdit::toggled)) { - *result = 0; - } - } - } -} - -const QMetaObject QtBoolEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtBoolEdit.data, - qt_meta_data_QtBoolEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtBoolEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtBoolEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtBoolEdit.stringdata)) - return static_cast(const_cast< QtBoolEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtBoolEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void QtBoolEdit::toggled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtKeySequenceEdit_t { - QByteArrayData data[6]; - char stringdata[80]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequenceEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequenceEdit_t qt_meta_stringdata_QtKeySequenceEdit = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 18), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 8), -QT_MOC_LITERAL(4, 47, 14), -QT_MOC_LITERAL(5, 62, 17) - }, - "QtKeySequenceEdit\0keySequenceChanged\0" - "\0sequence\0setKeySequence\0slotClearShortcut" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequenceEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QKeySequence, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QKeySequence, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtKeySequenceEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequenceEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->keySequenceChanged((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 1: _t->setKeySequence((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 2: _t->slotClearShortcut(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtKeySequenceEdit::*_t)(const QKeySequence & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtKeySequenceEdit::keySequenceChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtKeySequenceEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtKeySequenceEdit.data, - qt_meta_data_QtKeySequenceEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequenceEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequenceEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequenceEdit.stringdata)) - return static_cast(const_cast< QtKeySequenceEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtKeySequenceEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtKeySequenceEdit::keySequenceChanged(const QKeySequence & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.o deleted file mode 100644 index 390bfde..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertybrowserutils_p.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertymanager.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertymanager.cpp deleted file mode 100644 index bcbb9d1..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtpropertymanager.cpp +++ /dev/null @@ -1,3299 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertymanager.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertymanager.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertymanager.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtGroupPropertyManager_t { - QByteArrayData data[1]; - char stringdata[23]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtGroupPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtGroupPropertyManager_t qt_meta_stringdata_QtGroupPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22) - }, - "QtGroupPropertyManager" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtGroupPropertyManager[] = { - - // 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 QtGroupPropertyManager::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 QtGroupPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtGroupPropertyManager.data, - qt_meta_data_QtGroupPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtGroupPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtGroupPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtGroupPropertyManager.stringdata)) - return static_cast(const_cast< QtGroupPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtGroupPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -struct qt_meta_stringdata_QtIntPropertyManager_t { - QByteArrayData data[19]; - char stringdata[201]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtIntPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtIntPropertyManager_t qt_meta_stringdata_QtIntPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 20), -QT_MOC_LITERAL(1, 21, 12), -QT_MOC_LITERAL(2, 34, 0), -QT_MOC_LITERAL(3, 35, 11), -QT_MOC_LITERAL(4, 47, 8), -QT_MOC_LITERAL(5, 56, 3), -QT_MOC_LITERAL(6, 60, 12), -QT_MOC_LITERAL(7, 73, 6), -QT_MOC_LITERAL(8, 80, 6), -QT_MOC_LITERAL(9, 87, 17), -QT_MOC_LITERAL(10, 105, 4), -QT_MOC_LITERAL(11, 110, 15), -QT_MOC_LITERAL(12, 126, 8), -QT_MOC_LITERAL(13, 135, 8), -QT_MOC_LITERAL(14, 144, 10), -QT_MOC_LITERAL(15, 155, 10), -QT_MOC_LITERAL(16, 166, 8), -QT_MOC_LITERAL(17, 175, 13), -QT_MOC_LITERAL(18, 189, 11) - }, - "QtIntPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0singleStepChanged\0step\0" - "readOnlyChanged\0readOnly\0setValue\0" - "setMinimum\0setMaximum\0setRange\0" - "setSingleStep\0setReadOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtIntPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 10, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 64, 2, 0x06 /* Public */, - 6, 3, 69, 2, 0x06 /* Public */, - 9, 2, 76, 2, 0x06 /* Public */, - 11, 2, 81, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 13, 2, 86, 2, 0x0a /* Public */, - 14, 2, 91, 2, 0x0a /* Public */, - 15, 2, 96, 2, 0x0a /* Public */, - 16, 3, 101, 2, 0x0a /* Public */, - 17, 2, 108, 2, 0x0a /* Public */, - 18, 2, 113, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 12, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 12, - - 0 // eod -}; - -void QtIntPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtIntPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->singleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 6: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 8: _t->setSingleStep((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 9: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::singleStepChanged)) { - *result = 2; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::readOnlyChanged)) { - *result = 3; - } - } - } -} - -const QMetaObject QtIntPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtIntPropertyManager.data, - qt_meta_data_QtIntPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtIntPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtIntPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtIntPropertyManager.stringdata)) - return static_cast(const_cast< QtIntPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtIntPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 10) - qt_static_metacall(this, _c, _id, _a); - _id -= 10; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 10) - *reinterpret_cast(_a[0]) = -1; - _id -= 10; - } - return _id; -} - -// SIGNAL 0 -void QtIntPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtIntPropertyManager::rangeChanged(QtProperty * _t1, int _t2, int _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtIntPropertyManager::singleStepChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtIntPropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtBoolPropertyManager_t { - QByteArrayData data[10]; - char stringdata[116]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtBoolPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtBoolPropertyManager_t qt_meta_stringdata_QtBoolPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 18), -QT_MOC_LITERAL(7, 80, 8), -QT_MOC_LITERAL(8, 89, 14), -QT_MOC_LITERAL(9, 104, 11) - }, - "QtBoolPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0textVisibleChanged\0" - "setValue\0setTextVisible\0textVisible" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtBoolPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - 6, 2, 39, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 7, 2, 44, 2, 0x0a /* Public */, - 8, 2, 49, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 2, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 9, - - 0 // eod -}; - -void QtBoolPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtBoolPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 1: _t->textVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 3: _t->setTextVisible((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtBoolPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtBoolPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolPropertyManager::textVisibleChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtBoolPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtBoolPropertyManager.data, - qt_meta_data_QtBoolPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtBoolPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtBoolPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtBoolPropertyManager.stringdata)) - return static_cast(const_cast< QtBoolPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtBoolPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtBoolPropertyManager::valueChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtBoolPropertyManager::textVisibleChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtDoublePropertyManager_t { - QByteArrayData data[22]; - char stringdata[237]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDoublePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDoublePropertyManager_t qt_meta_stringdata_QtDoublePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 12), -QT_MOC_LITERAL(7, 76, 6), -QT_MOC_LITERAL(8, 83, 6), -QT_MOC_LITERAL(9, 90, 17), -QT_MOC_LITERAL(10, 108, 4), -QT_MOC_LITERAL(11, 113, 15), -QT_MOC_LITERAL(12, 129, 4), -QT_MOC_LITERAL(13, 134, 15), -QT_MOC_LITERAL(14, 150, 8), -QT_MOC_LITERAL(15, 159, 8), -QT_MOC_LITERAL(16, 168, 10), -QT_MOC_LITERAL(17, 179, 10), -QT_MOC_LITERAL(18, 190, 8), -QT_MOC_LITERAL(19, 199, 13), -QT_MOC_LITERAL(20, 213, 11), -QT_MOC_LITERAL(21, 225, 11) - }, - "QtDoublePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0singleStepChanged\0step\0" - "decimalsChanged\0prec\0readOnlyChanged\0" - "readOnly\0setValue\0setMinimum\0setMaximum\0" - "setRange\0setSingleStep\0setDecimals\0" - "setReadOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDoublePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 12, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 5, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 74, 2, 0x06 /* Public */, - 6, 3, 79, 2, 0x06 /* Public */, - 9, 2, 86, 2, 0x06 /* Public */, - 11, 2, 91, 2, 0x06 /* Public */, - 13, 2, 96, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 15, 2, 101, 2, 0x0a /* Public */, - 16, 2, 106, 2, 0x0a /* Public */, - 17, 2, 111, 2, 0x0a /* Public */, - 18, 3, 116, 2, 0x0a /* Public */, - 19, 2, 123, 2, 0x0a /* Public */, - 20, 2, 128, 2, 0x0a /* Public */, - 21, 2, 133, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 12, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 14, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 12, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 14, - - 0 // eod -}; - -void QtDoublePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDoublePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 2: _t->singleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 3: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 6: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 7: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 8: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 9: _t->setSingleStep((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 10: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 11: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::singleStepChanged)) { - *result = 2; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::decimalsChanged)) { - *result = 3; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::readOnlyChanged)) { - *result = 4; - } - } - } -} - -const QMetaObject QtDoublePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDoublePropertyManager.data, - qt_meta_data_QtDoublePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDoublePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDoublePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDoublePropertyManager.stringdata)) - return static_cast(const_cast< QtDoublePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDoublePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 12) - qt_static_metacall(this, _c, _id, _a); - _id -= 12; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 12) - *reinterpret_cast(_a[0]) = -1; - _id -= 12; - } - return _id; -} - -// SIGNAL 0 -void QtDoublePropertyManager::valueChanged(QtProperty * _t1, double _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtDoublePropertyManager::rangeChanged(QtProperty * _t1, double _t2, double _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtDoublePropertyManager::singleStepChanged(QtProperty * _t1, double _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtDoublePropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void QtDoublePropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} -struct qt_meta_stringdata_QtStringPropertyManager_t { - QByteArrayData data[17]; - char stringdata[186]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtStringPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtStringPropertyManager_t qt_meta_stringdata_QtStringPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 13), -QT_MOC_LITERAL(7, 77, 6), -QT_MOC_LITERAL(8, 84, 15), -QT_MOC_LITERAL(9, 100, 15), -QT_MOC_LITERAL(10, 116, 8), -QT_MOC_LITERAL(11, 125, 9), -QT_MOC_LITERAL(12, 135, 11), -QT_MOC_LITERAL(13, 147, 8), -QT_MOC_LITERAL(14, 156, 8), -QT_MOC_LITERAL(15, 165, 11), -QT_MOC_LITERAL(16, 177, 8) - }, - "QtStringPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0regExpChanged\0" - "regExp\0echoModeChanged\0readOnlyChanged\0" - "setValue\0setRegExp\0setEchoMode\0EchoMode\0" - "echoMode\0setReadOnly\0readOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtStringPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 2, 59, 2, 0x06 /* Public */, - 8, 2, 64, 2, 0x06 /* Public */, - 9, 2, 69, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 10, 2, 74, 2, 0x0a /* Public */, - 11, 2, 79, 2, 0x0a /* Public */, - 12, 2, 84, 2, 0x0a /* Public */, - 15, 2, 89, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 2, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 13, 4, 14, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 16, - - 0 // eod -}; - -void QtStringPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtStringPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->regExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 2: _t->echoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const int(*)>(_a[2]))); break; - case 3: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 5: _t->setRegExp((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 6: _t->setEchoMode((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< EchoMode(*)>(_a[2]))); break; - case 7: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const QString & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const QRegExp & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::regExpChanged)) { - *result = 1; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::echoModeChanged)) { - *result = 2; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::readOnlyChanged)) { - *result = 3; - } - } - } -} - -const QMetaObject QtStringPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtStringPropertyManager.data, - qt_meta_data_QtStringPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtStringPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtStringPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtStringPropertyManager.stringdata)) - return static_cast(const_cast< QtStringPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtStringPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtStringPropertyManager::valueChanged(QtProperty * _t1, const QString & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtStringPropertyManager::regExpChanged(QtProperty * _t1, const QRegExp & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtStringPropertyManager::echoModeChanged(QtProperty * _t1, const int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtStringPropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtDatePropertyManager_t { - QByteArrayData data[13]; - char stringdata[128]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDatePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDatePropertyManager_t qt_meta_stringdata_QtDatePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 12), -QT_MOC_LITERAL(7, 74, 6), -QT_MOC_LITERAL(8, 81, 6), -QT_MOC_LITERAL(9, 88, 8), -QT_MOC_LITERAL(10, 97, 10), -QT_MOC_LITERAL(11, 108, 10), -QT_MOC_LITERAL(12, 119, 8) - }, - "QtDatePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0setValue\0setMinimum\0" - "setMaximum\0setRange" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDatePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 3, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 9, 2, 56, 2, 0x0a /* Public */, - 10, 2, 61, 2, 0x0a /* Public */, - 11, 2, 66, 2, 0x0a /* Public */, - 12, 3, 71, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 4, 7, 8, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 4, 7, 8, - - 0 // eod -}; - -void QtDatePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDatePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 3: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 4: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 5: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDatePropertyManager::*_t)(QtProperty * , const QDate & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDatePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtDatePropertyManager::*_t)(QtProperty * , const QDate & , const QDate & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDatePropertyManager::rangeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtDatePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDatePropertyManager.data, - qt_meta_data_QtDatePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDatePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDatePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDatePropertyManager.stringdata)) - return static_cast(const_cast< QtDatePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDatePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtDatePropertyManager::valueChanged(QtProperty * _t1, const QDate & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtDatePropertyManager::rangeChanged(QtProperty * _t1, const QDate & _t2, const QDate & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtTimePropertyManager_t { - QByteArrayData data[7]; - char stringdata[70]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTimePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTimePropertyManager_t qt_meta_stringdata_QtTimePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8) - }, - "QtTimePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTimePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 4, 5, - - 0 // eod -}; - -void QtTimePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTimePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtTimePropertyManager::*_t)(QtProperty * , const QTime & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTimePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtTimePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtTimePropertyManager.data, - qt_meta_data_QtTimePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTimePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTimePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTimePropertyManager.stringdata)) - return static_cast(const_cast< QtTimePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtTimePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtTimePropertyManager::valueChanged(QtProperty * _t1, const QTime & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtDateTimePropertyManager_t { - QByteArrayData data[7]; - char stringdata[74]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateTimePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateTimePropertyManager_t qt_meta_stringdata_QtDateTimePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 12), -QT_MOC_LITERAL(2, 39, 0), -QT_MOC_LITERAL(3, 40, 11), -QT_MOC_LITERAL(4, 52, 8), -QT_MOC_LITERAL(5, 61, 3), -QT_MOC_LITERAL(6, 65, 8) - }, - "QtDateTimePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateTimePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 4, 5, - - 0 // eod -}; - -void QtDateTimePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateTimePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDateTimePropertyManager::*_t)(QtProperty * , const QDateTime & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDateTimePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtDateTimePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDateTimePropertyManager.data, - qt_meta_data_QtDateTimePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateTimePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateTimePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateTimePropertyManager.stringdata)) - return static_cast(const_cast< QtDateTimePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDateTimePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtDateTimePropertyManager::valueChanged(QtProperty * _t1, const QDateTime & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtKeySequencePropertyManager_t { - QByteArrayData data[7]; - char stringdata[77]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequencePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequencePropertyManager_t qt_meta_stringdata_QtKeySequencePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 28), -QT_MOC_LITERAL(1, 29, 12), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 8), -QT_MOC_LITERAL(5, 64, 3), -QT_MOC_LITERAL(6, 68, 8) - }, - "QtKeySequencePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequencePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 4, 5, - - 0 // eod -}; - -void QtKeySequencePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequencePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtKeySequencePropertyManager::*_t)(QtProperty * , const QKeySequence & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtKeySequencePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtKeySequencePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtKeySequencePropertyManager.data, - qt_meta_data_QtKeySequencePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequencePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequencePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequencePropertyManager.stringdata)) - return static_cast(const_cast< QtKeySequencePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtKeySequencePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtKeySequencePropertyManager::valueChanged(QtProperty * _t1, const QKeySequence & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtCharPropertyManager_t { - QByteArrayData data[7]; - char stringdata[70]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharPropertyManager_t qt_meta_stringdata_QtCharPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8) - }, - "QtCharPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 4, 5, - - 0 // eod -}; - -void QtCharPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCharPropertyManager::*_t)(QtProperty * , const QChar & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCharPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCharPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtCharPropertyManager.data, - qt_meta_data_QtCharPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharPropertyManager.stringdata)) - return static_cast(const_cast< QtCharPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtCharPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtCharPropertyManager::valueChanged(QtProperty * _t1, const QChar & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtLocalePropertyManager_t { - QByteArrayData data[9]; - char stringdata[110]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtLocalePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtLocalePropertyManager_t qt_meta_stringdata_QtLocalePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 8), -QT_MOC_LITERAL(7, 72, 15), -QT_MOC_LITERAL(8, 88, 21) - }, - "QtLocalePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotEnumChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtLocalePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtLocalePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtLocalePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtLocalePropertyManager::*_t)(QtProperty * , const QLocale & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtLocalePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtLocalePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtLocalePropertyManager.data, - qt_meta_data_QtLocalePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtLocalePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtLocalePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtLocalePropertyManager.stringdata)) - return static_cast(const_cast< QtLocalePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtLocalePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtLocalePropertyManager::valueChanged(QtProperty * _t1, const QLocale & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtPointPropertyManager_t { - QByteArrayData data[9]; - char stringdata[108]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPointPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPointPropertyManager_t qt_meta_stringdata_QtPointPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 8), -QT_MOC_LITERAL(7, 71, 14), -QT_MOC_LITERAL(8, 86, 21) - }, - "QtPointPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPointPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtPointPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPointPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtPointPropertyManager::*_t)(QtProperty * , const QPoint & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtPointPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtPointPropertyManager.data, - qt_meta_data_QtPointPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPointPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPointPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPointPropertyManager.stringdata)) - return static_cast(const_cast< QtPointPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtPointPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtPointPropertyManager::valueChanged(QtProperty * _t1, const QPoint & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtPointFPropertyManager_t { - QByteArrayData data[12]; - char stringdata[145]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPointFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPointFPropertyManager_t qt_meta_stringdata_QtPointFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 15), -QT_MOC_LITERAL(7, 79, 4), -QT_MOC_LITERAL(8, 84, 8), -QT_MOC_LITERAL(9, 93, 11), -QT_MOC_LITERAL(10, 105, 17), -QT_MOC_LITERAL(11, 123, 21) - }, - "QtPointFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0decimalsChanged\0" - "prec\0setValue\0setDecimals\0slotDoubleChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPointFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtPointFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPointFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 1: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 3: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtPointFPropertyManager::*_t)(QtProperty * , const QPointF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtPointFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointFPropertyManager::decimalsChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtPointFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtPointFPropertyManager.data, - qt_meta_data_QtPointFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPointFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPointFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPointFPropertyManager.stringdata)) - return static_cast(const_cast< QtPointFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtPointFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtPointFPropertyManager::valueChanged(QtProperty * _t1, const QPointF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtPointFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizePropertyManager_t { - QByteArrayData data[15]; - char stringdata[165]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizePropertyManager_t qt_meta_stringdata_QtSizePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 12), -QT_MOC_LITERAL(7, 74, 6), -QT_MOC_LITERAL(8, 81, 6), -QT_MOC_LITERAL(9, 88, 8), -QT_MOC_LITERAL(10, 97, 10), -QT_MOC_LITERAL(11, 108, 10), -QT_MOC_LITERAL(12, 119, 8), -QT_MOC_LITERAL(13, 128, 14), -QT_MOC_LITERAL(14, 143, 21) - }, - "QtSizePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0setValue\0setMinimum\0" - "setMaximum\0setRange\0slotIntChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 3, 59, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 9, 2, 66, 2, 0x0a /* Public */, - 10, 2, 71, 2, 0x0a /* Public */, - 11, 2, 76, 2, 0x0a /* Public */, - 12, 3, 81, 2, 0x0a /* Public */, - 13, 2, 88, 2, 0x08 /* Private */, - 14, 1, 93, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 4, 7, 8, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 3: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 4: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 5: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 6: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizePropertyManager::*_t)(QtProperty * , const QSize & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtSizePropertyManager::*_t)(QtProperty * , const QSize & , const QSize & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePropertyManager::rangeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtSizePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizePropertyManager.data, - qt_meta_data_QtSizePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizePropertyManager.stringdata)) - return static_cast(const_cast< QtSizePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtSizePropertyManager::valueChanged(QtProperty * _t1, const QSize & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtSizePropertyManager::rangeChanged(QtProperty * _t1, const QSize & _t2, const QSize & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizeFPropertyManager_t { - QByteArrayData data[18]; - char stringdata[202]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizeFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizeFPropertyManager_t qt_meta_stringdata_QtSizeFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 12), -QT_MOC_LITERAL(7, 75, 6), -QT_MOC_LITERAL(8, 82, 6), -QT_MOC_LITERAL(9, 89, 15), -QT_MOC_LITERAL(10, 105, 4), -QT_MOC_LITERAL(11, 110, 8), -QT_MOC_LITERAL(12, 119, 10), -QT_MOC_LITERAL(13, 130, 10), -QT_MOC_LITERAL(14, 141, 8), -QT_MOC_LITERAL(15, 150, 11), -QT_MOC_LITERAL(16, 162, 17), -QT_MOC_LITERAL(17, 180, 21) - }, - "QtSizeFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0decimalsChanged\0prec\0" - "setValue\0setMinimum\0setMaximum\0setRange\0" - "setDecimals\0slotDoubleChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizeFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 10, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 64, 2, 0x06 /* Public */, - 6, 3, 69, 2, 0x06 /* Public */, - 9, 2, 76, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 11, 2, 81, 2, 0x0a /* Public */, - 12, 2, 86, 2, 0x0a /* Public */, - 13, 2, 91, 2, 0x0a /* Public */, - 14, 3, 96, 2, 0x0a /* Public */, - 15, 2, 103, 2, 0x0a /* Public */, - 16, 2, 108, 2, 0x08 /* Private */, - 17, 1, 113, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizeFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizeFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 2: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 4: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 5: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 6: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 7: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 8: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 9: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , const QSizeF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , const QSizeF & , const QSizeF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::decimalsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtSizeFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizeFPropertyManager.data, - qt_meta_data_QtSizeFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizeFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizeFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizeFPropertyManager.stringdata)) - return static_cast(const_cast< QtSizeFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizeFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 10) - qt_static_metacall(this, _c, _id, _a); - _id -= 10; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 10) - *reinterpret_cast(_a[0]) = -1; - _id -= 10; - } - return _id; -} - -// SIGNAL 0 -void QtSizeFPropertyManager::valueChanged(QtProperty * _t1, const QSizeF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtSizeFPropertyManager::rangeChanged(QtProperty * _t1, const QSizeF & _t2, const QSizeF & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtSizeFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtRectPropertyManager_t { - QByteArrayData data[12]; - char stringdata[150]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtRectPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtRectPropertyManager_t qt_meta_stringdata_QtRectPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 17), -QT_MOC_LITERAL(7, 79, 10), -QT_MOC_LITERAL(8, 90, 8), -QT_MOC_LITERAL(9, 99, 13), -QT_MOC_LITERAL(10, 113, 14), -QT_MOC_LITERAL(11, 128, 21) - }, - "QtRectPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0constraintChanged\0" - "constraint\0setValue\0setConstraint\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtRectPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtRectPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtRectPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 1: _t->constraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 3: _t->setConstraint((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 4: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtRectPropertyManager::*_t)(QtProperty * , const QRect & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtRectPropertyManager::*_t)(QtProperty * , const QRect & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectPropertyManager::constraintChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtRectPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtRectPropertyManager.data, - qt_meta_data_QtRectPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtRectPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtRectPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtRectPropertyManager.stringdata)) - return static_cast(const_cast< QtRectPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtRectPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtRectPropertyManager::valueChanged(QtProperty * _t1, const QRect & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtRectPropertyManager::constraintChanged(QtProperty * _t1, const QRect & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtRectFPropertyManager_t { - QByteArrayData data[15]; - char stringdata[187]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtRectFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtRectFPropertyManager_t qt_meta_stringdata_QtRectFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 17), -QT_MOC_LITERAL(7, 80, 10), -QT_MOC_LITERAL(8, 91, 15), -QT_MOC_LITERAL(9, 107, 4), -QT_MOC_LITERAL(10, 112, 8), -QT_MOC_LITERAL(11, 121, 13), -QT_MOC_LITERAL(12, 135, 11), -QT_MOC_LITERAL(13, 147, 17), -QT_MOC_LITERAL(14, 165, 21) - }, - "QtRectFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0constraintChanged\0" - "constraint\0decimalsChanged\0prec\0" - "setValue\0setConstraint\0setDecimals\0" - "slotDoubleChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtRectFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 2, 59, 2, 0x06 /* Public */, - 8, 2, 64, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 10, 2, 69, 2, 0x0a /* Public */, - 11, 2, 74, 2, 0x0a /* Public */, - 12, 2, 79, 2, 0x0a /* Public */, - 13, 2, 84, 2, 0x08 /* Private */, - 14, 1, 89, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 9, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 9, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtRectFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtRectFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 1: _t->constraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 2: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 4: _t->setConstraint((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 5: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 6: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 7: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , const QRectF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , const QRectF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::constraintChanged)) { - *result = 1; - } - } - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::decimalsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtRectFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtRectFPropertyManager.data, - qt_meta_data_QtRectFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtRectFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtRectFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtRectFPropertyManager.stringdata)) - return static_cast(const_cast< QtRectFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtRectFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtRectFPropertyManager::valueChanged(QtProperty * _t1, const QRectF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtRectFPropertyManager::constraintChanged(QtProperty * _t1, const QRectF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtRectFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtEnumPropertyManager_t { - QByteArrayData data[14]; - char stringdata[158]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtEnumPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtEnumPropertyManager_t qt_meta_stringdata_QtEnumPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 16), -QT_MOC_LITERAL(7, 78, 5), -QT_MOC_LITERAL(8, 84, 16), -QT_MOC_LITERAL(9, 101, 15), -QT_MOC_LITERAL(10, 117, 5), -QT_MOC_LITERAL(11, 123, 8), -QT_MOC_LITERAL(12, 132, 12), -QT_MOC_LITERAL(13, 145, 12) - }, - "QtEnumPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0enumNamesChanged\0" - "names\0enumIconsChanged\0QMap\0" - "icons\0setValue\0setEnumNames\0setEnumIcons" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtEnumPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - 8, 2, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 11, 2, 59, 2, 0x0a /* Public */, - 12, 2, 64, 2, 0x0a /* Public */, - 13, 2, 69, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 9, 4, 10, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 9, 4, 10, - - 0 // eod -}; - -void QtEnumPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtEnumPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->enumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->enumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->setEnumNames((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 5: _t->setEnumIcons((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , const QStringList & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::enumNamesChanged)) { - *result = 1; - } - } - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , const QMap & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::enumIconsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtEnumPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtEnumPropertyManager.data, - qt_meta_data_QtEnumPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtEnumPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtEnumPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtEnumPropertyManager.stringdata)) - return static_cast(const_cast< QtEnumPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtEnumPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtEnumPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtEnumPropertyManager::enumNamesChanged(QtProperty * _t1, const QStringList & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtEnumPropertyManager::enumIconsChanged(QtProperty * _t1, const QMap & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtFlagPropertyManager_t { - QByteArrayData data[12]; - char stringdata[144]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFlagPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFlagPropertyManager_t qt_meta_stringdata_QtFlagPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 16), -QT_MOC_LITERAL(7, 78, 5), -QT_MOC_LITERAL(8, 84, 8), -QT_MOC_LITERAL(9, 93, 12), -QT_MOC_LITERAL(10, 106, 15), -QT_MOC_LITERAL(11, 122, 21) - }, - "QtFlagPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0flagNamesChanged\0" - "names\0setValue\0setFlagNames\0slotBoolChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFlagPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtFlagPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFlagPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->flagNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setFlagNames((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 4: _t->d_func()->slotBoolChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFlagPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFlagPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtFlagPropertyManager::*_t)(QtProperty * , const QStringList & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFlagPropertyManager::flagNamesChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtFlagPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtFlagPropertyManager.data, - qt_meta_data_QtFlagPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFlagPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFlagPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFlagPropertyManager.stringdata)) - return static_cast(const_cast< QtFlagPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtFlagPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtFlagPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtFlagPropertyManager::flagNamesChanged(QtProperty * _t1, const QStringList & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizePolicyPropertyManager_t { - QByteArrayData data[10]; - char stringdata[129]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizePolicyPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizePolicyPropertyManager_t qt_meta_stringdata_QtSizePolicyPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 27), -QT_MOC_LITERAL(1, 28, 12), -QT_MOC_LITERAL(2, 41, 0), -QT_MOC_LITERAL(3, 42, 11), -QT_MOC_LITERAL(4, 54, 8), -QT_MOC_LITERAL(5, 63, 3), -QT_MOC_LITERAL(6, 67, 8), -QT_MOC_LITERAL(7, 76, 14), -QT_MOC_LITERAL(8, 91, 15), -QT_MOC_LITERAL(9, 107, 21) - }, - "QtSizePolicyPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotEnumChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizePolicyPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 44, 2, 0x0a /* Public */, - 7, 2, 49, 2, 0x08 /* Private */, - 8, 2, 54, 2, 0x08 /* Private */, - 9, 1, 59, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizePolicyPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizePolicyPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizePolicyPropertyManager::*_t)(QtProperty * , const QSizePolicy & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePolicyPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtSizePolicyPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizePolicyPropertyManager.data, - qt_meta_data_QtSizePolicyPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizePolicyPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizePolicyPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizePolicyPropertyManager.stringdata)) - return static_cast(const_cast< QtSizePolicyPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizePolicyPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void QtSizePolicyPropertyManager::valueChanged(QtProperty * _t1, const QSizePolicy & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtFontPropertyManager_t { - QByteArrayData data[13]; - char stringdata[193]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontPropertyManager_t qt_meta_stringdata_QtFontPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8), -QT_MOC_LITERAL(7, 70, 14), -QT_MOC_LITERAL(8, 85, 15), -QT_MOC_LITERAL(9, 101, 15), -QT_MOC_LITERAL(10, 117, 21), -QT_MOC_LITERAL(11, 139, 23), -QT_MOC_LITERAL(12, 163, 29) - }, - "QtFontPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotEnumChanged\0" - "slotBoolChanged\0slotPropertyDestroyed\0" - "slotFontDatabaseChanged\0" - "slotFontDatabaseDelayedChange" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 59, 2, 0x0a /* Public */, - 7, 2, 64, 2, 0x08 /* Private */, - 8, 2, 69, 2, 0x08 /* Private */, - 9, 2, 74, 2, 0x08 /* Private */, - 10, 1, 79, 2, 0x08 /* Private */, - 11, 0, 82, 2, 0x08 /* Private */, - 12, 0, 83, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtFontPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotBoolChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 6: _t->d_func()->slotFontDatabaseChanged(); break; - case 7: _t->d_func()->slotFontDatabaseDelayedChange(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFontPropertyManager::*_t)(QtProperty * , const QFont & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFontPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtFontPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtFontPropertyManager.data, - qt_meta_data_QtFontPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontPropertyManager.stringdata)) - return static_cast(const_cast< QtFontPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtFontPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtFontPropertyManager::valueChanged(QtProperty * _t1, const QFont & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtColorPropertyManager_t { - QByteArrayData data[9]; - char stringdata[108]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorPropertyManager_t qt_meta_stringdata_QtColorPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 8), -QT_MOC_LITERAL(7, 71, 14), -QT_MOC_LITERAL(8, 86, 21) - }, - "QtColorPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtColorPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtColorPropertyManager::*_t)(QtProperty * , const QColor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtColorPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtColorPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtColorPropertyManager.data, - qt_meta_data_QtColorPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorPropertyManager.stringdata)) - return static_cast(const_cast< QtColorPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtColorPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtColorPropertyManager::valueChanged(QtProperty * _t1, const QColor & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtCursorPropertyManager_t { - QByteArrayData data[7]; - char stringdata[72]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCursorPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCursorPropertyManager_t qt_meta_stringdata_QtCursorPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 8) - }, - "QtCursorPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCursorPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 4, 5, - - 0 // eod -}; - -void QtCursorPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCursorPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCursorPropertyManager::*_t)(QtProperty * , const QCursor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCursorPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCursorPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtCursorPropertyManager.data, - qt_meta_data_QtCursorPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCursorPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCursorPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCursorPropertyManager.stringdata)) - return static_cast(const_cast< QtCursorPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtCursorPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtCursorPropertyManager::valueChanged(QtProperty * _t1, const QCursor & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qttreepropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qttreepropertybrowser.cpp deleted file mode 100644 index 5084dcb..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qttreepropertybrowser.cpp +++ /dev/null @@ -1,247 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qttreepropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qttreepropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qttreepropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtTreePropertyBrowser_t { - QByteArrayData data[23]; - char stringdata[337]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTreePropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTreePropertyBrowser_t qt_meta_stringdata_QtTreePropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 9), -QT_MOC_LITERAL(2, 32, 0), -QT_MOC_LITERAL(3, 33, 14), -QT_MOC_LITERAL(4, 48, 4), -QT_MOC_LITERAL(5, 53, 8), -QT_MOC_LITERAL(6, 62, 13), -QT_MOC_LITERAL(7, 76, 12), -QT_MOC_LITERAL(8, 89, 29), -QT_MOC_LITERAL(9, 119, 26), -QT_MOC_LITERAL(10, 146, 16), -QT_MOC_LITERAL(11, 163, 11), -QT_MOC_LITERAL(12, 175, 15), -QT_MOC_LITERAL(13, 191, 20), -QT_MOC_LITERAL(14, 212, 13), -QT_MOC_LITERAL(15, 226, 10), -QT_MOC_LITERAL(16, 237, 10), -QT_MOC_LITERAL(17, 248, 16), -QT_MOC_LITERAL(18, 265, 28), -QT_MOC_LITERAL(19, 294, 11), -QT_MOC_LITERAL(20, 306, 7), -QT_MOC_LITERAL(21, 314, 5), -QT_MOC_LITERAL(22, 320, 16) - }, - "QtTreePropertyBrowser\0collapsed\0\0" - "QtBrowserItem*\0item\0expanded\0slotCollapsed\0" - "slotExpanded\0slotCurrentBrowserItemChanged\0" - "slotCurrentTreeItemChanged\0QTreeWidgetItem*\0" - "indentation\0rootIsDecorated\0" - "alternatingRowColors\0headerVisible\0" - "resizeMode\0ResizeMode\0splitterPosition\0" - "propertiesWithoutValueMarked\0Interactive\0" - "Stretch\0Fixed\0ResizeToContents" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTreePropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 7, 64, // properties - 1, 85, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 44, 2, 0x06 /* Public */, - 5, 1, 47, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 1, 50, 2, 0x08 /* Private */, - 7, 1, 53, 2, 0x08 /* Private */, - 8, 1, 56, 2, 0x08 /* Private */, - 9, 2, 59, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - // slots: parameters - QMetaType::Void, QMetaType::QModelIndex, 2, - QMetaType::Void, QMetaType::QModelIndex, 2, - QMetaType::Void, 0x80000000 | 3, 2, - QMetaType::Void, 0x80000000 | 10, 0x80000000 | 10, 2, 2, - - // properties: name, type, flags - 11, QMetaType::Int, 0x00095103, - 12, QMetaType::Bool, 0x00095103, - 13, QMetaType::Bool, 0x00095103, - 14, QMetaType::Bool, 0x00095103, - 15, 0x80000000 | 16, 0x0009510b, - 17, QMetaType::Int, 0x00095103, - 18, QMetaType::Bool, 0x00095103, - - // enums: name, flags, count, data - 16, 0x0, 4, 89, - - // enum data: key, value - 19, uint(QtTreePropertyBrowser::Interactive), - 20, uint(QtTreePropertyBrowser::Stretch), - 21, uint(QtTreePropertyBrowser::Fixed), - 22, uint(QtTreePropertyBrowser::ResizeToContents), - - 0 // eod -}; - -void QtTreePropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTreePropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->collapsed((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: _t->expanded((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotCollapsed((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; - case 3: _t->d_func()->slotExpanded((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; - case 4: _t->d_func()->slotCurrentBrowserItemChanged((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 5: _t->d_func()->slotCurrentTreeItemChanged((*reinterpret_cast< QTreeWidgetItem*(*)>(_a[1])),(*reinterpret_cast< QTreeWidgetItem*(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtTreePropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTreePropertyBrowser::collapsed)) { - *result = 0; - } - } - { - typedef void (QtTreePropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTreePropertyBrowser::expanded)) { - *result = 1; - } - } - } -} - -const QMetaObject QtTreePropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtTreePropertyBrowser.data, - qt_meta_data_QtTreePropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTreePropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTreePropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTreePropertyBrowser.stringdata)) - return static_cast(const_cast< QtTreePropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtTreePropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::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(_a[0]) = -1; - _id -= 6; - } -#ifndef QT_NO_PROPERTIES - else if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< int*>(_v) = indentation(); break; - case 1: *reinterpret_cast< bool*>(_v) = rootIsDecorated(); break; - case 2: *reinterpret_cast< bool*>(_v) = alternatingRowColors(); break; - case 3: *reinterpret_cast< bool*>(_v) = isHeaderVisible(); break; - case 4: *reinterpret_cast< ResizeMode*>(_v) = resizeMode(); break; - case 5: *reinterpret_cast< int*>(_v) = splitterPosition(); break; - case 6: *reinterpret_cast< bool*>(_v) = propertiesWithoutValueMarked(); break; - default: break; - } - _id -= 7; - } else if (_c == QMetaObject::WriteProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: setIndentation(*reinterpret_cast< int*>(_v)); break; - case 1: setRootIsDecorated(*reinterpret_cast< bool*>(_v)); break; - case 2: setAlternatingRowColors(*reinterpret_cast< bool*>(_v)); break; - case 3: setHeaderVisible(*reinterpret_cast< bool*>(_v)); break; - case 4: setResizeMode(*reinterpret_cast< ResizeMode*>(_v)); break; - case 5: setSplitterPosition(*reinterpret_cast< int*>(_v)); break; - case 6: setPropertiesWithoutValueMarked(*reinterpret_cast< bool*>(_v)); break; - default: break; - } - _id -= 7; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 7; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } -#endif // QT_NO_PROPERTIES - return _id; -} - -// SIGNAL 0 -void QtTreePropertyBrowser::collapsed(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtTreePropertyBrowser::expanded(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtvariantproperty.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtvariantproperty.cpp deleted file mode 100644 index 0c5ded0..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/moc_qtvariantproperty.cpp +++ /dev/null @@ -1,367 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtvariantproperty.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtvariantproperty.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtvariantproperty.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtVariantPropertyManager_t { - QByteArrayData data[26]; - char stringdata[418]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtVariantPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtVariantPropertyManager_t qt_meta_stringdata_QtVariantPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 24), -QT_MOC_LITERAL(1, 25, 12), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 8), -QT_MOC_LITERAL(5, 60, 3), -QT_MOC_LITERAL(6, 64, 16), -QT_MOC_LITERAL(7, 81, 9), -QT_MOC_LITERAL(8, 91, 8), -QT_MOC_LITERAL(9, 100, 12), -QT_MOC_LITERAL(10, 113, 5), -QT_MOC_LITERAL(11, 119, 16), -QT_MOC_LITERAL(12, 136, 16), -QT_MOC_LITERAL(13, 153, 21), -QT_MOC_LITERAL(14, 175, 19), -QT_MOC_LITERAL(15, 195, 17), -QT_MOC_LITERAL(16, 213, 19), -QT_MOC_LITERAL(17, 233, 21), -QT_MOC_LITERAL(18, 255, 20), -QT_MOC_LITERAL(19, 276, 20), -QT_MOC_LITERAL(20, 297, 15), -QT_MOC_LITERAL(21, 313, 20), -QT_MOC_LITERAL(22, 334, 19), -QT_MOC_LITERAL(23, 354, 22), -QT_MOC_LITERAL(24, 377, 20), -QT_MOC_LITERAL(25, 398, 19) - }, - "QtVariantPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0attributeChanged\0" - "attribute\0setValue\0setAttribute\0value\0" - "slotValueChanged\0slotRangeChanged\0" - "slotSingleStepChanged\0slotDecimalsChanged\0" - "slotRegExpChanged\0slotEchoModeChanged\0" - "slotConstraintChanged\0slotEnumNamesChanged\0" - "slotEnumIconsChanged\0QMap\0" - "slotFlagNamesChanged\0slotReadOnlyChanged\0" - "slotTextVisibleChanged\0slotPropertyInserted\0" - "slotPropertyRemoved" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtVariantPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 43, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 229, 2, 0x06 /* Public */, - 6, 3, 234, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 241, 2, 0x0a /* Public */, - 9, 3, 246, 2, 0x0a /* Public */, - 11, 2, 253, 2, 0x08 /* Private */, - 12, 3, 258, 2, 0x08 /* Private */, - 13, 2, 265, 2, 0x08 /* Private */, - 11, 2, 270, 2, 0x08 /* Private */, - 12, 3, 275, 2, 0x08 /* Private */, - 13, 2, 282, 2, 0x08 /* Private */, - 14, 2, 287, 2, 0x08 /* Private */, - 11, 2, 292, 2, 0x08 /* Private */, - 11, 2, 297, 2, 0x08 /* Private */, - 15, 2, 302, 2, 0x08 /* Private */, - 16, 2, 307, 2, 0x08 /* Private */, - 11, 2, 312, 2, 0x08 /* Private */, - 12, 3, 317, 2, 0x08 /* Private */, - 11, 2, 324, 2, 0x08 /* Private */, - 11, 2, 329, 2, 0x08 /* Private */, - 11, 2, 334, 2, 0x08 /* Private */, - 11, 2, 339, 2, 0x08 /* Private */, - 11, 2, 344, 2, 0x08 /* Private */, - 11, 2, 349, 2, 0x08 /* Private */, - 11, 2, 354, 2, 0x08 /* Private */, - 11, 2, 359, 2, 0x08 /* Private */, - 12, 3, 364, 2, 0x08 /* Private */, - 11, 2, 371, 2, 0x08 /* Private */, - 12, 3, 376, 2, 0x08 /* Private */, - 11, 2, 383, 2, 0x08 /* Private */, - 17, 2, 388, 2, 0x08 /* Private */, - 11, 2, 393, 2, 0x08 /* Private */, - 17, 2, 398, 2, 0x08 /* Private */, - 11, 2, 403, 2, 0x08 /* Private */, - 18, 2, 408, 2, 0x08 /* Private */, - 19, 2, 413, 2, 0x08 /* Private */, - 11, 2, 418, 2, 0x08 /* Private */, - 11, 2, 423, 2, 0x08 /* Private */, - 11, 2, 428, 2, 0x08 /* Private */, - 21, 2, 433, 2, 0x08 /* Private */, - 22, 2, 438, 2, 0x08 /* Private */, - 23, 2, 443, 2, 0x08 /* Private */, - 24, 3, 448, 2, 0x08 /* Private */, - 25, 2, 455, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, QMetaType::QVariant, 4, 7, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, QMetaType::QVariant, 4, 7, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 20, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 0x80000000 | 3, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 2, 2, - - 0 // eod -}; - -void QtVariantPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtVariantPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 1: _t->attributeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QVariant(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 3: _t->setAttribute((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QVariant(*)>(_a[3]))); break; - case 4: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 6: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 8: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 9: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 10: _t->d_func()->slotDecimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 11: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 12: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 13: _t->d_func()->slotRegExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 14: _t->d_func()->slotEchoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 15: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 16: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 17: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 18: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 19: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 20: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 21: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 22: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 23: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 24: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 25: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 26: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 27: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 28: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 29: _t->d_func()->slotConstraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 30: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 31: _t->d_func()->slotConstraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 32: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 33: _t->d_func()->slotEnumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 34: _t->d_func()->slotEnumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 35: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 36: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 37: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 38: _t->d_func()->slotFlagNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 39: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 40: _t->d_func()->slotTextVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 41: _t->d_func()->slotPropertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 42: _t->d_func()->slotPropertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtVariantPropertyManager::*_t)(QtProperty * , const QVariant & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtVariantPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtVariantPropertyManager::*_t)(QtProperty * , const QString & , const QVariant & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtVariantPropertyManager::attributeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtVariantPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtVariantPropertyManager.data, - qt_meta_data_QtVariantPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtVariantPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtVariantPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtVariantPropertyManager.stringdata)) - return static_cast(const_cast< QtVariantPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtVariantPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 43) - qt_static_metacall(this, _c, _id, _a); - _id -= 43; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 43) - *reinterpret_cast(_a[0]) = -1; - _id -= 43; - } - return _id; -} - -// SIGNAL 0 -void QtVariantPropertyManager::valueChanged(QtProperty * _t1, const QVariant & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtVariantPropertyManager::attributeChanged(QtProperty * _t1, const QString & _t2, const QVariant & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtVariantEditorFactory_t { - QByteArrayData data[1]; - char stringdata[23]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtVariantEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtVariantEditorFactory_t qt_meta_stringdata_QtVariantEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 22) - }, - "QtVariantEditorFactory" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtVariantEditorFactory[] = { - - // 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 QtVariantEditorFactory::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 QtVariantEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtVariantEditorFactory.data, - qt_meta_data_QtVariantEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtVariantEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtVariantEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtVariantEditorFactory.stringdata)) - return static_cast(const_cast< QtVariantEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtVariantEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.cpp deleted file mode 100644 index bc61bc3..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.cpp +++ /dev/null @@ -1,452 +0,0 @@ -/**************************************************************************** -** Resource object code -** -** Created by: The Resource Compiler for Qt version 5.3.1 -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include - -static const unsigned char qt_resource_data[] = { - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeb.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x20,0xc, - 0x56,0xad,0x6a,0x0,0xd3,0x53,0x43,0x21,0xb4,0x2a,0x94,0xe6,0x84,0xd2,0x8c,0x50, - 0x9a,0x15,0x4a,0x8b,0xaa,0x42,0xe8,0x10,0x4e,0x10,0xbd,0x80,0x31,0x80,0x9,0x44, - 0xcf,0x60,0x75,0x0,0x8b,0x4e,0x13,0x85,0x98,0x3a,0x35,0x4,0x4a,0x7,0x40,0xe9, - 0x8,0x28,0x1d,0xc6,0x80,0x62,0x1b,0xcc,0x76,0xfc,0x0,0x0,0x20,0x6c,0x12,0x3d, - 0x8,0xc,0xcf,0x6a,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeall.png - 0x0,0x0,0x0,0xae, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x53,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x5c,0xb,0x20,0xb4,0x66,0x6,0x84,0x5e,0x1a,0x5,0xa6,0x98,0xa6,0x86,0x35,0x80, - 0xe9,0xd0,0x50,0x30,0xad,0xc1,0xe8,0xa0,0x1,0xa2,0x97,0x30,0x3a,0x48,0x81,0x84, - 0xa7,0x30,0x3a,0x88,0x1,0x25,0xb8,0x42,0x18,0x1d,0x44,0x81,0x26,0x70,0x86,0x2, - 0x41,0x2,0x82,0x86,0x89,0xc3,0xd4,0xc1,0xf4,0xc1,0xcd,0x81,0x99,0xb,0xb3,0x7, - 0x66,0x2f,0xdc,0x1d,0x30,0x77,0x61,0x5,0x0,0xdb,0x74,0x15,0xc3,0xaa,0xe7,0x4e, - 0x58,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-ibeam.png - 0x0,0x0,0x0,0x7c, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x21,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0xc0,0x0, - 0x22,0x8c,0xe,0x60,0x9a,0x91,0x5,0x2a,0x10,0x40,0x1b,0x9a,0x33,0x8c,0x34,0xf5, - 0x30,0xf7,0xc0,0xdc,0x87,0x2,0x0,0x5e,0x9d,0x6,0x14,0x54,0xdc,0x17,0x3,0x0, - 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizef.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0xd7,0x63,0x60,0x20,0x4, - 0x56,0xad,0x6a,0x0,0xd3,0x53,0x43,0xa1,0x74,0x18,0x44,0x7c,0x6a,0x4,0x94,0xe, - 0x80,0xd2,0x21,0x10,0x7a,0x9a,0x28,0x84,0x9e,0xc1,0xea,0x0,0xa6,0x17,0x30,0x6, - 0x30,0x41,0x74,0x86,0x70,0x42,0x68,0x51,0x55,0x8,0xcd,0xa,0x35,0x91,0x11,0x4a, - 0x73,0x42,0x69,0xd5,0x50,0x54,0x1b,0x61,0x2e,0xc0,0x7,0x0,0x24,0x2c,0x12,0x3d, - 0xcf,0x2,0x9,0x27,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-closedhand.png - 0x0,0x0,0x0,0x93, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x4,0x0,0x0,0x0,0xb5,0xfa,0x37,0xea, - 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x89,0x0,0x0,0xb,0x89, - 0x1,0x37,0xc9,0xcb,0xad,0x0,0x0,0x0,0x45,0x49,0x44,0x41,0x54,0x28,0xcf,0xad, - 0xd1,0xcb,0xa,0x0,0x20,0x8,0x44,0xd1,0xf9,0xff,0x9f,0xbe,0x2d,0x24,0x70,0x7a, - 0x53,0x19,0xba,0xe9,0x80,0xa2,0x42,0xeb,0xa7,0x7f,0x40,0x8,0xaf,0x6,0x4,0x80, - 0xd7,0x40,0x6,0x72,0x28,0x32,0xb7,0x60,0x84,0x94,0x27,0x98,0x83,0xd1,0xe7,0x1, - 0xd8,0xc,0xd9,0x80,0x9e,0xd4,0x4d,0xd8,0xce,0x5e,0xc1,0xe5,0xb1,0xa,0x94,0xc, - 0x50,0xbe,0xf5,0x9f,0x96,0xe7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-busy.png - 0x0,0x0,0x0,0xc9, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x2,0x3,0x0,0x0,0x0,0xe,0x14,0x92,0x67, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x6e,0x49,0x44,0x41,0x54,0x78,0x5e,0xad,0xcd,0xb1,0xd, - 0x85,0x30,0x10,0x3,0x50,0xa7,0xb9,0xd,0x7e,0x1,0xd3,0xdc,0x8,0x29,0x7e,0x36, - 0x88,0x90,0x8e,0x69,0xd2,0xd2,0x7,0xa4,0x64,0x4a,0xb0,0x8e,0xdb,0x0,0x57,0x4f, - 0x2e,0x6c,0x28,0xde,0xe4,0x40,0xd,0x58,0x60,0xd7,0x40,0xb,0x74,0xfc,0x4a,0x21, - 0x6,0xd6,0x39,0x88,0xa9,0x6c,0x88,0x26,0xb3,0x13,0xe7,0xdf,0x61,0x1d,0xb2,0x71, - 0xb5,0x1a,0xd2,0xc1,0x89,0x6c,0xc0,0xc6,0x51,0x5d,0x15,0xb,0x98,0x7,0x7e,0x23, - 0x2d,0xcd,0xe6,0x90,0xab,0x13,0x49,0xe5,0x20,0x0,0xee,0x38,0xf8,0xc5,0xf8,0x7b, - 0x34,0xdf,0xe7,0x6,0xac,0xb8,0x1e,0xf1,0xed,0x75,0x34,0x8c,0x0,0x0,0x0,0x0, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-cross.png - 0x0,0x0,0x0,0x82, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x27,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0xc0,0xd, - 0x1c,0x20,0x14,0xe3,0x4,0xb2,0xe8,0xd0,0x10,0xd6,0x50,0xa0,0x9,0x8c,0xab,0x56, - 0x70,0xad,0x9a,0x80,0xe0,0x93,0x6d,0x1e,0xdc,0x3d,0x58,0x1,0x0,0x4b,0xf4,0xd, - 0x8c,0xd6,0x20,0x22,0xab,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeh.png - 0x0,0x0,0x0,0x91, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x36,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xa0,0x14, - 0x68,0x30,0x30,0x70,0x81,0xe8,0x25,0xc,0xc,0x6c,0xd,0xc,0xc,0x4c,0x53,0x18, - 0x18,0x58,0x17,0x0,0xc5,0x42,0x80,0x74,0x6,0x3,0x3,0x67,0x28,0x10,0x44,0x20, - 0x68,0x98,0x38,0x4c,0x1d,0x4c,0x1f,0xdc,0x1c,0xf2,0x0,0x0,0xd3,0x23,0xa,0x2f, - 0x9a,0xc3,0x39,0x37,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-forbidden.png - 0x0,0x0,0x0,0xc7, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x6c,0x49,0x44,0x41,0x54,0x78,0x5e,0x75,0xce,0xb1,0xd, - 0x43,0x31,0x8,0x4,0x50,0xbb,0x20,0x1b,0x84,0x79,0x9c,0xd,0x5c,0xe4,0xa7,0x60, - 0x83,0xcf,0x34,0x2e,0x9c,0x4c,0x60,0x22,0xc1,0x94,0xf1,0x45,0xa2,0x8a,0x42,0xf3, - 0xa,0xd0,0x1d,0xe5,0xff,0x5c,0x8f,0x6,0xaa,0xc4,0x1d,0x52,0x84,0x41,0xf6,0x87, - 0x63,0x21,0x4f,0xd2,0xbe,0x55,0x2b,0x32,0xf6,0xd9,0xe9,0x8d,0xe7,0xd6,0xb5,0x5f, - 0xd6,0xd6,0x64,0x12,0x5c,0x6c,0xf5,0x2b,0xf9,0xd,0x5a,0xd5,0x3,0x7a,0x91,0x17, - 0x3c,0x1b,0xbf,0x27,0x72,0x3a,0xc5,0xc8,0xdc,0xec,0xc9,0xde,0xfc,0x23,0xff,0xfa, - 0x99,0xf,0x85,0x37,0x24,0x14,0xff,0x2f,0x73,0xcf,0x0,0x0,0x0,0x0,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-hand.png - 0x0,0x0,0x0,0x9f, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x44,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0x60,0x10, - 0x61,0x80,0x80,0x4c,0x28,0x3d,0x8d,0x58,0x7a,0x1,0x94,0x8e,0x6a,0x80,0xd0,0x91, - 0x19,0x20,0x4a,0x63,0x5a,0x64,0x1a,0x98,0xb,0xa5,0xa7,0x4e,0xd,0xd,0x3,0xd1, - 0xaa,0xa1,0x10,0x9a,0x13,0x8d,0x66,0xa,0xd,0x8d,0x40,0xa6,0x19,0xa6,0x86,0x26, - 0xa0,0xd0,0xab,0x56,0x2d,0xc0,0x4a,0xa3,0x0,0x0,0x37,0xd6,0x1a,0x55,0x25,0x9d, - 0xd9,0x18,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-uparrow.png - 0x0,0x0,0x0,0x84, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x29,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x4c,0x2b,0x20,0x34,0x57,0x14,0x84,0xd6,0xc,0x6b,0x0,0xd3,0x4b,0x43,0x17,0x80, - 0xe9,0xa9,0xa1,0x9,0x10,0x89,0x0,0x86,0x81,0xa1,0x17,0x30,0x60,0x2,0x0,0xad, - 0xe7,0xa,0x42,0x37,0xd2,0x7e,0x32,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae, - 0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-openhand.png - 0x0,0x0,0x0,0xa0, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x4,0x0,0x0,0x0,0xb5,0xfa,0x37,0xea, - 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x89,0x0,0x0,0xb,0x89, - 0x1,0x37,0xc9,0xcb,0xad,0x0,0x0,0x0,0x52,0x49,0x44,0x41,0x54,0x28,0xcf,0x85, - 0xd0,0xe1,0xe,0x0,0x10,0x8,0x85,0xd1,0xef,0xfd,0x5f,0xfa,0xfa,0x81,0x74,0x57, - 0x96,0x26,0x9b,0xe,0x1a,0x44,0xe,0x84,0xea,0x4e,0x14,0x90,0x74,0xeb,0x6,0x5e, - 0x61,0xaf,0x27,0xcf,0x60,0x4f,0x23,0x39,0x23,0xe5,0x56,0x2a,0x88,0x7e,0xae,0xf5, - 0x11,0xc0,0xdf,0x57,0x61,0x60,0x27,0xca,0x2d,0x24,0xf2,0x5,0x7f,0x32,0x0,0x64, - 0x5f,0x3d,0x80,0x4a,0xec,0xab,0x3b,0xd2,0x80,0x3e,0x16,0x78,0x30,0x74,0x9a,0xaf, - 0x1e,0xaa,0x62,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-vsplit.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0xd, - 0x14,0xa0,0xf4,0xc,0x8,0xc5,0x14,0x6,0xa1,0x39,0x43,0x1b,0xc0,0xb4,0x6a,0x68, - 0x2,0x98,0xe6,0x9a,0x5,0xe1,0x33,0x8,0x80,0x8,0xa6,0x55,0xab,0x66,0xad,0x5a, - 0x5,0x52,0x5,0x2,0xd,0x70,0x1a,0x1d,0x60,0x91,0x7,0xeb,0x47,0x98,0x7,0x33, - 0x1f,0x66,0x1f,0xcc,0x7e,0x98,0x7b,0xe0,0xee,0x3,0x1,0x0,0x56,0x7,0x14,0x5, - 0x94,0xb6,0xb7,0x4f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizev.png - 0x0,0x0,0x0,0x8d, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x32,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x4c,0x2b,0x20,0x34,0x57,0x14,0x84,0xd6,0xc,0x6b,0x0,0xd3,0x4b,0x43,0x17,0x80, - 0xe9,0xa9,0xa1,0x9,0x10,0x89,0x0,0x8,0x45,0x6d,0x1a,0x66,0x3e,0xcc,0x3e,0x98, - 0xfd,0x30,0xf7,0xc0,0xdc,0x87,0x2,0x0,0x34,0xf9,0xd,0x53,0x76,0x91,0x98,0xee, - 0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-hsplit.png - 0x0,0x0,0x0,0x9b, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x40,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x80,0x3, - 0x2e,0x2e,0x8,0xad,0xca,0xda,0x40,0xa,0xcd,0xa1,0xca,0xda,0x4,0xa2,0xd5,0x54, - 0x59,0x3b,0x41,0x2,0xd3,0x80,0x74,0x2,0x3,0x3,0x53,0x18,0x90,0x8e,0x60,0x60, - 0xe0,0xc,0xd,0x65,0xd,0xd,0x43,0xf0,0x61,0xf2,0x70,0xf5,0x30,0xfd,0xa4,0xda, - 0xb,0x77,0x2f,0x18,0x0,0x0,0xac,0x50,0x13,0xb6,0xd7,0xdc,0xaa,0xe9,0x0,0x0, - 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-arrow.png - 0x0,0x0,0x0,0xab, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x50,0x49,0x44,0x41,0x54,0x78,0x5e,0x3d,0xce,0xb1,0xd, - 0x80,0x30,0xc,0x5,0xd1,0xa4,0x80,0x1d,0xd8,0xe6,0xf,0x41,0x22,0x39,0xb5,0xb3, - 0x4f,0x68,0xd8,0x81,0x2d,0x89,0x9c,0x83,0x6b,0x5e,0x63,0x4b,0x3f,0xfd,0x6d,0xb8, - 0xb,0x7,0x3a,0x1a,0x56,0x2d,0xcb,0x40,0x47,0xc3,0xaa,0x65,0x19,0xe8,0xcb,0xf6, - 0x84,0xd5,0xce,0xb0,0x71,0xdf,0x6f,0x85,0x17,0xaa,0xc7,0x5f,0x4e,0xd3,0xe8,0x70, - 0xc4,0x6f,0x59,0xd6,0x84,0x5e,0x5d,0x49,0x11,0xba,0xf,0x75,0x5a,0x95,0x0,0x0, - 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-wait.png - 0x0,0x0,0x0,0xac, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x51,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x40,0x7, - 0x52,0xab,0x56,0xad,0x4,0xd3,0xa1,0xa1,0x99,0xc8,0x7c,0xb6,0xd0,0xd0,0x14,0x14, - 0x3a,0x72,0x26,0x84,0xe,0x4b,0x85,0xd0,0x53,0xa7,0x2e,0x1,0xd1,0x8c,0x4b,0xc3, - 0x26,0x80,0xd,0xca,0x9c,0xe5,0x0,0x31,0x30,0x13,0x62,0x70,0x66,0x94,0x3,0x44, - 0x7e,0xda,0x4,0x88,0xfa,0xd0,0x25,0x10,0xf3,0xa6,0xa2,0x9a,0x3,0x33,0x37,0x2d, - 0x2d,0x5,0x9f,0x7b,0x50,0x1,0x0,0xa7,0xcc,0x1d,0xf4,0xaf,0x59,0xb,0x18,0x0, - 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-whatsthis.png - 0x0,0x0,0x0,0xbf, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x2,0x3,0x0,0x0,0x0,0xe,0x14,0x92,0x67, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x64,0x49,0x44,0x41,0x54,0x18,0x57,0x63,0x68,0x60,0x80, - 0x82,0x5,0xc,0xc,0xa1,0x21,0x20,0xc6,0xc,0x6,0xc6,0x55,0x2b,0x41,0x8c,0x69, - 0xc,0x6c,0x53,0xb3,0x1c,0x80,0x8c,0xa9,0xd,0x52,0x13,0x20,0x8c,0x4,0x18,0x23, - 0x2,0xc6,0x8,0x83,0x31,0x42,0x5b,0x1d,0xc1,0xba,0xa6,0x86,0x26,0xb0,0x2d,0x1, - 0x33,0xa2,0x56,0x48,0x4d,0x0,0x9b,0x13,0xc1,0x0,0x61,0xcc,0x98,0x6,0x65,0x2c, - 0x80,0x31,0x1a,0x54,0x1b,0x44,0x3,0xc0,0xd6,0xab,0x36,0x40,0x44,0x18,0x38,0x13, - 0xe0,0xc,0xa8,0x14,0x53,0x3,0xc3,0x80,0x1,0x0,0x24,0xf4,0x1f,0xdd,0x57,0x8f, - 0x2f,0x71,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - -}; - -static const unsigned char qt_resource_name[] = { - // qt-project.org - 0x0,0xe, - 0x5,0x28,0x6c,0x87, - 0x0,0x71, - 0x0,0x74,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x2e,0x0,0x6f,0x0,0x72,0x0,0x67, - // qtpropertybrowser - 0x0,0x11, - 0x4,0xad,0x0,0x62, - 0x0,0x71, - 0x0,0x74,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x65,0x0,0x72, - - // images - 0x0,0x6, - 0x7,0x3,0x7d,0xc3, - 0x0,0x69, - 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, - // cursor-sizeb.png - 0x0,0x10, - 0x4,0x65,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizeall.png - 0x0,0x12, - 0x8,0x9,0x1f,0x87, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e, - 0x0,0x67, - // cursor-ibeam.png - 0x0,0x10, - 0xf,0xb0,0x9a,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x61,0x0,0x6d,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizef.png - 0x0,0x10, - 0x4,0x69,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-closedhand.png - 0x0,0x15, - 0x8,0xe,0x3a,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64, - 0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-busy.png - 0x0,0xf, - 0xf,0xe9,0x5b,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x73,0x0,0x79,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-cross.png - 0x0,0x10, - 0x2,0x76,0x90,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizeh.png - 0x0,0x10, - 0x4,0x6b,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x68,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-forbidden.png - 0x0,0x14, - 0x2,0x39,0xe9,0x87, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e, - 0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-hand.png - 0x0,0xf, - 0x7,0xa,0x5b,0xa7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-uparrow.png - 0x0,0x12, - 0x9,0x44,0xef,0xc7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e, - 0x0,0x67, - // cursor-openhand.png - 0x0,0x13, - 0x7,0xab,0x44,0xa7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x70, - 0x0,0x6e,0x0,0x67, - // cursor-vsplit.png - 0x0,0x11, - 0xe,0x5,0xc5,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x76,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - - // cursor-sizev.png - 0x0,0x10, - 0x4,0x19,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x76,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-hsplit.png - 0x0,0x11, - 0xe,0xb,0x85,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x68,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - - // cursor-arrow.png - 0x0,0x10, - 0xd,0xba,0x94,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-wait.png - 0x0,0xf, - 0x7,0x4a,0x55,0xc7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-whatsthis.png - 0x0,0x14, - 0x6,0xbe,0x82,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x77,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x2e, - 0x0,0x70,0x0,0x6e,0x0,0x67, - -}; - -static const unsigned char qt_resource_struct[] = { - // : - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, - // :/qt-project.org - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, - // :/qt-project.org/qtpropertybrowser - 0x0,0x0,0x0,0x22,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, - // :/qt-project.org/qtpropertybrowser/images - 0x0,0x0,0x0,0x4a,0x0,0x2,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x4, - // :/qt-project.org/qtpropertybrowser/images/cursor-forbidden.png - 0x0,0x0,0x1,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0xfb, - // :/qt-project.org/qtpropertybrowser/images/cursor-cross.png - 0x0,0x0,0x1,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xe0, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizev.png - 0x0,0x0,0x2,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0x3a, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeb.png - 0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizef.png - 0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xd7, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeh.png - 0x0,0x0,0x1,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x66, - // :/qt-project.org/qtpropertybrowser/images/cursor-whatsthis.png - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0xc9, - // :/qt-project.org/qtpropertybrowser/images/cursor-hand.png - 0x0,0x0,0x1,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xc6, - // :/qt-project.org/qtpropertybrowser/images/cursor-wait.png - 0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x19, - // :/qt-project.org/qtpropertybrowser/images/cursor-openhand.png - 0x0,0x0,0x2,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6,0xf1, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeall.png - 0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5, - // :/qt-project.org/qtpropertybrowser/images/cursor-closedhand.png - 0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0x7c, - // :/qt-project.org/qtpropertybrowser/images/cursor-uparrow.png - 0x0,0x0,0x1,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6,0x69, - // :/qt-project.org/qtpropertybrowser/images/cursor-arrow.png - 0x0,0x0,0x2,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0x6a, - // :/qt-project.org/qtpropertybrowser/images/cursor-vsplit.png - 0x0,0x0,0x2,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7,0x95, - // :/qt-project.org/qtpropertybrowser/images/cursor-hsplit.png - 0x0,0x0,0x2,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0xcb, - // :/qt-project.org/qtpropertybrowser/images/cursor-ibeam.png - 0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x57, - // :/qt-project.org/qtpropertybrowser/images/cursor-busy.png - 0x0,0x0,0x1,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0x13, - -}; - -QT_BEGIN_NAMESPACE - -extern Q_CORE_EXPORT bool qRegisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -extern Q_CORE_EXPORT bool qUnregisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -QT_END_NAMESPACE - - -int QT_MANGLE_NAMESPACE(qInitResources_qtpropertybrowser)() -{ - QT_PREPEND_NAMESPACE(qRegisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_qtpropertybrowser)) - -int QT_MANGLE_NAMESPACE(qCleanupResources_qtpropertybrowser)() -{ - QT_PREPEND_NAMESPACE(qUnregisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_qtpropertybrowser)) - diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.o deleted file mode 100644 index 623ceec..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qrc_qtpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtbuttonpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtbuttonpropertybrowser.o deleted file mode 100644 index 7e136f6..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtbuttonpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.moc deleted file mode 100644 index 0efbfaf..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.moc +++ /dev/null @@ -1,371 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qteditorfactory.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qteditorfactory.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtCharEdit_t { - QByteArrayData data[6]; - char stringdata[54]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharEdit_t qt_meta_stringdata_QtCharEdit = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 12), -QT_MOC_LITERAL(2, 24, 0), -QT_MOC_LITERAL(3, 25, 5), -QT_MOC_LITERAL(4, 31, 8), -QT_MOC_LITERAL(5, 40, 13) - }, - "QtCharEdit\0valueChanged\0\0value\0setValue\0" - "slotClearChar" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QChar, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QChar, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtCharEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 2: _t->slotClearChar(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCharEdit::*_t)(const QChar & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCharEdit::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCharEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtCharEdit.data, - qt_meta_data_QtCharEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharEdit.stringdata)) - return static_cast(const_cast< QtCharEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtCharEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtCharEdit::valueChanged(const QChar & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtColorEditWidget_t { - QByteArrayData data[6]; - char stringdata[61]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorEditWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorEditWidget_t qt_meta_stringdata_QtColorEditWidget = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 12), -QT_MOC_LITERAL(2, 31, 0), -QT_MOC_LITERAL(3, 32, 5), -QT_MOC_LITERAL(4, 38, 8), -QT_MOC_LITERAL(5, 47, 13) - }, - "QtColorEditWidget\0valueChanged\0\0value\0" - "setValue\0buttonClicked" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorEditWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QColor, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QColor, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtColorEditWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorEditWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - case 2: _t->buttonClicked(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtColorEditWidget::*_t)(const QColor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtColorEditWidget::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtColorEditWidget::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtColorEditWidget.data, - qt_meta_data_QtColorEditWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorEditWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorEditWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorEditWidget.stringdata)) - return static_cast(const_cast< QtColorEditWidget*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtColorEditWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtColorEditWidget::valueChanged(const QColor & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtFontEditWidget_t { - QByteArrayData data[6]; - char stringdata[60]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontEditWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontEditWidget_t qt_meta_stringdata_QtFontEditWidget = { - { -QT_MOC_LITERAL(0, 0, 16), -QT_MOC_LITERAL(1, 17, 12), -QT_MOC_LITERAL(2, 30, 0), -QT_MOC_LITERAL(3, 31, 5), -QT_MOC_LITERAL(4, 37, 8), -QT_MOC_LITERAL(5, 46, 13) - }, - "QtFontEditWidget\0valueChanged\0\0value\0" - "setValue\0buttonClicked" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontEditWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QFont, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QFont, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtFontEditWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontEditWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - case 2: _t->buttonClicked(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFontEditWidget::*_t)(const QFont & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFontEditWidget::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtFontEditWidget::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtFontEditWidget.data, - qt_meta_data_QtFontEditWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontEditWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontEditWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontEditWidget.stringdata)) - return static_cast(const_cast< QtFontEditWidget*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtFontEditWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtFontEditWidget::valueChanged(const QFont & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.o deleted file mode 100644 index e787d0c..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qteditorfactory.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtgroupboxpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtgroupboxpropertybrowser.o deleted file mode 100644 index 993d65b..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtgroupboxpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowser.o deleted file mode 100644 index 421dc21..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowserutils.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowserutils.o deleted file mode 100644 index 7abcc7f..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertybrowserutils.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.moc deleted file mode 100644 index a8349e8..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.moc +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertymanager.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertymanager.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtMetaEnumWrapper_t { - QByteArrayData data[3]; - char stringdata[45]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtMetaEnumWrapper_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtMetaEnumWrapper_t qt_meta_stringdata_QtMetaEnumWrapper = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 6), -QT_MOC_LITERAL(2, 25, 19) - }, - "QtMetaEnumWrapper\0policy\0QSizePolicy::Policy" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtMetaEnumWrapper[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 1, 14, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // properties: name, type, flags - 1, 0x80000000 | 2, 0x00095009, - - 0 // eod -}; - -void QtMetaEnumWrapper::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -static const QMetaObject * const qt_meta_extradata_QtMetaEnumWrapper[] = { - &QSizePolicy::staticMetaObject, - 0 -}; - -const QMetaObject QtMetaEnumWrapper::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtMetaEnumWrapper.data, - qt_meta_data_QtMetaEnumWrapper, qt_static_metacall, qt_meta_extradata_QtMetaEnumWrapper, 0} -}; - - -const QMetaObject *QtMetaEnumWrapper::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtMetaEnumWrapper::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtMetaEnumWrapper.stringdata)) - return static_cast(const_cast< QtMetaEnumWrapper*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtMetaEnumWrapper::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QObject::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - -#ifndef QT_NO_PROPERTIES - if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< QSizePolicy::Policy*>(_v) = policy(); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::WriteProperty) { - _id -= 1; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 1; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } -#endif // QT_NO_PROPERTIES - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.o deleted file mode 100644 index 6bb4624..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtpropertymanager.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.moc deleted file mode 100644 index 4867cdf..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.moc +++ /dev/null @@ -1,176 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qttreepropertybrowser.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qttreepropertybrowser.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtPropertyEditorView_t { - QByteArrayData data[1]; - char stringdata[21]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPropertyEditorView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPropertyEditorView_t qt_meta_stringdata_QtPropertyEditorView = { - { -QT_MOC_LITERAL(0, 0, 20) - }, - "QtPropertyEditorView" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPropertyEditorView[] = { - - // 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 QtPropertyEditorView::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 QtPropertyEditorView::staticMetaObject = { - { &QTreeWidget::staticMetaObject, qt_meta_stringdata_QtPropertyEditorView.data, - qt_meta_data_QtPropertyEditorView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPropertyEditorView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPropertyEditorView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPropertyEditorView.stringdata)) - return static_cast(const_cast< QtPropertyEditorView*>(this)); - return QTreeWidget::qt_metacast(_clname); -} - -int QtPropertyEditorView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTreeWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -struct qt_meta_stringdata_QtPropertyEditorDelegate_t { - QByteArrayData data[4]; - char stringdata[53]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPropertyEditorDelegate_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPropertyEditorDelegate_t qt_meta_stringdata_QtPropertyEditorDelegate = { - { -QT_MOC_LITERAL(0, 0, 24), -QT_MOC_LITERAL(1, 25, 19), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 6) - }, - "QtPropertyEditorDelegate\0slotEditorDestroyed\0" - "\0object" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPropertyEditorDelegate[] = { - - // 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, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, QMetaType::QObjectStar, 3, - - 0 // eod -}; - -void QtPropertyEditorDelegate::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPropertyEditorDelegate *_t = static_cast(_o); - switch (_id) { - case 0: _t->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtPropertyEditorDelegate::staticMetaObject = { - { &QItemDelegate::staticMetaObject, qt_meta_stringdata_QtPropertyEditorDelegate.data, - qt_meta_data_QtPropertyEditorDelegate, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPropertyEditorDelegate::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPropertyEditorDelegate::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPropertyEditorDelegate.stringdata)) - return static_cast(const_cast< QtPropertyEditorDelegate*>(this)); - return QItemDelegate::qt_metacast(_clname); -} - -int QtPropertyEditorDelegate::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QItemDelegate::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(_a[0]) = -1; - _id -= 1; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.o deleted file mode 100644 index 05ca7df..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qttreepropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtvariantproperty.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtvariantproperty.o deleted file mode 100644 index 93f8390..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/debug/qtvariantproperty.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtbuttonpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtbuttonpropertybrowser.cpp deleted file mode 100644 index 478498d..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtbuttonpropertybrowser.cpp +++ /dev/null @@ -1,161 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtbuttonpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtbuttonpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtbuttonpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtButtonPropertyBrowser_t { - QByteArrayData data[9]; - char stringdata[107]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtButtonPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtButtonPropertyBrowser_t qt_meta_stringdata_QtButtonPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 9), -QT_MOC_LITERAL(2, 34, 0), -QT_MOC_LITERAL(3, 35, 14), -QT_MOC_LITERAL(4, 50, 4), -QT_MOC_LITERAL(5, 55, 8), -QT_MOC_LITERAL(6, 64, 10), -QT_MOC_LITERAL(7, 75, 19), -QT_MOC_LITERAL(8, 95, 11) - }, - "QtButtonPropertyBrowser\0collapsed\0\0" - "QtBrowserItem*\0item\0expanded\0slotUpdate\0" - "slotEditorDestroyed\0slotToggled" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtButtonPropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 39, 2, 0x06 /* Public */, - 5, 1, 42, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 0, 45, 2, 0x08 /* Private */, - 7, 0, 46, 2, 0x08 /* Private */, - 8, 1, 47, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, QMetaType::Bool, 2, - - 0 // eod -}; - -void QtButtonPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtButtonPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->collapsed((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: _t->expanded((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotUpdate(); break; - case 3: _t->d_func()->slotEditorDestroyed(); break; - case 4: _t->d_func()->slotToggled((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtButtonPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtButtonPropertyBrowser::collapsed)) { - *result = 0; - } - } - { - typedef void (QtButtonPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtButtonPropertyBrowser::expanded)) { - *result = 1; - } - } - } -} - -const QMetaObject QtButtonPropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtButtonPropertyBrowser.data, - qt_meta_data_QtButtonPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtButtonPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtButtonPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtButtonPropertyBrowser.stringdata)) - return static_cast(const_cast< QtButtonPropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtButtonPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void QtButtonPropertyBrowser::collapsed(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtButtonPropertyBrowser::expanded(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qteditorfactory.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qteditorfactory.cpp deleted file mode 100644 index b0da414..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qteditorfactory.cpp +++ /dev/null @@ -1,1568 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qteditorfactory.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qteditorfactory.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qteditorfactory.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtSpinBoxFactory_t { - QByteArrayData data[9]; - char stringdata[142]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSpinBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSpinBoxFactory_t qt_meta_stringdata_QtSpinBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 16), -QT_MOC_LITERAL(1, 17, 19), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 16), -QT_MOC_LITERAL(5, 67, 21), -QT_MOC_LITERAL(6, 89, 19), -QT_MOC_LITERAL(7, 109, 12), -QT_MOC_LITERAL(8, 122, 19) - }, - "QtSpinBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotReadOnlyChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSpinBoxFactory[] = { - - // 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, 2, 44, 2, 0x08 /* Private */, - 4, 3, 49, 2, 0x08 /* Private */, - 5, 2, 56, 2, 0x08 /* Private */, - 6, 2, 61, 2, 0x08 /* Private */, - 7, 1, 66, 2, 0x08 /* Private */, - 8, 1, 69, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtSpinBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSpinBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 5: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtSpinBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtSpinBoxFactory.data, - qt_meta_data_QtSpinBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSpinBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSpinBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSpinBoxFactory.stringdata)) - return static_cast(const_cast< QtSpinBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtSpinBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} -struct qt_meta_stringdata_QtSliderFactory_t { - QByteArrayData data[8]; - char stringdata[121]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSliderFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSliderFactory_t qt_meta_stringdata_QtSliderFactory = { - { -QT_MOC_LITERAL(0, 0, 15), -QT_MOC_LITERAL(1, 16, 19), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 16), -QT_MOC_LITERAL(5, 66, 21), -QT_MOC_LITERAL(6, 88, 12), -QT_MOC_LITERAL(7, 101, 19) - }, - "QtSliderFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSliderFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 3, 44, 2, 0x08 /* Private */, - 5, 2, 51, 2, 0x08 /* Private */, - 6, 1, 56, 2, 0x08 /* Private */, - 7, 1, 59, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtSliderFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSliderFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtSliderFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtSliderFactory.data, - qt_meta_data_QtSliderFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSliderFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSliderFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSliderFactory.stringdata)) - return static_cast(const_cast< QtSliderFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtSliderFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtScrollBarFactory_t { - QByteArrayData data[8]; - char stringdata[124]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtScrollBarFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtScrollBarFactory_t qt_meta_stringdata_QtScrollBarFactory = { - { -QT_MOC_LITERAL(0, 0, 18), -QT_MOC_LITERAL(1, 19, 19), -QT_MOC_LITERAL(2, 39, 0), -QT_MOC_LITERAL(3, 40, 11), -QT_MOC_LITERAL(4, 52, 16), -QT_MOC_LITERAL(5, 69, 21), -QT_MOC_LITERAL(6, 91, 12), -QT_MOC_LITERAL(7, 104, 19) - }, - "QtScrollBarFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtScrollBarFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 3, 44, 2, 0x08 /* Private */, - 5, 2, 51, 2, 0x08 /* Private */, - 6, 1, 56, 2, 0x08 /* Private */, - 7, 1, 59, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtScrollBarFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtScrollBarFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtScrollBarFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtScrollBarFactory.data, - qt_meta_data_QtScrollBarFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtScrollBarFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtScrollBarFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtScrollBarFactory.stringdata)) - return static_cast(const_cast< QtScrollBarFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtScrollBarFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtCheckBoxFactory_t { - QByteArrayData data[7]; - char stringdata[107]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCheckBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCheckBoxFactory_t qt_meta_stringdata_QtCheckBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 22), -QT_MOC_LITERAL(5, 74, 12), -QT_MOC_LITERAL(6, 87, 19) - }, - "QtCheckBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotTextVisibleChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCheckBoxFactory[] = { - - // 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, 2, 34, 2, 0x08 /* Private */, - 4, 2, 39, 2, 0x08 /* Private */, - 5, 1, 44, 2, 0x08 /* Private */, - 6, 1, 47, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Bool, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCheckBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCheckBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 1: _t->d_func()->slotTextVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 3: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCheckBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCheckBoxFactory.data, - qt_meta_data_QtCheckBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCheckBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCheckBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCheckBoxFactory.stringdata)) - return static_cast(const_cast< QtCheckBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCheckBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} -struct qt_meta_stringdata_QtDoubleSpinBoxFactory_t { - QByteArrayData data[10]; - char stringdata[168]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDoubleSpinBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDoubleSpinBoxFactory_t qt_meta_stringdata_QtDoubleSpinBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 19), -QT_MOC_LITERAL(2, 43, 0), -QT_MOC_LITERAL(3, 44, 11), -QT_MOC_LITERAL(4, 56, 16), -QT_MOC_LITERAL(5, 73, 21), -QT_MOC_LITERAL(6, 95, 19), -QT_MOC_LITERAL(7, 115, 19), -QT_MOC_LITERAL(8, 135, 12), -QT_MOC_LITERAL(9, 148, 19) - }, - "QtDoubleSpinBoxFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSingleStepChanged\0slotDecimalsChanged\0" - "slotReadOnlyChanged\0slotSetValue\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDoubleSpinBoxFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 7, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 49, 2, 0x08 /* Private */, - 4, 3, 54, 2, 0x08 /* Private */, - 5, 2, 61, 2, 0x08 /* Private */, - 6, 2, 66, 2, 0x08 /* Private */, - 7, 2, 71, 2, 0x08 /* Private */, - 8, 1, 76, 2, 0x08 /* Private */, - 9, 1, 79, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::Double, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDoubleSpinBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDoubleSpinBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 3: _t->d_func()->slotDecimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotSetValue((*reinterpret_cast< double(*)>(_a[1]))); break; - case 6: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDoubleSpinBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDoubleSpinBoxFactory.data, - qt_meta_data_QtDoubleSpinBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDoubleSpinBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDoubleSpinBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDoubleSpinBoxFactory.stringdata)) - return static_cast(const_cast< QtDoubleSpinBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDoubleSpinBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 7) - qt_static_metacall(this, _c, _id, _a); - _id -= 7; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } - return _id; -} -struct qt_meta_stringdata_QtLineEditFactory_t { - QByteArrayData data[9]; - char stringdata[142]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtLineEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtLineEditFactory_t qt_meta_stringdata_QtLineEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 17), -QT_MOC_LITERAL(5, 69, 19), -QT_MOC_LITERAL(6, 89, 19), -QT_MOC_LITERAL(7, 109, 12), -QT_MOC_LITERAL(8, 122, 19) - }, - "QtLineEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRegExpChanged\0" - "slotEchoModeChanged\0slotReadOnlyChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtLineEditFactory[] = { - - // 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, 2, 44, 2, 0x08 /* Private */, - 4, 2, 49, 2, 0x08 /* Private */, - 5, 2, 54, 2, 0x08 /* Private */, - 6, 2, 59, 2, 0x08 /* Private */, - 7, 1, 64, 2, 0x08 /* Private */, - 8, 1, 67, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, QMetaType::QString, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtLineEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtLineEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRegExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEchoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->d_func()->slotSetValue((*reinterpret_cast< const QString(*)>(_a[1]))); break; - case 5: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtLineEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtLineEditFactory.data, - qt_meta_data_QtLineEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtLineEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtLineEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtLineEditFactory.stringdata)) - return static_cast(const_cast< QtLineEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtLineEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} -struct qt_meta_stringdata_QtDateEditFactory_t { - QByteArrayData data[7]; - char stringdata[101]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateEditFactory_t qt_meta_stringdata_QtDateEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 16), -QT_MOC_LITERAL(5, 68, 12), -QT_MOC_LITERAL(6, 81, 19) - }, - "QtDateEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotRangeChanged\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateEditFactory[] = { - - // 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, 2, 34, 2, 0x08 /* Private */, - 4, 3, 39, 2, 0x08 /* Private */, - 5, 1, 46, 2, 0x08 /* Private */, - 6, 1, 49, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 2, 2, 2, - QMetaType::Void, QMetaType::QDate, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDateEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 1: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QDate(*)>(_a[1]))); break; - case 3: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDateEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDateEditFactory.data, - qt_meta_data_QtDateEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateEditFactory.stringdata)) - return static_cast(const_cast< QtDateEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDateEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} -struct qt_meta_stringdata_QtTimeEditFactory_t { - QByteArrayData data[6]; - char stringdata[84]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTimeEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTimeEditFactory_t qt_meta_stringdata_QtTimeEditFactory = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 19), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 12), -QT_MOC_LITERAL(5, 64, 19) - }, - "QtTimeEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTimeEditFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 2, 2, - QMetaType::Void, QMetaType::QTime, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtTimeEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTimeEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QTime(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtTimeEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtTimeEditFactory.data, - qt_meta_data_QtTimeEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTimeEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTimeEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTimeEditFactory.stringdata)) - return static_cast(const_cast< QtTimeEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtTimeEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtDateTimeEditFactory_t { - QByteArrayData data[6]; - char stringdata[88]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateTimeEditFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateTimeEditFactory_t qt_meta_stringdata_QtDateTimeEditFactory = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 19), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 12), -QT_MOC_LITERAL(5, 68, 19) - }, - "QtDateTimeEditFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateTimeEditFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 2, 2, - QMetaType::Void, QMetaType::QDateTime, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtDateTimeEditFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateTimeEditFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QDateTime(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtDateTimeEditFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtDateTimeEditFactory.data, - qt_meta_data_QtDateTimeEditFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateTimeEditFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateTimeEditFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateTimeEditFactory.stringdata)) - return static_cast(const_cast< QtDateTimeEditFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtDateTimeEditFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtKeySequenceEditorFactory_t { - QByteArrayData data[6]; - char stringdata[93]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequenceEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequenceEditorFactory_t qt_meta_stringdata_QtKeySequenceEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 26), -QT_MOC_LITERAL(1, 27, 19), -QT_MOC_LITERAL(2, 47, 0), -QT_MOC_LITERAL(3, 48, 11), -QT_MOC_LITERAL(4, 60, 12), -QT_MOC_LITERAL(5, 73, 19) - }, - "QtKeySequenceEditorFactory\0" - "slotPropertyChanged\0\0QtProperty*\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequenceEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 2, 2, - QMetaType::Void, QMetaType::QKeySequence, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtKeySequenceEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequenceEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtKeySequenceEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtKeySequenceEditorFactory.data, - qt_meta_data_QtKeySequenceEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequenceEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequenceEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequenceEditorFactory.stringdata)) - return static_cast(const_cast< QtKeySequenceEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtKeySequenceEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtCharEditorFactory_t { - QByteArrayData data[6]; - char stringdata[86]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharEditorFactory_t qt_meta_stringdata_QtCharEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 12), -QT_MOC_LITERAL(5, 66, 19) - }, - "QtCharEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 2, 2, - QMetaType::Void, QMetaType::QChar, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCharEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 1: _t->d_func()->slotSetValue((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCharEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCharEditorFactory.data, - qt_meta_data_QtCharEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharEditorFactory.stringdata)) - return static_cast(const_cast< QtCharEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCharEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtEnumEditorFactory_t { - QByteArrayData data[9]; - char stringdata[144]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtEnumEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtEnumEditorFactory_t qt_meta_stringdata_QtEnumEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 20), -QT_MOC_LITERAL(5, 74, 20), -QT_MOC_LITERAL(6, 95, 15), -QT_MOC_LITERAL(7, 111, 12), -QT_MOC_LITERAL(8, 124, 19) - }, - "QtEnumEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEnumNamesChanged\0" - "slotEnumIconsChanged\0QMap\0" - "slotSetValue\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtEnumEditorFactory[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x08 /* Private */, - 4, 2, 44, 2, 0x08 /* Private */, - 5, 2, 49, 2, 0x08 /* Private */, - 7, 1, 54, 2, 0x08 /* Private */, - 8, 1, 57, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 6, 2, 2, - QMetaType::Void, QMetaType::Int, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtEnumEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtEnumEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEnumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEnumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 3: _t->d_func()->slotSetValue((*reinterpret_cast< int(*)>(_a[1]))); break; - case 4: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtEnumEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtEnumEditorFactory.data, - qt_meta_data_QtEnumEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtEnumEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtEnumEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtEnumEditorFactory.stringdata)) - return static_cast(const_cast< QtEnumEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtEnumEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} -struct qt_meta_stringdata_QtCursorEditorFactory_t { - QByteArrayData data[6]; - char stringdata[91]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCursorEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCursorEditorFactory_t qt_meta_stringdata_QtCursorEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 19), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 15), -QT_MOC_LITERAL(5, 71, 19) - }, - "QtCursorEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEnumChanged\0" - "slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCursorEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 2, 34, 2, 0x08 /* Private */, - 5, 1, 39, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - - 0 // eod -}; - -void QtCursorEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCursorEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtCursorEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtCursorEditorFactory.data, - qt_meta_data_QtCursorEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCursorEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCursorEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCursorEditorFactory.stringdata)) - return static_cast(const_cast< QtCursorEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtCursorEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtColorEditorFactory_t { - QByteArrayData data[6]; - char stringdata[87]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorEditorFactory_t qt_meta_stringdata_QtColorEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 20), -QT_MOC_LITERAL(1, 21, 19), -QT_MOC_LITERAL(2, 41, 0), -QT_MOC_LITERAL(3, 42, 11), -QT_MOC_LITERAL(4, 54, 19), -QT_MOC_LITERAL(5, 74, 12) - }, - "QtColorEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEditorDestroyed\0" - "slotSetValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - QMetaType::Void, QMetaType::QColor, 2, - - 0 // eod -}; - -void QtColorEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtColorEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtColorEditorFactory.data, - qt_meta_data_QtColorEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorEditorFactory.stringdata)) - return static_cast(const_cast< QtColorEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtColorEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -struct qt_meta_stringdata_QtFontEditorFactory_t { - QByteArrayData data[6]; - char stringdata[86]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontEditorFactory_t qt_meta_stringdata_QtFontEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 19), -QT_MOC_LITERAL(1, 20, 19), -QT_MOC_LITERAL(2, 40, 0), -QT_MOC_LITERAL(3, 41, 11), -QT_MOC_LITERAL(4, 53, 19), -QT_MOC_LITERAL(5, 73, 12) - }, - "QtFontEditorFactory\0slotPropertyChanged\0" - "\0QtProperty*\0slotEditorDestroyed\0" - "slotSetValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontEditorFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 4, 1, 34, 2, 0x08 /* Private */, - 5, 1, 37, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 2, 2, - QMetaType::Void, QMetaType::QObjectStar, 2, - QMetaType::Void, QMetaType::QFont, 2, - - 0 // eod -}; - -void QtFontEditorFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontEditorFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotPropertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 1: _t->d_func()->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotSetValue((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtFontEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtFontEditorFactory.data, - qt_meta_data_QtFontEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontEditorFactory.stringdata)) - return static_cast(const_cast< QtFontEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtFontEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtgroupboxpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtgroupboxpropertybrowser.cpp deleted file mode 100644 index a802f12..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtgroupboxpropertybrowser.cpp +++ /dev/null @@ -1,114 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtgroupboxpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtgroupboxpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtgroupboxpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtGroupBoxPropertyBrowser_t { - QByteArrayData data[4]; - char stringdata[58]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtGroupBoxPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtGroupBoxPropertyBrowser_t qt_meta_stringdata_QtGroupBoxPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 10), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 19) - }, - "QtGroupBoxPropertyBrowser\0slotUpdate\0" - "\0slotEditorDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtGroupBoxPropertyBrowser[] = { - - // 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, 0, 24, 2, 0x08 /* Private */, - 3, 0, 25, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtGroupBoxPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtGroupBoxPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotUpdate(); break; - case 1: _t->d_func()->slotEditorDestroyed(); break; - default: ; - } - } - Q_UNUSED(_a); -} - -const QMetaObject QtGroupBoxPropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtGroupBoxPropertyBrowser.data, - qt_meta_data_QtGroupBoxPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtGroupBoxPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtGroupBoxPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtGroupBoxPropertyBrowser.stringdata)) - return static_cast(const_cast< QtGroupBoxPropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtGroupBoxPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowser.cpp deleted file mode 100644 index 7209aff..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowser.cpp +++ /dev/null @@ -1,417 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtAbstractPropertyManager_t { - QByteArrayData data[10]; - char stringdata[128]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractPropertyManager_t qt_meta_stringdata_QtAbstractPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 16), -QT_MOC_LITERAL(2, 43, 0), -QT_MOC_LITERAL(3, 44, 11), -QT_MOC_LITERAL(4, 56, 8), -QT_MOC_LITERAL(5, 65, 6), -QT_MOC_LITERAL(6, 72, 5), -QT_MOC_LITERAL(7, 78, 15), -QT_MOC_LITERAL(8, 94, 15), -QT_MOC_LITERAL(9, 110, 17) - }, - "QtAbstractPropertyManager\0propertyInserted\0" - "\0QtProperty*\0property\0parent\0after\0" - "propertyChanged\0propertyRemoved\0" - "propertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 3, 34, 2, 0x06 /* Public */, - 7, 1, 41, 2, 0x06 /* Public */, - 8, 2, 44, 2, 0x06 /* Public */, - 9, 1, 49, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 0x80000000 | 3, 4, 5, 6, - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 4, 5, - QMetaType::Void, 0x80000000 | 3, 4, - - 0 // eod -}; - -void QtAbstractPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->propertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 1: _t->propertyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 2: _t->propertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - case 3: _t->propertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * , QtProperty * , QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyInserted)) { - *result = 0; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyChanged)) { - *result = 1; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * , QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyRemoved)) { - *result = 2; - } - } - { - typedef void (QtAbstractPropertyManager::*_t)(QtProperty * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyManager::propertyDestroyed)) { - *result = 3; - } - } - } -} - -const QMetaObject QtAbstractPropertyManager::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtAbstractPropertyManager.data, - qt_meta_data_QtAbstractPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractPropertyManager.stringdata)) - return static_cast(const_cast< QtAbstractPropertyManager*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtAbstractPropertyManager::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 < 4) - qt_static_metacall(this, _c, _id, _a); - _id -= 4; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 4) - *reinterpret_cast(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtAbstractPropertyManager::propertyInserted(QtProperty * _t1, QtProperty * _t2, QtProperty * _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtAbstractPropertyManager::propertyChanged(QtProperty * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtAbstractPropertyManager::propertyRemoved(QtProperty * _t1, QtProperty * _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtAbstractPropertyManager::propertyDestroyed(QtProperty * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtAbstractEditorFactoryBase_t { - QByteArrayData data[4]; - char stringdata[54]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractEditorFactoryBase_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractEditorFactoryBase_t qt_meta_stringdata_QtAbstractEditorFactoryBase = { - { -QT_MOC_LITERAL(0, 0, 27), -QT_MOC_LITERAL(1, 28, 16), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 7) - }, - "QtAbstractEditorFactoryBase\0" - "managerDestroyed\0\0manager" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractEditorFactoryBase[] = { - - // 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, 0x09 /* Protected */, - - // slots: parameters - QMetaType::Void, QMetaType::QObjectStar, 3, - - 0 // eod -}; - -void QtAbstractEditorFactoryBase::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractEditorFactoryBase *_t = static_cast(_o); - switch (_id) { - case 0: _t->managerDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtAbstractEditorFactoryBase::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtAbstractEditorFactoryBase.data, - qt_meta_data_QtAbstractEditorFactoryBase, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractEditorFactoryBase::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractEditorFactoryBase::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractEditorFactoryBase.stringdata)) - return static_cast(const_cast< QtAbstractEditorFactoryBase*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtAbstractEditorFactoryBase::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 < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} -struct qt_meta_stringdata_QtAbstractPropertyBrowser_t { - QByteArrayData data[14]; - char stringdata[225]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtAbstractPropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtAbstractPropertyBrowser_t qt_meta_stringdata_QtAbstractPropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 18), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 14), -QT_MOC_LITERAL(4, 61, 11), -QT_MOC_LITERAL(5, 73, 11), -QT_MOC_LITERAL(6, 85, 8), -QT_MOC_LITERAL(7, 94, 14), -QT_MOC_LITERAL(8, 109, 13), -QT_MOC_LITERAL(9, 123, 14), -QT_MOC_LITERAL(10, 138, 20), -QT_MOC_LITERAL(11, 159, 19), -QT_MOC_LITERAL(12, 179, 21), -QT_MOC_LITERAL(13, 201, 23) - }, - "QtAbstractPropertyBrowser\0currentItemChanged\0" - "\0QtBrowserItem*\0addProperty\0QtProperty*\0" - "property\0insertProperty\0afterProperty\0" - "removeProperty\0slotPropertyInserted\0" - "slotPropertyRemoved\0slotPropertyDestroyed\0" - "slotPropertyDataChanged" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtAbstractPropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 57, 2, 0x0a /* Public */, - 7, 2, 60, 2, 0x0a /* Public */, - 9, 1, 65, 2, 0x0a /* Public */, - 10, 3, 68, 2, 0x08 /* Private */, - 11, 2, 75, 2, 0x08 /* Private */, - 12, 1, 80, 2, 0x08 /* Private */, - 13, 1, 83, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 2, - - // slots: parameters - 0x80000000 | 3, 0x80000000 | 5, 6, - 0x80000000 | 3, 0x80000000 | 5, 0x80000000 | 5, 6, 8, - QMetaType::Void, 0x80000000 | 5, 6, - QMetaType::Void, 0x80000000 | 5, 0x80000000 | 5, 0x80000000 | 5, 2, 2, 2, - QMetaType::Void, 0x80000000 | 5, 0x80000000 | 5, 2, 2, - QMetaType::Void, 0x80000000 | 5, 2, - QMetaType::Void, 0x80000000 | 5, 2, - - 0 // eod -}; - -void QtAbstractPropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtAbstractPropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->currentItemChanged((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: { QtBrowserItem* _r = _t->addProperty((*reinterpret_cast< QtProperty*(*)>(_a[1]))); - if (_a[0]) *reinterpret_cast< QtBrowserItem**>(_a[0]) = _r; } break; - case 2: { QtBrowserItem* _r = _t->insertProperty((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); - if (_a[0]) *reinterpret_cast< QtBrowserItem**>(_a[0]) = _r; } break; - case 3: _t->removeProperty((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 4: _t->d_func()->slotPropertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 5: _t->d_func()->slotPropertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - case 6: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 7: _t->d_func()->slotPropertyDataChanged((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtAbstractPropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtAbstractPropertyBrowser::currentItemChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtAbstractPropertyBrowser::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtAbstractPropertyBrowser.data, - qt_meta_data_QtAbstractPropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtAbstractPropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtAbstractPropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtAbstractPropertyBrowser.stringdata)) - return static_cast(const_cast< QtAbstractPropertyBrowser*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtAbstractPropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtAbstractPropertyBrowser::currentItemChanged(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.cpp deleted file mode 100644 index 77cdc0e..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.cpp +++ /dev/null @@ -1,241 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertybrowserutils_p.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertybrowserutils_p.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertybrowserutils_p.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtBoolEdit_t { - QByteArrayData data[3]; - char stringdata[20]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtBoolEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtBoolEdit_t qt_meta_stringdata_QtBoolEdit = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 7), -QT_MOC_LITERAL(2, 19, 0) - }, - "QtBoolEdit\0toggled\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtBoolEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 1, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 19, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, QMetaType::Bool, 2, - - 0 // eod -}; - -void QtBoolEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtBoolEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->toggled((*reinterpret_cast< bool(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtBoolEdit::*_t)(bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolEdit::toggled)) { - *result = 0; - } - } - } -} - -const QMetaObject QtBoolEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtBoolEdit.data, - qt_meta_data_QtBoolEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtBoolEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtBoolEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtBoolEdit.stringdata)) - return static_cast(const_cast< QtBoolEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtBoolEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} - -// SIGNAL 0 -void QtBoolEdit::toggled(bool _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtKeySequenceEdit_t { - QByteArrayData data[6]; - char stringdata[80]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequenceEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequenceEdit_t qt_meta_stringdata_QtKeySequenceEdit = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 18), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 8), -QT_MOC_LITERAL(4, 47, 14), -QT_MOC_LITERAL(5, 62, 17) - }, - "QtKeySequenceEdit\0keySequenceChanged\0" - "\0sequence\0setKeySequence\0slotClearShortcut" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequenceEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QKeySequence, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QKeySequence, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtKeySequenceEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequenceEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->keySequenceChanged((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 1: _t->setKeySequence((*reinterpret_cast< const QKeySequence(*)>(_a[1]))); break; - case 2: _t->slotClearShortcut(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtKeySequenceEdit::*_t)(const QKeySequence & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtKeySequenceEdit::keySequenceChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtKeySequenceEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtKeySequenceEdit.data, - qt_meta_data_QtKeySequenceEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequenceEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequenceEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequenceEdit.stringdata)) - return static_cast(const_cast< QtKeySequenceEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtKeySequenceEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtKeySequenceEdit::keySequenceChanged(const QKeySequence & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.o deleted file mode 100644 index 40e4ba0..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertybrowserutils_p.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertymanager.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertymanager.cpp deleted file mode 100644 index bcbb9d1..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtpropertymanager.cpp +++ /dev/null @@ -1,3299 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertymanager.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtpropertymanager.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertymanager.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtGroupPropertyManager_t { - QByteArrayData data[1]; - char stringdata[23]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtGroupPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtGroupPropertyManager_t qt_meta_stringdata_QtGroupPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22) - }, - "QtGroupPropertyManager" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtGroupPropertyManager[] = { - - // 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 QtGroupPropertyManager::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 QtGroupPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtGroupPropertyManager.data, - qt_meta_data_QtGroupPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtGroupPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtGroupPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtGroupPropertyManager.stringdata)) - return static_cast(const_cast< QtGroupPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtGroupPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -struct qt_meta_stringdata_QtIntPropertyManager_t { - QByteArrayData data[19]; - char stringdata[201]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtIntPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtIntPropertyManager_t qt_meta_stringdata_QtIntPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 20), -QT_MOC_LITERAL(1, 21, 12), -QT_MOC_LITERAL(2, 34, 0), -QT_MOC_LITERAL(3, 35, 11), -QT_MOC_LITERAL(4, 47, 8), -QT_MOC_LITERAL(5, 56, 3), -QT_MOC_LITERAL(6, 60, 12), -QT_MOC_LITERAL(7, 73, 6), -QT_MOC_LITERAL(8, 80, 6), -QT_MOC_LITERAL(9, 87, 17), -QT_MOC_LITERAL(10, 105, 4), -QT_MOC_LITERAL(11, 110, 15), -QT_MOC_LITERAL(12, 126, 8), -QT_MOC_LITERAL(13, 135, 8), -QT_MOC_LITERAL(14, 144, 10), -QT_MOC_LITERAL(15, 155, 10), -QT_MOC_LITERAL(16, 166, 8), -QT_MOC_LITERAL(17, 175, 13), -QT_MOC_LITERAL(18, 189, 11) - }, - "QtIntPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0singleStepChanged\0step\0" - "readOnlyChanged\0readOnly\0setValue\0" - "setMinimum\0setMaximum\0setRange\0" - "setSingleStep\0setReadOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtIntPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 10, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 64, 2, 0x06 /* Public */, - 6, 3, 69, 2, 0x06 /* Public */, - 9, 2, 76, 2, 0x06 /* Public */, - 11, 2, 81, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 13, 2, 86, 2, 0x0a /* Public */, - 14, 2, 91, 2, 0x0a /* Public */, - 15, 2, 96, 2, 0x0a /* Public */, - 16, 3, 101, 2, 0x0a /* Public */, - 17, 2, 108, 2, 0x0a /* Public */, - 18, 2, 113, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 12, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 12, - - 0 // eod -}; - -void QtIntPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtIntPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 2: _t->singleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 6: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 8: _t->setSingleStep((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 9: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::singleStepChanged)) { - *result = 2; - } - } - { - typedef void (QtIntPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtIntPropertyManager::readOnlyChanged)) { - *result = 3; - } - } - } -} - -const QMetaObject QtIntPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtIntPropertyManager.data, - qt_meta_data_QtIntPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtIntPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtIntPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtIntPropertyManager.stringdata)) - return static_cast(const_cast< QtIntPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtIntPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 10) - qt_static_metacall(this, _c, _id, _a); - _id -= 10; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 10) - *reinterpret_cast(_a[0]) = -1; - _id -= 10; - } - return _id; -} - -// SIGNAL 0 -void QtIntPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtIntPropertyManager::rangeChanged(QtProperty * _t1, int _t2, int _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtIntPropertyManager::singleStepChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtIntPropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtBoolPropertyManager_t { - QByteArrayData data[10]; - char stringdata[116]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtBoolPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtBoolPropertyManager_t qt_meta_stringdata_QtBoolPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 18), -QT_MOC_LITERAL(7, 80, 8), -QT_MOC_LITERAL(8, 89, 14), -QT_MOC_LITERAL(9, 104, 11) - }, - "QtBoolPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0textVisibleChanged\0" - "setValue\0setTextVisible\0textVisible" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtBoolPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - 6, 2, 39, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 7, 2, 44, 2, 0x0a /* Public */, - 8, 2, 49, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 2, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 9, - - 0 // eod -}; - -void QtBoolPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtBoolPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 1: _t->textVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 3: _t->setTextVisible((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtBoolPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtBoolPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtBoolPropertyManager::textVisibleChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtBoolPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtBoolPropertyManager.data, - qt_meta_data_QtBoolPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtBoolPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtBoolPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtBoolPropertyManager.stringdata)) - return static_cast(const_cast< QtBoolPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtBoolPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtBoolPropertyManager::valueChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtBoolPropertyManager::textVisibleChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtDoublePropertyManager_t { - QByteArrayData data[22]; - char stringdata[237]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDoublePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDoublePropertyManager_t qt_meta_stringdata_QtDoublePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 12), -QT_MOC_LITERAL(7, 76, 6), -QT_MOC_LITERAL(8, 83, 6), -QT_MOC_LITERAL(9, 90, 17), -QT_MOC_LITERAL(10, 108, 4), -QT_MOC_LITERAL(11, 113, 15), -QT_MOC_LITERAL(12, 129, 4), -QT_MOC_LITERAL(13, 134, 15), -QT_MOC_LITERAL(14, 150, 8), -QT_MOC_LITERAL(15, 159, 8), -QT_MOC_LITERAL(16, 168, 10), -QT_MOC_LITERAL(17, 179, 10), -QT_MOC_LITERAL(18, 190, 8), -QT_MOC_LITERAL(19, 199, 13), -QT_MOC_LITERAL(20, 213, 11), -QT_MOC_LITERAL(21, 225, 11) - }, - "QtDoublePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0singleStepChanged\0step\0" - "decimalsChanged\0prec\0readOnlyChanged\0" - "readOnly\0setValue\0setMinimum\0setMaximum\0" - "setRange\0setSingleStep\0setDecimals\0" - "setReadOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDoublePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 12, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 5, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 74, 2, 0x06 /* Public */, - 6, 3, 79, 2, 0x06 /* Public */, - 9, 2, 86, 2, 0x06 /* Public */, - 11, 2, 91, 2, 0x06 /* Public */, - 13, 2, 96, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 15, 2, 101, 2, 0x0a /* Public */, - 16, 2, 106, 2, 0x0a /* Public */, - 17, 2, 111, 2, 0x0a /* Public */, - 18, 3, 116, 2, 0x0a /* Public */, - 19, 2, 123, 2, 0x0a /* Public */, - 20, 2, 128, 2, 0x0a /* Public */, - 21, 2, 133, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 12, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 14, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 12, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 14, - - 0 // eod -}; - -void QtDoublePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDoublePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 2: _t->singleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 3: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 6: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 7: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 8: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 9: _t->setSingleStep((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 10: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 11: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , double ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::singleStepChanged)) { - *result = 2; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::decimalsChanged)) { - *result = 3; - } - } - { - typedef void (QtDoublePropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDoublePropertyManager::readOnlyChanged)) { - *result = 4; - } - } - } -} - -const QMetaObject QtDoublePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDoublePropertyManager.data, - qt_meta_data_QtDoublePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDoublePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDoublePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDoublePropertyManager.stringdata)) - return static_cast(const_cast< QtDoublePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDoublePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 12) - qt_static_metacall(this, _c, _id, _a); - _id -= 12; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 12) - *reinterpret_cast(_a[0]) = -1; - _id -= 12; - } - return _id; -} - -// SIGNAL 0 -void QtDoublePropertyManager::valueChanged(QtProperty * _t1, double _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtDoublePropertyManager::rangeChanged(QtProperty * _t1, double _t2, double _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtDoublePropertyManager::singleStepChanged(QtProperty * _t1, double _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtDoublePropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} - -// SIGNAL 4 -void QtDoublePropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 4, _a); -} -struct qt_meta_stringdata_QtStringPropertyManager_t { - QByteArrayData data[17]; - char stringdata[186]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtStringPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtStringPropertyManager_t qt_meta_stringdata_QtStringPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 13), -QT_MOC_LITERAL(7, 77, 6), -QT_MOC_LITERAL(8, 84, 15), -QT_MOC_LITERAL(9, 100, 15), -QT_MOC_LITERAL(10, 116, 8), -QT_MOC_LITERAL(11, 125, 9), -QT_MOC_LITERAL(12, 135, 11), -QT_MOC_LITERAL(13, 147, 8), -QT_MOC_LITERAL(14, 156, 8), -QT_MOC_LITERAL(15, 165, 11), -QT_MOC_LITERAL(16, 177, 8) - }, - "QtStringPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0regExpChanged\0" - "regExp\0echoModeChanged\0readOnlyChanged\0" - "setValue\0setRegExp\0setEchoMode\0EchoMode\0" - "echoMode\0setReadOnly\0readOnly" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtStringPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 4, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 2, 59, 2, 0x06 /* Public */, - 8, 2, 64, 2, 0x06 /* Public */, - 9, 2, 69, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 10, 2, 74, 2, 0x0a /* Public */, - 11, 2, 79, 2, 0x0a /* Public */, - 12, 2, 84, 2, 0x0a /* Public */, - 15, 2, 89, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 2, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 13, 4, 14, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 4, 16, - - 0 // eod -}; - -void QtStringPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtStringPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->regExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 2: _t->echoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const int(*)>(_a[2]))); break; - case 3: _t->readOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 4: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 5: _t->setRegExp((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 6: _t->setEchoMode((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< EchoMode(*)>(_a[2]))); break; - case 7: _t->setReadOnly((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const QString & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const QRegExp & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::regExpChanged)) { - *result = 1; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , const int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::echoModeChanged)) { - *result = 2; - } - } - { - typedef void (QtStringPropertyManager::*_t)(QtProperty * , bool ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtStringPropertyManager::readOnlyChanged)) { - *result = 3; - } - } - } -} - -const QMetaObject QtStringPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtStringPropertyManager.data, - qt_meta_data_QtStringPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtStringPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtStringPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtStringPropertyManager.stringdata)) - return static_cast(const_cast< QtStringPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtStringPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtStringPropertyManager::valueChanged(QtProperty * _t1, const QString & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtStringPropertyManager::regExpChanged(QtProperty * _t1, const QRegExp & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtStringPropertyManager::echoModeChanged(QtProperty * _t1, const int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} - -// SIGNAL 3 -void QtStringPropertyManager::readOnlyChanged(QtProperty * _t1, bool _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 3, _a); -} -struct qt_meta_stringdata_QtDatePropertyManager_t { - QByteArrayData data[13]; - char stringdata[128]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDatePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDatePropertyManager_t qt_meta_stringdata_QtDatePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 12), -QT_MOC_LITERAL(7, 74, 6), -QT_MOC_LITERAL(8, 81, 6), -QT_MOC_LITERAL(9, 88, 8), -QT_MOC_LITERAL(10, 97, 10), -QT_MOC_LITERAL(11, 108, 10), -QT_MOC_LITERAL(12, 119, 8) - }, - "QtDatePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0setValue\0setMinimum\0" - "setMaximum\0setRange" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDatePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 3, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 9, 2, 56, 2, 0x0a /* Public */, - 10, 2, 61, 2, 0x0a /* Public */, - 11, 2, 66, 2, 0x0a /* Public */, - 12, 3, 71, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 4, 7, 8, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 4, 7, 8, - - 0 // eod -}; - -void QtDatePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDatePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 3: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 4: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 5: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDatePropertyManager::*_t)(QtProperty * , const QDate & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDatePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtDatePropertyManager::*_t)(QtProperty * , const QDate & , const QDate & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDatePropertyManager::rangeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtDatePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDatePropertyManager.data, - qt_meta_data_QtDatePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDatePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDatePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDatePropertyManager.stringdata)) - return static_cast(const_cast< QtDatePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDatePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtDatePropertyManager::valueChanged(QtProperty * _t1, const QDate & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtDatePropertyManager::rangeChanged(QtProperty * _t1, const QDate & _t2, const QDate & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtTimePropertyManager_t { - QByteArrayData data[7]; - char stringdata[70]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTimePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTimePropertyManager_t qt_meta_stringdata_QtTimePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8) - }, - "QtTimePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTimePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 4, 5, - - 0 // eod -}; - -void QtTimePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTimePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtTimePropertyManager::*_t)(QtProperty * , const QTime & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTimePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtTimePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtTimePropertyManager.data, - qt_meta_data_QtTimePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTimePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTimePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTimePropertyManager.stringdata)) - return static_cast(const_cast< QtTimePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtTimePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtTimePropertyManager::valueChanged(QtProperty * _t1, const QTime & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtDateTimePropertyManager_t { - QByteArrayData data[7]; - char stringdata[74]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtDateTimePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtDateTimePropertyManager_t qt_meta_stringdata_QtDateTimePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 25), -QT_MOC_LITERAL(1, 26, 12), -QT_MOC_LITERAL(2, 39, 0), -QT_MOC_LITERAL(3, 40, 11), -QT_MOC_LITERAL(4, 52, 8), -QT_MOC_LITERAL(5, 61, 3), -QT_MOC_LITERAL(6, 65, 8) - }, - "QtDateTimePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtDateTimePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 4, 5, - - 0 // eod -}; - -void QtDateTimePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtDateTimePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtDateTimePropertyManager::*_t)(QtProperty * , const QDateTime & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtDateTimePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtDateTimePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtDateTimePropertyManager.data, - qt_meta_data_QtDateTimePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtDateTimePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtDateTimePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtDateTimePropertyManager.stringdata)) - return static_cast(const_cast< QtDateTimePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtDateTimePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtDateTimePropertyManager::valueChanged(QtProperty * _t1, const QDateTime & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtKeySequencePropertyManager_t { - QByteArrayData data[7]; - char stringdata[77]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtKeySequencePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtKeySequencePropertyManager_t qt_meta_stringdata_QtKeySequencePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 28), -QT_MOC_LITERAL(1, 29, 12), -QT_MOC_LITERAL(2, 42, 0), -QT_MOC_LITERAL(3, 43, 11), -QT_MOC_LITERAL(4, 55, 8), -QT_MOC_LITERAL(5, 64, 3), -QT_MOC_LITERAL(6, 68, 8) - }, - "QtKeySequencePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtKeySequencePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 4, 5, - - 0 // eod -}; - -void QtKeySequencePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtKeySequencePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtKeySequencePropertyManager::*_t)(QtProperty * , const QKeySequence & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtKeySequencePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtKeySequencePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtKeySequencePropertyManager.data, - qt_meta_data_QtKeySequencePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtKeySequencePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtKeySequencePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtKeySequencePropertyManager.stringdata)) - return static_cast(const_cast< QtKeySequencePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtKeySequencePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtKeySequencePropertyManager::valueChanged(QtProperty * _t1, const QKeySequence & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtCharPropertyManager_t { - QByteArrayData data[7]; - char stringdata[70]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharPropertyManager_t qt_meta_stringdata_QtCharPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8) - }, - "QtCharPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 4, 5, - - 0 // eod -}; - -void QtCharPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCharPropertyManager::*_t)(QtProperty * , const QChar & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCharPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCharPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtCharPropertyManager.data, - qt_meta_data_QtCharPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharPropertyManager.stringdata)) - return static_cast(const_cast< QtCharPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtCharPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtCharPropertyManager::valueChanged(QtProperty * _t1, const QChar & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtLocalePropertyManager_t { - QByteArrayData data[9]; - char stringdata[110]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtLocalePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtLocalePropertyManager_t qt_meta_stringdata_QtLocalePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 8), -QT_MOC_LITERAL(7, 72, 15), -QT_MOC_LITERAL(8, 88, 21) - }, - "QtLocalePropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotEnumChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtLocalePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtLocalePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtLocalePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 2: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtLocalePropertyManager::*_t)(QtProperty * , const QLocale & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtLocalePropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtLocalePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtLocalePropertyManager.data, - qt_meta_data_QtLocalePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtLocalePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtLocalePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtLocalePropertyManager.stringdata)) - return static_cast(const_cast< QtLocalePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtLocalePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtLocalePropertyManager::valueChanged(QtProperty * _t1, const QLocale & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtPointPropertyManager_t { - QByteArrayData data[9]; - char stringdata[108]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPointPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPointPropertyManager_t qt_meta_stringdata_QtPointPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 8), -QT_MOC_LITERAL(7, 71, 14), -QT_MOC_LITERAL(8, 86, 21) - }, - "QtPointPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPointPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtPointPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPointPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtPointPropertyManager::*_t)(QtProperty * , const QPoint & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtPointPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtPointPropertyManager.data, - qt_meta_data_QtPointPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPointPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPointPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPointPropertyManager.stringdata)) - return static_cast(const_cast< QtPointPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtPointPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtPointPropertyManager::valueChanged(QtProperty * _t1, const QPoint & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtPointFPropertyManager_t { - QByteArrayData data[12]; - char stringdata[145]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPointFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPointFPropertyManager_t qt_meta_stringdata_QtPointFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 15), -QT_MOC_LITERAL(7, 79, 4), -QT_MOC_LITERAL(8, 84, 8), -QT_MOC_LITERAL(9, 93, 11), -QT_MOC_LITERAL(10, 105, 17), -QT_MOC_LITERAL(11, 123, 21) - }, - "QtPointFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0decimalsChanged\0" - "prec\0setValue\0setDecimals\0slotDoubleChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPointFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtPointFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPointFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 1: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 3: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtPointFPropertyManager::*_t)(QtProperty * , const QPointF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtPointFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtPointFPropertyManager::decimalsChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtPointFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtPointFPropertyManager.data, - qt_meta_data_QtPointFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPointFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPointFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPointFPropertyManager.stringdata)) - return static_cast(const_cast< QtPointFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtPointFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtPointFPropertyManager::valueChanged(QtProperty * _t1, const QPointF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtPointFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizePropertyManager_t { - QByteArrayData data[15]; - char stringdata[165]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizePropertyManager_t qt_meta_stringdata_QtSizePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 12), -QT_MOC_LITERAL(7, 74, 6), -QT_MOC_LITERAL(8, 81, 6), -QT_MOC_LITERAL(9, 88, 8), -QT_MOC_LITERAL(10, 97, 10), -QT_MOC_LITERAL(11, 108, 10), -QT_MOC_LITERAL(12, 119, 8), -QT_MOC_LITERAL(13, 128, 14), -QT_MOC_LITERAL(14, 143, 21) - }, - "QtSizePropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0setValue\0setMinimum\0" - "setMaximum\0setRange\0slotIntChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 3, 59, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 9, 2, 66, 2, 0x0a /* Public */, - 10, 2, 71, 2, 0x0a /* Public */, - 11, 2, 76, 2, 0x0a /* Public */, - 12, 3, 81, 2, 0x0a /* Public */, - 13, 2, 88, 2, 0x08 /* Private */, - 14, 1, 93, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 4, 7, 8, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 3: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 4: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 5: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 6: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizePropertyManager::*_t)(QtProperty * , const QSize & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtSizePropertyManager::*_t)(QtProperty * , const QSize & , const QSize & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePropertyManager::rangeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtSizePropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizePropertyManager.data, - qt_meta_data_QtSizePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizePropertyManager.stringdata)) - return static_cast(const_cast< QtSizePropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtSizePropertyManager::valueChanged(QtProperty * _t1, const QSize & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtSizePropertyManager::rangeChanged(QtProperty * _t1, const QSize & _t2, const QSize & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizeFPropertyManager_t { - QByteArrayData data[18]; - char stringdata[202]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizeFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizeFPropertyManager_t qt_meta_stringdata_QtSizeFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 12), -QT_MOC_LITERAL(7, 75, 6), -QT_MOC_LITERAL(8, 82, 6), -QT_MOC_LITERAL(9, 89, 15), -QT_MOC_LITERAL(10, 105, 4), -QT_MOC_LITERAL(11, 110, 8), -QT_MOC_LITERAL(12, 119, 10), -QT_MOC_LITERAL(13, 130, 10), -QT_MOC_LITERAL(14, 141, 8), -QT_MOC_LITERAL(15, 150, 11), -QT_MOC_LITERAL(16, 162, 17), -QT_MOC_LITERAL(17, 180, 21) - }, - "QtSizeFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0rangeChanged\0" - "minVal\0maxVal\0decimalsChanged\0prec\0" - "setValue\0setMinimum\0setMaximum\0setRange\0" - "setDecimals\0slotDoubleChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizeFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 10, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 64, 2, 0x06 /* Public */, - 6, 3, 69, 2, 0x06 /* Public */, - 9, 2, 76, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 11, 2, 81, 2, 0x0a /* Public */, - 12, 2, 86, 2, 0x0a /* Public */, - 13, 2, 91, 2, 0x0a /* Public */, - 14, 3, 96, 2, 0x0a /* Public */, - 15, 2, 103, 2, 0x0a /* Public */, - 16, 2, 108, 2, 0x08 /* Private */, - 17, 1, 113, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 4, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 4, 7, 8, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizeFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizeFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 1: _t->rangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 2: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 4: _t->setMinimum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 5: _t->setMaximum((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 6: _t->setRange((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 7: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 8: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 9: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , const QSizeF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , const QSizeF & , const QSizeF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::rangeChanged)) { - *result = 1; - } - } - { - typedef void (QtSizeFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizeFPropertyManager::decimalsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtSizeFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizeFPropertyManager.data, - qt_meta_data_QtSizeFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizeFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizeFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizeFPropertyManager.stringdata)) - return static_cast(const_cast< QtSizeFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizeFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 10) - qt_static_metacall(this, _c, _id, _a); - _id -= 10; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 10) - *reinterpret_cast(_a[0]) = -1; - _id -= 10; - } - return _id; -} - -// SIGNAL 0 -void QtSizeFPropertyManager::valueChanged(QtProperty * _t1, const QSizeF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtSizeFPropertyManager::rangeChanged(QtProperty * _t1, const QSizeF & _t2, const QSizeF & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtSizeFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtRectPropertyManager_t { - QByteArrayData data[12]; - char stringdata[150]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtRectPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtRectPropertyManager_t qt_meta_stringdata_QtRectPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 17), -QT_MOC_LITERAL(7, 79, 10), -QT_MOC_LITERAL(8, 90, 8), -QT_MOC_LITERAL(9, 99, 13), -QT_MOC_LITERAL(10, 113, 14), -QT_MOC_LITERAL(11, 128, 21) - }, - "QtRectPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0constraintChanged\0" - "constraint\0setValue\0setConstraint\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtRectPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtRectPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtRectPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 1: _t->constraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 3: _t->setConstraint((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 4: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtRectPropertyManager::*_t)(QtProperty * , const QRect & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtRectPropertyManager::*_t)(QtProperty * , const QRect & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectPropertyManager::constraintChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtRectPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtRectPropertyManager.data, - qt_meta_data_QtRectPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtRectPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtRectPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtRectPropertyManager.stringdata)) - return static_cast(const_cast< QtRectPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtRectPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtRectPropertyManager::valueChanged(QtProperty * _t1, const QRect & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtRectPropertyManager::constraintChanged(QtProperty * _t1, const QRect & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtRectFPropertyManager_t { - QByteArrayData data[15]; - char stringdata[187]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtRectFPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtRectFPropertyManager_t qt_meta_stringdata_QtRectFPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 17), -QT_MOC_LITERAL(7, 80, 10), -QT_MOC_LITERAL(8, 91, 15), -QT_MOC_LITERAL(9, 107, 4), -QT_MOC_LITERAL(10, 112, 8), -QT_MOC_LITERAL(11, 121, 13), -QT_MOC_LITERAL(12, 135, 11), -QT_MOC_LITERAL(13, 147, 17), -QT_MOC_LITERAL(14, 165, 21) - }, - "QtRectFPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0constraintChanged\0" - "constraint\0decimalsChanged\0prec\0" - "setValue\0setConstraint\0setDecimals\0" - "slotDoubleChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtRectFPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - 6, 2, 59, 2, 0x06 /* Public */, - 8, 2, 64, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 10, 2, 69, 2, 0x0a /* Public */, - 11, 2, 74, 2, 0x0a /* Public */, - 12, 2, 79, 2, 0x0a /* Public */, - 13, 2, 84, 2, 0x08 /* Private */, - 14, 1, 89, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 9, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 9, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtRectFPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtRectFPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 1: _t->constraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 2: _t->decimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 4: _t->setConstraint((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 5: _t->setDecimals((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 6: _t->d_func()->slotDoubleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 7: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , const QRectF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , const QRectF & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::constraintChanged)) { - *result = 1; - } - } - { - typedef void (QtRectFPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtRectFPropertyManager::decimalsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtRectFPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtRectFPropertyManager.data, - qt_meta_data_QtRectFPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtRectFPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtRectFPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtRectFPropertyManager.stringdata)) - return static_cast(const_cast< QtRectFPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtRectFPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtRectFPropertyManager::valueChanged(QtProperty * _t1, const QRectF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtRectFPropertyManager::constraintChanged(QtProperty * _t1, const QRectF & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtRectFPropertyManager::decimalsChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtEnumPropertyManager_t { - QByteArrayData data[14]; - char stringdata[158]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtEnumPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtEnumPropertyManager_t qt_meta_stringdata_QtEnumPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 16), -QT_MOC_LITERAL(7, 78, 5), -QT_MOC_LITERAL(8, 84, 16), -QT_MOC_LITERAL(9, 101, 15), -QT_MOC_LITERAL(10, 117, 5), -QT_MOC_LITERAL(11, 123, 8), -QT_MOC_LITERAL(12, 132, 12), -QT_MOC_LITERAL(13, 145, 12) - }, - "QtEnumPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0enumNamesChanged\0" - "names\0enumIconsChanged\0QMap\0" - "icons\0setValue\0setEnumNames\0setEnumIcons" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtEnumPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 3, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - 8, 2, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 11, 2, 59, 2, 0x0a /* Public */, - 12, 2, 64, 2, 0x0a /* Public */, - 13, 2, 69, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 9, 4, 10, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 9, 4, 10, - - 0 // eod -}; - -void QtEnumPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtEnumPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->enumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->enumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 3: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->setEnumNames((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 5: _t->setEnumIcons((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , const QStringList & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::enumNamesChanged)) { - *result = 1; - } - } - { - typedef void (QtEnumPropertyManager::*_t)(QtProperty * , const QMap & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtEnumPropertyManager::enumIconsChanged)) { - *result = 2; - } - } - } -} - -const QMetaObject QtEnumPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtEnumPropertyManager.data, - qt_meta_data_QtEnumPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtEnumPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtEnumPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtEnumPropertyManager.stringdata)) - return static_cast(const_cast< QtEnumPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtEnumPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtEnumPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtEnumPropertyManager::enumNamesChanged(QtProperty * _t1, const QStringList & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} - -// SIGNAL 2 -void QtEnumPropertyManager::enumIconsChanged(QtProperty * _t1, const QMap & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 2, _a); -} -struct qt_meta_stringdata_QtFlagPropertyManager_t { - QByteArrayData data[12]; - char stringdata[144]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFlagPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFlagPropertyManager_t qt_meta_stringdata_QtFlagPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 16), -QT_MOC_LITERAL(7, 78, 5), -QT_MOC_LITERAL(8, 84, 8), -QT_MOC_LITERAL(9, 93, 12), -QT_MOC_LITERAL(10, 106, 15), -QT_MOC_LITERAL(11, 122, 21) - }, - "QtFlagPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0flagNamesChanged\0" - "names\0setValue\0setFlagNames\0slotBoolChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFlagPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 44, 2, 0x06 /* Public */, - 6, 2, 49, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 54, 2, 0x0a /* Public */, - 9, 2, 59, 2, 0x0a /* Public */, - 10, 2, 64, 2, 0x08 /* Private */, - 11, 1, 69, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 4, 7, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtFlagPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFlagPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 1: _t->flagNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->setFlagNames((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 4: _t->d_func()->slotBoolChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFlagPropertyManager::*_t)(QtProperty * , int ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFlagPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtFlagPropertyManager::*_t)(QtProperty * , const QStringList & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFlagPropertyManager::flagNamesChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtFlagPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtFlagPropertyManager.data, - qt_meta_data_QtFlagPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFlagPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFlagPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFlagPropertyManager.stringdata)) - return static_cast(const_cast< QtFlagPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtFlagPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 6; - } - return _id; -} - -// SIGNAL 0 -void QtFlagPropertyManager::valueChanged(QtProperty * _t1, int _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtFlagPropertyManager::flagNamesChanged(QtProperty * _t1, const QStringList & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtSizePolicyPropertyManager_t { - QByteArrayData data[10]; - char stringdata[129]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtSizePolicyPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtSizePolicyPropertyManager_t qt_meta_stringdata_QtSizePolicyPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 27), -QT_MOC_LITERAL(1, 28, 12), -QT_MOC_LITERAL(2, 41, 0), -QT_MOC_LITERAL(3, 42, 11), -QT_MOC_LITERAL(4, 54, 8), -QT_MOC_LITERAL(5, 63, 3), -QT_MOC_LITERAL(6, 67, 8), -QT_MOC_LITERAL(7, 76, 14), -QT_MOC_LITERAL(8, 91, 15), -QT_MOC_LITERAL(9, 107, 21) - }, - "QtSizePolicyPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotEnumChanged\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtSizePolicyPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 5, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 39, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 44, 2, 0x0a /* Public */, - 7, 2, 49, 2, 0x08 /* Private */, - 8, 2, 54, 2, 0x08 /* Private */, - 9, 1, 59, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtSizePolicyPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtSizePolicyPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtSizePolicyPropertyManager::*_t)(QtProperty * , const QSizePolicy & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtSizePolicyPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtSizePolicyPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtSizePolicyPropertyManager.data, - qt_meta_data_QtSizePolicyPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtSizePolicyPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtSizePolicyPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtSizePolicyPropertyManager.stringdata)) - return static_cast(const_cast< QtSizePolicyPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtSizePolicyPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 5) - qt_static_metacall(this, _c, _id, _a); - _id -= 5; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 5) - *reinterpret_cast(_a[0]) = -1; - _id -= 5; - } - return _id; -} - -// SIGNAL 0 -void QtSizePolicyPropertyManager::valueChanged(QtProperty * _t1, const QSizePolicy & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtFontPropertyManager_t { - QByteArrayData data[13]; - char stringdata[193]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontPropertyManager_t qt_meta_stringdata_QtFontPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 12), -QT_MOC_LITERAL(2, 35, 0), -QT_MOC_LITERAL(3, 36, 11), -QT_MOC_LITERAL(4, 48, 8), -QT_MOC_LITERAL(5, 57, 3), -QT_MOC_LITERAL(6, 61, 8), -QT_MOC_LITERAL(7, 70, 14), -QT_MOC_LITERAL(8, 85, 15), -QT_MOC_LITERAL(9, 101, 15), -QT_MOC_LITERAL(10, 117, 21), -QT_MOC_LITERAL(11, 139, 23), -QT_MOC_LITERAL(12, 163, 29) - }, - "QtFontPropertyManager\0valueChanged\0\0" - "QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotEnumChanged\0" - "slotBoolChanged\0slotPropertyDestroyed\0" - "slotFontDatabaseChanged\0" - "slotFontDatabaseDelayedChange" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 54, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 59, 2, 0x0a /* Public */, - 7, 2, 64, 2, 0x08 /* Private */, - 8, 2, 69, 2, 0x08 /* Private */, - 9, 2, 74, 2, 0x08 /* Private */, - 10, 1, 79, 2, 0x08 /* Private */, - 11, 0, 82, 2, 0x08 /* Private */, - 12, 0, 83, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtFontPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotEnumChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 4: _t->d_func()->slotBoolChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 5: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - case 6: _t->d_func()->slotFontDatabaseChanged(); break; - case 7: _t->d_func()->slotFontDatabaseDelayedChange(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFontPropertyManager::*_t)(QtProperty * , const QFont & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFontPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtFontPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtFontPropertyManager.data, - qt_meta_data_QtFontPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontPropertyManager.stringdata)) - return static_cast(const_cast< QtFontPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtFontPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 8) - *reinterpret_cast(_a[0]) = -1; - _id -= 8; - } - return _id; -} - -// SIGNAL 0 -void QtFontPropertyManager::valueChanged(QtProperty * _t1, const QFont & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtColorPropertyManager_t { - QByteArrayData data[9]; - char stringdata[108]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorPropertyManager_t qt_meta_stringdata_QtColorPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 22), -QT_MOC_LITERAL(1, 23, 12), -QT_MOC_LITERAL(2, 36, 0), -QT_MOC_LITERAL(3, 37, 11), -QT_MOC_LITERAL(4, 49, 8), -QT_MOC_LITERAL(5, 58, 3), -QT_MOC_LITERAL(6, 62, 8), -QT_MOC_LITERAL(7, 71, 14), -QT_MOC_LITERAL(8, 86, 21) - }, - "QtColorPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue\0" - "slotIntChanged\0slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 39, 2, 0x0a /* Public */, - 7, 2, 44, 2, 0x08 /* Private */, - 8, 1, 49, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, 2, - - 0 // eod -}; - -void QtColorPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 2: _t->d_func()->slotIntChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 3: _t->d_func()->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtColorPropertyManager::*_t)(QtProperty * , const QColor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtColorPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtColorPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtColorPropertyManager.data, - qt_meta_data_QtColorPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorPropertyManager.stringdata)) - return static_cast(const_cast< QtColorPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtColorPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void QtColorPropertyManager::valueChanged(QtProperty * _t1, const QColor & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtCursorPropertyManager_t { - QByteArrayData data[7]; - char stringdata[72]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCursorPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCursorPropertyManager_t qt_meta_stringdata_QtCursorPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 23), -QT_MOC_LITERAL(1, 24, 12), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 11), -QT_MOC_LITERAL(4, 50, 8), -QT_MOC_LITERAL(5, 59, 3), -QT_MOC_LITERAL(6, 63, 8) - }, - "QtCursorPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0setValue" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCursorPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 24, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 2, 29, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 4, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 4, 5, - - 0 // eod -}; - -void QtCursorPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCursorPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 1: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCursorPropertyManager::*_t)(QtProperty * , const QCursor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCursorPropertyManager::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCursorPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtCursorPropertyManager.data, - qt_meta_data_QtCursorPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCursorPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCursorPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCursorPropertyManager.stringdata)) - return static_cast(const_cast< QtCursorPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtCursorPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void QtCursorPropertyManager::valueChanged(QtProperty * _t1, const QCursor & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qttreepropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qttreepropertybrowser.cpp deleted file mode 100644 index 5084dcb..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qttreepropertybrowser.cpp +++ /dev/null @@ -1,247 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qttreepropertybrowser.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qttreepropertybrowser.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qttreepropertybrowser.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtTreePropertyBrowser_t { - QByteArrayData data[23]; - char stringdata[337]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtTreePropertyBrowser_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtTreePropertyBrowser_t qt_meta_stringdata_QtTreePropertyBrowser = { - { -QT_MOC_LITERAL(0, 0, 21), -QT_MOC_LITERAL(1, 22, 9), -QT_MOC_LITERAL(2, 32, 0), -QT_MOC_LITERAL(3, 33, 14), -QT_MOC_LITERAL(4, 48, 4), -QT_MOC_LITERAL(5, 53, 8), -QT_MOC_LITERAL(6, 62, 13), -QT_MOC_LITERAL(7, 76, 12), -QT_MOC_LITERAL(8, 89, 29), -QT_MOC_LITERAL(9, 119, 26), -QT_MOC_LITERAL(10, 146, 16), -QT_MOC_LITERAL(11, 163, 11), -QT_MOC_LITERAL(12, 175, 15), -QT_MOC_LITERAL(13, 191, 20), -QT_MOC_LITERAL(14, 212, 13), -QT_MOC_LITERAL(15, 226, 10), -QT_MOC_LITERAL(16, 237, 10), -QT_MOC_LITERAL(17, 248, 16), -QT_MOC_LITERAL(18, 265, 28), -QT_MOC_LITERAL(19, 294, 11), -QT_MOC_LITERAL(20, 306, 7), -QT_MOC_LITERAL(21, 314, 5), -QT_MOC_LITERAL(22, 320, 16) - }, - "QtTreePropertyBrowser\0collapsed\0\0" - "QtBrowserItem*\0item\0expanded\0slotCollapsed\0" - "slotExpanded\0slotCurrentBrowserItemChanged\0" - "slotCurrentTreeItemChanged\0QTreeWidgetItem*\0" - "indentation\0rootIsDecorated\0" - "alternatingRowColors\0headerVisible\0" - "resizeMode\0ResizeMode\0splitterPosition\0" - "propertiesWithoutValueMarked\0Interactive\0" - "Stretch\0Fixed\0ResizeToContents" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtTreePropertyBrowser[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 6, 14, // methods - 7, 64, // properties - 1, 85, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 44, 2, 0x06 /* Public */, - 5, 1, 47, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 6, 1, 50, 2, 0x08 /* Private */, - 7, 1, 53, 2, 0x08 /* Private */, - 8, 1, 56, 2, 0x08 /* Private */, - 9, 2, 59, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - // slots: parameters - QMetaType::Void, QMetaType::QModelIndex, 2, - QMetaType::Void, QMetaType::QModelIndex, 2, - QMetaType::Void, 0x80000000 | 3, 2, - QMetaType::Void, 0x80000000 | 10, 0x80000000 | 10, 2, 2, - - // properties: name, type, flags - 11, QMetaType::Int, 0x00095103, - 12, QMetaType::Bool, 0x00095103, - 13, QMetaType::Bool, 0x00095103, - 14, QMetaType::Bool, 0x00095103, - 15, 0x80000000 | 16, 0x0009510b, - 17, QMetaType::Int, 0x00095103, - 18, QMetaType::Bool, 0x00095103, - - // enums: name, flags, count, data - 16, 0x0, 4, 89, - - // enum data: key, value - 19, uint(QtTreePropertyBrowser::Interactive), - 20, uint(QtTreePropertyBrowser::Stretch), - 21, uint(QtTreePropertyBrowser::Fixed), - 22, uint(QtTreePropertyBrowser::ResizeToContents), - - 0 // eod -}; - -void QtTreePropertyBrowser::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtTreePropertyBrowser *_t = static_cast(_o); - switch (_id) { - case 0: _t->collapsed((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 1: _t->expanded((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 2: _t->d_func()->slotCollapsed((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; - case 3: _t->d_func()->slotExpanded((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; - case 4: _t->d_func()->slotCurrentBrowserItemChanged((*reinterpret_cast< QtBrowserItem*(*)>(_a[1]))); break; - case 5: _t->d_func()->slotCurrentTreeItemChanged((*reinterpret_cast< QTreeWidgetItem*(*)>(_a[1])),(*reinterpret_cast< QTreeWidgetItem*(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtTreePropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTreePropertyBrowser::collapsed)) { - *result = 0; - } - } - { - typedef void (QtTreePropertyBrowser::*_t)(QtBrowserItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtTreePropertyBrowser::expanded)) { - *result = 1; - } - } - } -} - -const QMetaObject QtTreePropertyBrowser::staticMetaObject = { - { &QtAbstractPropertyBrowser::staticMetaObject, qt_meta_stringdata_QtTreePropertyBrowser.data, - qt_meta_data_QtTreePropertyBrowser, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtTreePropertyBrowser::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtTreePropertyBrowser::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtTreePropertyBrowser.stringdata)) - return static_cast(const_cast< QtTreePropertyBrowser*>(this)); - return QtAbstractPropertyBrowser::qt_metacast(_clname); -} - -int QtTreePropertyBrowser::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyBrowser::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(_a[0]) = -1; - _id -= 6; - } -#ifndef QT_NO_PROPERTIES - else if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< int*>(_v) = indentation(); break; - case 1: *reinterpret_cast< bool*>(_v) = rootIsDecorated(); break; - case 2: *reinterpret_cast< bool*>(_v) = alternatingRowColors(); break; - case 3: *reinterpret_cast< bool*>(_v) = isHeaderVisible(); break; - case 4: *reinterpret_cast< ResizeMode*>(_v) = resizeMode(); break; - case 5: *reinterpret_cast< int*>(_v) = splitterPosition(); break; - case 6: *reinterpret_cast< bool*>(_v) = propertiesWithoutValueMarked(); break; - default: break; - } - _id -= 7; - } else if (_c == QMetaObject::WriteProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: setIndentation(*reinterpret_cast< int*>(_v)); break; - case 1: setRootIsDecorated(*reinterpret_cast< bool*>(_v)); break; - case 2: setAlternatingRowColors(*reinterpret_cast< bool*>(_v)); break; - case 3: setHeaderVisible(*reinterpret_cast< bool*>(_v)); break; - case 4: setResizeMode(*reinterpret_cast< ResizeMode*>(_v)); break; - case 5: setSplitterPosition(*reinterpret_cast< int*>(_v)); break; - case 6: setPropertiesWithoutValueMarked(*reinterpret_cast< bool*>(_v)); break; - default: break; - } - _id -= 7; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 7; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 7; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 7) - *reinterpret_cast(_a[0]) = -1; - _id -= 7; - } -#endif // QT_NO_PROPERTIES - return _id; -} - -// SIGNAL 0 -void QtTreePropertyBrowser::collapsed(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtTreePropertyBrowser::expanded(QtBrowserItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtvariantproperty.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtvariantproperty.cpp deleted file mode 100644 index 0c5ded0..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/moc_qtvariantproperty.cpp +++ /dev/null @@ -1,367 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtvariantproperty.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "../../src/qtvariantproperty.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtvariantproperty.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtVariantPropertyManager_t { - QByteArrayData data[26]; - char stringdata[418]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtVariantPropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtVariantPropertyManager_t qt_meta_stringdata_QtVariantPropertyManager = { - { -QT_MOC_LITERAL(0, 0, 24), -QT_MOC_LITERAL(1, 25, 12), -QT_MOC_LITERAL(2, 38, 0), -QT_MOC_LITERAL(3, 39, 11), -QT_MOC_LITERAL(4, 51, 8), -QT_MOC_LITERAL(5, 60, 3), -QT_MOC_LITERAL(6, 64, 16), -QT_MOC_LITERAL(7, 81, 9), -QT_MOC_LITERAL(8, 91, 8), -QT_MOC_LITERAL(9, 100, 12), -QT_MOC_LITERAL(10, 113, 5), -QT_MOC_LITERAL(11, 119, 16), -QT_MOC_LITERAL(12, 136, 16), -QT_MOC_LITERAL(13, 153, 21), -QT_MOC_LITERAL(14, 175, 19), -QT_MOC_LITERAL(15, 195, 17), -QT_MOC_LITERAL(16, 213, 19), -QT_MOC_LITERAL(17, 233, 21), -QT_MOC_LITERAL(18, 255, 20), -QT_MOC_LITERAL(19, 276, 20), -QT_MOC_LITERAL(20, 297, 15), -QT_MOC_LITERAL(21, 313, 20), -QT_MOC_LITERAL(22, 334, 19), -QT_MOC_LITERAL(23, 354, 22), -QT_MOC_LITERAL(24, 377, 20), -QT_MOC_LITERAL(25, 398, 19) - }, - "QtVariantPropertyManager\0valueChanged\0" - "\0QtProperty*\0property\0val\0attributeChanged\0" - "attribute\0setValue\0setAttribute\0value\0" - "slotValueChanged\0slotRangeChanged\0" - "slotSingleStepChanged\0slotDecimalsChanged\0" - "slotRegExpChanged\0slotEchoModeChanged\0" - "slotConstraintChanged\0slotEnumNamesChanged\0" - "slotEnumIconsChanged\0QMap\0" - "slotFlagNamesChanged\0slotReadOnlyChanged\0" - "slotTextVisibleChanged\0slotPropertyInserted\0" - "slotPropertyRemoved" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtVariantPropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 43, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 229, 2, 0x06 /* Public */, - 6, 3, 234, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 241, 2, 0x0a /* Public */, - 9, 3, 246, 2, 0x0a /* Public */, - 11, 2, 253, 2, 0x08 /* Private */, - 12, 3, 258, 2, 0x08 /* Private */, - 13, 2, 265, 2, 0x08 /* Private */, - 11, 2, 270, 2, 0x08 /* Private */, - 12, 3, 275, 2, 0x08 /* Private */, - 13, 2, 282, 2, 0x08 /* Private */, - 14, 2, 287, 2, 0x08 /* Private */, - 11, 2, 292, 2, 0x08 /* Private */, - 11, 2, 297, 2, 0x08 /* Private */, - 15, 2, 302, 2, 0x08 /* Private */, - 16, 2, 307, 2, 0x08 /* Private */, - 11, 2, 312, 2, 0x08 /* Private */, - 12, 3, 317, 2, 0x08 /* Private */, - 11, 2, 324, 2, 0x08 /* Private */, - 11, 2, 329, 2, 0x08 /* Private */, - 11, 2, 334, 2, 0x08 /* Private */, - 11, 2, 339, 2, 0x08 /* Private */, - 11, 2, 344, 2, 0x08 /* Private */, - 11, 2, 349, 2, 0x08 /* Private */, - 11, 2, 354, 2, 0x08 /* Private */, - 11, 2, 359, 2, 0x08 /* Private */, - 12, 3, 364, 2, 0x08 /* Private */, - 11, 2, 371, 2, 0x08 /* Private */, - 12, 3, 376, 2, 0x08 /* Private */, - 11, 2, 383, 2, 0x08 /* Private */, - 17, 2, 388, 2, 0x08 /* Private */, - 11, 2, 393, 2, 0x08 /* Private */, - 17, 2, 398, 2, 0x08 /* Private */, - 11, 2, 403, 2, 0x08 /* Private */, - 18, 2, 408, 2, 0x08 /* Private */, - 19, 2, 413, 2, 0x08 /* Private */, - 11, 2, 418, 2, 0x08 /* Private */, - 11, 2, 423, 2, 0x08 /* Private */, - 11, 2, 428, 2, 0x08 /* Private */, - 21, 2, 433, 2, 0x08 /* Private */, - 22, 2, 438, 2, 0x08 /* Private */, - 23, 2, 443, 2, 0x08 /* Private */, - 24, 3, 448, 2, 0x08 /* Private */, - 25, 2, 455, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, QMetaType::QVariant, 4, 7, 5, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, QMetaType::QVariant, 4, 7, 10, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, QMetaType::Int, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, QMetaType::Double, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Double, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRegExp, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Int, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDate, QMetaType::QDate, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QTime, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QDateTime, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QKeySequence, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QChar, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QLocale, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QPoint, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QPointF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSize, QMetaType::QSize, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizeF, QMetaType::QSizeF, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRect, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QRectF, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QColor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 20, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QSizePolicy, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QFont, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QCursor, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::QStringList, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, QMetaType::Bool, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 0x80000000 | 3, 2, 2, 2, - QMetaType::Void, 0x80000000 | 3, 0x80000000 | 3, 2, 2, - - 0 // eod -}; - -void QtVariantPropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtVariantPropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 1: _t->attributeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QVariant(*)>(_a[3]))); break; - case 2: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 3: _t->setAttribute((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QVariant(*)>(_a[3]))); break; - case 4: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 5: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; - case 6: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 7: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 8: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2])),(*reinterpret_cast< double(*)>(_a[3]))); break; - case 9: _t->d_func()->slotSingleStepChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 10: _t->d_func()->slotDecimalsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 11: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 12: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 13: _t->d_func()->slotRegExpChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRegExp(*)>(_a[2]))); break; - case 14: _t->d_func()->slotEchoModeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; - case 15: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2]))); break; - case 16: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDate(*)>(_a[2])),(*reinterpret_cast< const QDate(*)>(_a[3]))); break; - case 17: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QTime(*)>(_a[2]))); break; - case 18: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QDateTime(*)>(_a[2]))); break; - case 19: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QKeySequence(*)>(_a[2]))); break; - case 20: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QChar(*)>(_a[2]))); break; - case 21: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QLocale(*)>(_a[2]))); break; - case 22: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 23: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPointF(*)>(_a[2]))); break; - case 24: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - case 25: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2])),(*reinterpret_cast< const QSize(*)>(_a[3]))); break; - case 26: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2]))); break; - case 27: _t->d_func()->slotRangeChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizeF(*)>(_a[2])),(*reinterpret_cast< const QSizeF(*)>(_a[3]))); break; - case 28: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 29: _t->d_func()->slotConstraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRect(*)>(_a[2]))); break; - case 30: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 31: _t->d_func()->slotConstraintChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QRectF(*)>(_a[2]))); break; - case 32: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 33: _t->d_func()->slotEnumNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 34: _t->d_func()->slotEnumIconsChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QMap(*)>(_a[2]))); break; - case 35: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSizePolicy(*)>(_a[2]))); break; - case 36: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 37: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QCursor(*)>(_a[2]))); break; - case 38: _t->d_func()->slotFlagNamesChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QStringList(*)>(_a[2]))); break; - case 39: _t->d_func()->slotReadOnlyChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 40: _t->d_func()->slotTextVisibleChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; - case 41: _t->d_func()->slotPropertyInserted((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2])),(*reinterpret_cast< QtProperty*(*)>(_a[3]))); break; - case 42: _t->d_func()->slotPropertyRemoved((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< QtProperty*(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtVariantPropertyManager::*_t)(QtProperty * , const QVariant & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtVariantPropertyManager::valueChanged)) { - *result = 0; - } - } - { - typedef void (QtVariantPropertyManager::*_t)(QtProperty * , const QString & , const QVariant & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtVariantPropertyManager::attributeChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject QtVariantPropertyManager::staticMetaObject = { - { &QtAbstractPropertyManager::staticMetaObject, qt_meta_stringdata_QtVariantPropertyManager.data, - qt_meta_data_QtVariantPropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtVariantPropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtVariantPropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtVariantPropertyManager.stringdata)) - return static_cast(const_cast< QtVariantPropertyManager*>(this)); - return QtAbstractPropertyManager::qt_metacast(_clname); -} - -int QtVariantPropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractPropertyManager::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 43) - qt_static_metacall(this, _c, _id, _a); - _id -= 43; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 43) - *reinterpret_cast(_a[0]) = -1; - _id -= 43; - } - return _id; -} - -// SIGNAL 0 -void QtVariantPropertyManager::valueChanged(QtProperty * _t1, const QVariant & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void QtVariantPropertyManager::attributeChanged(QtProperty * _t1, const QString & _t2, const QVariant & _t3) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)), const_cast(reinterpret_cast(&_t3)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_QtVariantEditorFactory_t { - QByteArrayData data[1]; - char stringdata[23]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtVariantEditorFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtVariantEditorFactory_t qt_meta_stringdata_QtVariantEditorFactory = { - { -QT_MOC_LITERAL(0, 0, 22) - }, - "QtVariantEditorFactory" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtVariantEditorFactory[] = { - - // 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 QtVariantEditorFactory::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 QtVariantEditorFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_QtVariantEditorFactory.data, - qt_meta_data_QtVariantEditorFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtVariantEditorFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtVariantEditorFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtVariantEditorFactory.stringdata)) - return static_cast(const_cast< QtVariantEditorFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int QtVariantEditorFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.cpp deleted file mode 100644 index bc61bc3..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.cpp +++ /dev/null @@ -1,452 +0,0 @@ -/**************************************************************************** -** Resource object code -** -** Created by: The Resource Compiler for Qt version 5.3.1 -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include - -static const unsigned char qt_resource_data[] = { - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeb.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x20,0xc, - 0x56,0xad,0x6a,0x0,0xd3,0x53,0x43,0x21,0xb4,0x2a,0x94,0xe6,0x84,0xd2,0x8c,0x50, - 0x9a,0x15,0x4a,0x8b,0xaa,0x42,0xe8,0x10,0x4e,0x10,0xbd,0x80,0x31,0x80,0x9,0x44, - 0xcf,0x60,0x75,0x0,0x8b,0x4e,0x13,0x85,0x98,0x3a,0x35,0x4,0x4a,0x7,0x40,0xe9, - 0x8,0x28,0x1d,0xc6,0x80,0x62,0x1b,0xcc,0x76,0xfc,0x0,0x0,0x20,0x6c,0x12,0x3d, - 0x8,0xc,0xcf,0x6a,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeall.png - 0x0,0x0,0x0,0xae, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x53,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x5c,0xb,0x20,0xb4,0x66,0x6,0x84,0x5e,0x1a,0x5,0xa6,0x98,0xa6,0x86,0x35,0x80, - 0xe9,0xd0,0x50,0x30,0xad,0xc1,0xe8,0xa0,0x1,0xa2,0x97,0x30,0x3a,0x48,0x81,0x84, - 0xa7,0x30,0x3a,0x88,0x1,0x25,0xb8,0x42,0x18,0x1d,0x44,0x81,0x26,0x70,0x86,0x2, - 0x41,0x2,0x82,0x86,0x89,0xc3,0xd4,0xc1,0xf4,0xc1,0xcd,0x81,0x99,0xb,0xb3,0x7, - 0x66,0x2f,0xdc,0x1d,0x30,0x77,0x61,0x5,0x0,0xdb,0x74,0x15,0xc3,0xaa,0xe7,0x4e, - 0x58,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-ibeam.png - 0x0,0x0,0x0,0x7c, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x21,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0xc0,0x0, - 0x22,0x8c,0xe,0x60,0x9a,0x91,0x5,0x2a,0x10,0x40,0x1b,0x9a,0x33,0x8c,0x34,0xf5, - 0x30,0xf7,0xc0,0xdc,0x87,0x2,0x0,0x5e,0x9d,0x6,0x14,0x54,0xdc,0x17,0x3,0x0, - 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizef.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0xd7,0x63,0x60,0x20,0x4, - 0x56,0xad,0x6a,0x0,0xd3,0x53,0x43,0xa1,0x74,0x18,0x44,0x7c,0x6a,0x4,0x94,0xe, - 0x80,0xd2,0x21,0x10,0x7a,0x9a,0x28,0x84,0x9e,0xc1,0xea,0x0,0xa6,0x17,0x30,0x6, - 0x30,0x41,0x74,0x86,0x70,0x42,0x68,0x51,0x55,0x8,0xcd,0xa,0x35,0x91,0x11,0x4a, - 0x73,0x42,0x69,0xd5,0x50,0x54,0x1b,0x61,0x2e,0xc0,0x7,0x0,0x24,0x2c,0x12,0x3d, - 0xcf,0x2,0x9,0x27,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-closedhand.png - 0x0,0x0,0x0,0x93, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x4,0x0,0x0,0x0,0xb5,0xfa,0x37,0xea, - 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x89,0x0,0x0,0xb,0x89, - 0x1,0x37,0xc9,0xcb,0xad,0x0,0x0,0x0,0x45,0x49,0x44,0x41,0x54,0x28,0xcf,0xad, - 0xd1,0xcb,0xa,0x0,0x20,0x8,0x44,0xd1,0xf9,0xff,0x9f,0xbe,0x2d,0x24,0x70,0x7a, - 0x53,0x19,0xba,0xe9,0x80,0xa2,0x42,0xeb,0xa7,0x7f,0x40,0x8,0xaf,0x6,0x4,0x80, - 0xd7,0x40,0x6,0x72,0x28,0x32,0xb7,0x60,0x84,0x94,0x27,0x98,0x83,0xd1,0xe7,0x1, - 0xd8,0xc,0xd9,0x80,0x9e,0xd4,0x4d,0xd8,0xce,0x5e,0xc1,0xe5,0xb1,0xa,0x94,0xc, - 0x50,0xbe,0xf5,0x9f,0x96,0xe7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-busy.png - 0x0,0x0,0x0,0xc9, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x2,0x3,0x0,0x0,0x0,0xe,0x14,0x92,0x67, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x6e,0x49,0x44,0x41,0x54,0x78,0x5e,0xad,0xcd,0xb1,0xd, - 0x85,0x30,0x10,0x3,0x50,0xa7,0xb9,0xd,0x7e,0x1,0xd3,0xdc,0x8,0x29,0x7e,0x36, - 0x88,0x90,0x8e,0x69,0xd2,0xd2,0x7,0xa4,0x64,0x4a,0xb0,0x8e,0xdb,0x0,0x57,0x4f, - 0x2e,0x6c,0x28,0xde,0xe4,0x40,0xd,0x58,0x60,0xd7,0x40,0xb,0x74,0xfc,0x4a,0x21, - 0x6,0xd6,0x39,0x88,0xa9,0x6c,0x88,0x26,0xb3,0x13,0xe7,0xdf,0x61,0x1d,0xb2,0x71, - 0xb5,0x1a,0xd2,0xc1,0x89,0x6c,0xc0,0xc6,0x51,0x5d,0x15,0xb,0x98,0x7,0x7e,0x23, - 0x2d,0xcd,0xe6,0x90,0xab,0x13,0x49,0xe5,0x20,0x0,0xee,0x38,0xf8,0xc5,0xf8,0x7b, - 0x34,0xdf,0xe7,0x6,0xac,0xb8,0x1e,0xf1,0xed,0x75,0x34,0x8c,0x0,0x0,0x0,0x0, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-cross.png - 0x0,0x0,0x0,0x82, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x27,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0xc0,0xd, - 0x1c,0x20,0x14,0xe3,0x4,0xb2,0xe8,0xd0,0x10,0xd6,0x50,0xa0,0x9,0x8c,0xab,0x56, - 0x70,0xad,0x9a,0x80,0xe0,0x93,0x6d,0x1e,0xdc,0x3d,0x58,0x1,0x0,0x4b,0xf4,0xd, - 0x8c,0xd6,0x20,0x22,0xab,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizeh.png - 0x0,0x0,0x0,0x91, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x36,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xa0,0x14, - 0x68,0x30,0x30,0x70,0x81,0xe8,0x25,0xc,0xc,0x6c,0xd,0xc,0xc,0x4c,0x53,0x18, - 0x18,0x58,0x17,0x0,0xc5,0x42,0x80,0x74,0x6,0x3,0x3,0x67,0x28,0x10,0x44,0x20, - 0x68,0x98,0x38,0x4c,0x1d,0x4c,0x1f,0xdc,0x1c,0xf2,0x0,0x0,0xd3,0x23,0xa,0x2f, - 0x9a,0xc3,0x39,0x37,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-forbidden.png - 0x0,0x0,0x0,0xc7, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x6c,0x49,0x44,0x41,0x54,0x78,0x5e,0x75,0xce,0xb1,0xd, - 0x43,0x31,0x8,0x4,0x50,0xbb,0x20,0x1b,0x84,0x79,0x9c,0xd,0x5c,0xe4,0xa7,0x60, - 0x83,0xcf,0x34,0x2e,0x9c,0x4c,0x60,0x22,0xc1,0x94,0xf1,0x45,0xa2,0x8a,0x42,0xf3, - 0xa,0xd0,0x1d,0xe5,0xff,0x5c,0x8f,0x6,0xaa,0xc4,0x1d,0x52,0x84,0x41,0xf6,0x87, - 0x63,0x21,0x4f,0xd2,0xbe,0x55,0x2b,0x32,0xf6,0xd9,0xe9,0x8d,0xe7,0xd6,0xb5,0x5f, - 0xd6,0xd6,0x64,0x12,0x5c,0x6c,0xf5,0x2b,0xf9,0xd,0x5a,0xd5,0x3,0x7a,0x91,0x17, - 0x3c,0x1b,0xbf,0x27,0x72,0x3a,0xc5,0xc8,0xdc,0xec,0xc9,0xde,0xfc,0x23,0xff,0xfa, - 0x99,0xf,0x85,0x37,0x24,0x14,0xff,0x2f,0x73,0xcf,0x0,0x0,0x0,0x0,0x49,0x45, - 0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-hand.png - 0x0,0x0,0x0,0x9f, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x44,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0x60,0x10, - 0x61,0x80,0x80,0x4c,0x28,0x3d,0x8d,0x58,0x7a,0x1,0x94,0x8e,0x6a,0x80,0xd0,0x91, - 0x19,0x20,0x4a,0x63,0x5a,0x64,0x1a,0x98,0xb,0xa5,0xa7,0x4e,0xd,0xd,0x3,0xd1, - 0xaa,0xa1,0x10,0x9a,0x13,0x8d,0x66,0xa,0xd,0x8d,0x40,0xa6,0x19,0xa6,0x86,0x26, - 0xa0,0xd0,0xab,0x56,0x2d,0xc0,0x4a,0xa3,0x0,0x0,0x37,0xd6,0x1a,0x55,0x25,0x9d, - 0xd9,0x18,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-uparrow.png - 0x0,0x0,0x0,0x84, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x29,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x4c,0x2b,0x20,0x34,0x57,0x14,0x84,0xd6,0xc,0x6b,0x0,0xd3,0x4b,0x43,0x17,0x80, - 0xe9,0xa9,0xa1,0x9,0x10,0x89,0x0,0x86,0x81,0xa1,0x17,0x30,0x60,0x2,0x0,0xad, - 0xe7,0xa,0x42,0x37,0xd2,0x7e,0x32,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae, - 0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-openhand.png - 0x0,0x0,0x0,0xa0, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x4,0x0,0x0,0x0,0xb5,0xfa,0x37,0xea, - 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x89,0x0,0x0,0xb,0x89, - 0x1,0x37,0xc9,0xcb,0xad,0x0,0x0,0x0,0x52,0x49,0x44,0x41,0x54,0x28,0xcf,0x85, - 0xd0,0xe1,0xe,0x0,0x10,0x8,0x85,0xd1,0xef,0xfd,0x5f,0xfa,0xfa,0x81,0x74,0x57, - 0x96,0x26,0x9b,0xe,0x1a,0x44,0xe,0x84,0xea,0x4e,0x14,0x90,0x74,0xeb,0x6,0x5e, - 0x61,0xaf,0x27,0xcf,0x60,0x4f,0x23,0x39,0x23,0xe5,0x56,0x2a,0x88,0x7e,0xae,0xf5, - 0x11,0xc0,0xdf,0x57,0x61,0x60,0x27,0xca,0x2d,0x24,0xf2,0x5,0x7f,0x32,0x0,0x64, - 0x5f,0x3d,0x80,0x4a,0xec,0xab,0x3b,0xd2,0x80,0x3e,0x16,0x78,0x30,0x74,0x9a,0xaf, - 0x1e,0xaa,0x62,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-vsplit.png - 0x0,0x0,0x0,0xa1, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x46,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0xd, - 0x14,0xa0,0xf4,0xc,0x8,0xc5,0x14,0x6,0xa1,0x39,0x43,0x1b,0xc0,0xb4,0x6a,0x68, - 0x2,0x98,0xe6,0x9a,0x5,0xe1,0x33,0x8,0x80,0x8,0xa6,0x55,0xab,0x66,0xad,0x5a, - 0x5,0x52,0x5,0x2,0xd,0x70,0x1a,0x1d,0x60,0x91,0x7,0xeb,0x47,0x98,0x7,0x33, - 0x1f,0x66,0x1f,0xcc,0x7e,0x98,0x7b,0xe0,0xee,0x3,0x1,0x0,0x56,0x7,0x14,0x5, - 0x94,0xb6,0xb7,0x4f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-sizev.png - 0x0,0x0,0x0,0x8d, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x32,0x49,0x44,0x41,0x54,0x8,0x5b,0x63,0x60,0xc0,0x0, - 0x4c,0x2b,0x20,0x34,0x57,0x14,0x84,0xd6,0xc,0x6b,0x0,0xd3,0x4b,0x43,0x17,0x80, - 0xe9,0xa9,0xa1,0x9,0x10,0x89,0x0,0x8,0x45,0x6d,0x1a,0x66,0x3e,0xcc,0x3e,0x98, - 0xfd,0x30,0xf7,0xc0,0xdc,0x87,0x2,0x0,0x34,0xf9,0xd,0x53,0x76,0x91,0x98,0xee, - 0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-hsplit.png - 0x0,0x0,0x0,0x9b, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff, - 0xff,0x7e,0xef,0x8f,0x4f,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x40,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x80,0x3, - 0x2e,0x2e,0x8,0xad,0xca,0xda,0x40,0xa,0xcd,0xa1,0xca,0xda,0x4,0xa2,0xd5,0x54, - 0x59,0x3b,0x41,0x2,0xd3,0x80,0x74,0x2,0x3,0x3,0x53,0x18,0x90,0x8e,0x60,0x60, - 0xe0,0xc,0xd,0x65,0xd,0xd,0x43,0xf0,0x61,0xf2,0x70,0xf5,0x30,0xfd,0xa4,0xda, - 0xb,0x77,0x2f,0x18,0x0,0x0,0xac,0x50,0x13,0xb6,0xd7,0xdc,0xaa,0xe9,0x0,0x0, - 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-arrow.png - 0x0,0x0,0x0,0xab, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x50,0x49,0x44,0x41,0x54,0x78,0x5e,0x3d,0xce,0xb1,0xd, - 0x80,0x30,0xc,0x5,0xd1,0xa4,0x80,0x1d,0xd8,0xe6,0xf,0x41,0x22,0x39,0xb5,0xb3, - 0x4f,0x68,0xd8,0x81,0x2d,0x89,0x9c,0x83,0x6b,0x5e,0x63,0x4b,0x3f,0xfd,0x6d,0xb8, - 0xb,0x7,0x3a,0x1a,0x56,0x2d,0xcb,0x40,0x47,0xc3,0xaa,0x65,0x19,0xe8,0xcb,0xf6, - 0x84,0xd5,0xce,0xb0,0x71,0xdf,0x6f,0x85,0x17,0xaa,0xc7,0x5f,0x4e,0xd3,0xe8,0x70, - 0xc4,0x6f,0x59,0xd6,0x84,0x5e,0x5d,0x49,0x11,0xba,0xf,0x75,0x5a,0x95,0x0,0x0, - 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-wait.png - 0x0,0x0,0x0,0xac, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x2,0x3,0x0,0x0,0x0,0xb9,0x87,0x6d,0xf0, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x51,0x49,0x44,0x41,0x54,0x8,0x99,0x63,0x60,0x40,0x7, - 0x52,0xab,0x56,0xad,0x4,0xd3,0xa1,0xa1,0x99,0xc8,0x7c,0xb6,0xd0,0xd0,0x14,0x14, - 0x3a,0x72,0x26,0x84,0xe,0x4b,0x85,0xd0,0x53,0xa7,0x2e,0x1,0xd1,0x8c,0x4b,0xc3, - 0x26,0x80,0xd,0xca,0x9c,0xe5,0x0,0x31,0x30,0x13,0x62,0x70,0x66,0x94,0x3,0x44, - 0x7e,0xda,0x4,0x88,0xfa,0xd0,0x25,0x10,0xf3,0xa6,0xa2,0x9a,0x3,0x33,0x37,0x2d, - 0x2d,0x5,0x9f,0x7b,0x50,0x1,0x0,0xa7,0xcc,0x1d,0xf4,0xaf,0x59,0xb,0x18,0x0, - 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // F:/workspace/Spacescape/trunk/Spacescape/external/QtPropertyBrowser5/src/images/cursor-whatsthis.png - 0x0,0x0,0x0,0xbf, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x2,0x3,0x0,0x0,0x0,0xe,0x14,0x92,0x67, - 0x0,0x0,0x0,0x9,0x50,0x4c,0x54,0x45,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, - 0x0,0x8e,0xf4,0xc3,0xec,0x0,0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6, - 0xd8,0x66,0x0,0x0,0x0,0x64,0x49,0x44,0x41,0x54,0x18,0x57,0x63,0x68,0x60,0x80, - 0x82,0x5,0xc,0xc,0xa1,0x21,0x20,0xc6,0xc,0x6,0xc6,0x55,0x2b,0x41,0x8c,0x69, - 0xc,0x6c,0x53,0xb3,0x1c,0x80,0x8c,0xa9,0xd,0x52,0x13,0x20,0x8c,0x4,0x18,0x23, - 0x2,0xc6,0x8,0x83,0x31,0x42,0x5b,0x1d,0xc1,0xba,0xa6,0x86,0x26,0xb0,0x2d,0x1, - 0x33,0xa2,0x56,0x48,0x4d,0x0,0x9b,0x13,0xc1,0x0,0x61,0xcc,0x98,0x6,0x65,0x2c, - 0x80,0x31,0x1a,0x54,0x1b,0x44,0x3,0xc0,0xd6,0xab,0x36,0x40,0x44,0x18,0x38,0x13, - 0xe0,0xc,0xa8,0x14,0x53,0x3,0xc3,0x80,0x1,0x0,0x24,0xf4,0x1f,0xdd,0x57,0x8f, - 0x2f,0x71,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - -}; - -static const unsigned char qt_resource_name[] = { - // qt-project.org - 0x0,0xe, - 0x5,0x28,0x6c,0x87, - 0x0,0x71, - 0x0,0x74,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x2e,0x0,0x6f,0x0,0x72,0x0,0x67, - // qtpropertybrowser - 0x0,0x11, - 0x4,0xad,0x0,0x62, - 0x0,0x71, - 0x0,0x74,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x65,0x0,0x72, - - // images - 0x0,0x6, - 0x7,0x3,0x7d,0xc3, - 0x0,0x69, - 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, - // cursor-sizeb.png - 0x0,0x10, - 0x4,0x65,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x62,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizeall.png - 0x0,0x12, - 0x8,0x9,0x1f,0x87, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x2e,0x0,0x70,0x0,0x6e, - 0x0,0x67, - // cursor-ibeam.png - 0x0,0x10, - 0xf,0xb0,0x9a,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x61,0x0,0x6d,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizef.png - 0x0,0x10, - 0x4,0x69,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-closedhand.png - 0x0,0x15, - 0x8,0xe,0x3a,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64, - 0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-busy.png - 0x0,0xf, - 0xf,0xe9,0x5b,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x73,0x0,0x79,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-cross.png - 0x0,0x10, - 0x2,0x76,0x90,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-sizeh.png - 0x0,0x10, - 0x4,0x6b,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x68,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-forbidden.png - 0x0,0x14, - 0x2,0x39,0xe9,0x87, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e, - 0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-hand.png - 0x0,0xf, - 0x7,0xa,0x5b,0xa7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-uparrow.png - 0x0,0x12, - 0x9,0x44,0xef,0xc7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e, - 0x0,0x67, - // cursor-openhand.png - 0x0,0x13, - 0x7,0xab,0x44,0xa7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x70, - 0x0,0x6e,0x0,0x67, - // cursor-vsplit.png - 0x0,0x11, - 0xe,0x5,0xc5,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x76,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - - // cursor-sizev.png - 0x0,0x10, - 0x4,0x19,0x71,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x76,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-hsplit.png - 0x0,0x11, - 0xe,0xb,0x85,0x27, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x68,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - - // cursor-arrow.png - 0x0,0x10, - 0xd,0xba,0x94,0x7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-wait.png - 0x0,0xf, - 0x7,0x4a,0x55,0xc7, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // cursor-whatsthis.png - 0x0,0x14, - 0x6,0xbe,0x82,0x47, - 0x0,0x63, - 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2d,0x0,0x77,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x2e, - 0x0,0x70,0x0,0x6e,0x0,0x67, - -}; - -static const unsigned char qt_resource_struct[] = { - // : - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, - // :/qt-project.org - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, - // :/qt-project.org/qtpropertybrowser - 0x0,0x0,0x0,0x22,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, - // :/qt-project.org/qtpropertybrowser/images - 0x0,0x0,0x0,0x4a,0x0,0x2,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x4, - // :/qt-project.org/qtpropertybrowser/images/cursor-forbidden.png - 0x0,0x0,0x1,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0xfb, - // :/qt-project.org/qtpropertybrowser/images/cursor-cross.png - 0x0,0x0,0x1,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xe0, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizev.png - 0x0,0x0,0x2,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0x3a, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeb.png - 0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizef.png - 0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xd7, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeh.png - 0x0,0x0,0x1,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x66, - // :/qt-project.org/qtpropertybrowser/images/cursor-whatsthis.png - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0xc9, - // :/qt-project.org/qtpropertybrowser/images/cursor-hand.png - 0x0,0x0,0x1,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xc6, - // :/qt-project.org/qtpropertybrowser/images/cursor-wait.png - 0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x19, - // :/qt-project.org/qtpropertybrowser/images/cursor-openhand.png - 0x0,0x0,0x2,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6,0xf1, - // :/qt-project.org/qtpropertybrowser/images/cursor-sizeall.png - 0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5, - // :/qt-project.org/qtpropertybrowser/images/cursor-closedhand.png - 0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0x7c, - // :/qt-project.org/qtpropertybrowser/images/cursor-uparrow.png - 0x0,0x0,0x1,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6,0x69, - // :/qt-project.org/qtpropertybrowser/images/cursor-arrow.png - 0x0,0x0,0x2,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0x6a, - // :/qt-project.org/qtpropertybrowser/images/cursor-vsplit.png - 0x0,0x0,0x2,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7,0x95, - // :/qt-project.org/qtpropertybrowser/images/cursor-hsplit.png - 0x0,0x0,0x2,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8,0xcb, - // :/qt-project.org/qtpropertybrowser/images/cursor-ibeam.png - 0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x57, - // :/qt-project.org/qtpropertybrowser/images/cursor-busy.png - 0x0,0x0,0x1,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0x13, - -}; - -QT_BEGIN_NAMESPACE - -extern Q_CORE_EXPORT bool qRegisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -extern Q_CORE_EXPORT bool qUnregisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -QT_END_NAMESPACE - - -int QT_MANGLE_NAMESPACE(qInitResources_qtpropertybrowser)() -{ - QT_PREPEND_NAMESPACE(qRegisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_qtpropertybrowser)) - -int QT_MANGLE_NAMESPACE(qCleanupResources_qtpropertybrowser)() -{ - QT_PREPEND_NAMESPACE(qUnregisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_qtpropertybrowser)) - diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.o deleted file mode 100644 index e99a92b..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qrc_qtpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtbuttonpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtbuttonpropertybrowser.o deleted file mode 100644 index 0dd9957..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtbuttonpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.moc deleted file mode 100644 index 0efbfaf..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.moc +++ /dev/null @@ -1,371 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qteditorfactory.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qteditorfactory.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtCharEdit_t { - QByteArrayData data[6]; - char stringdata[54]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCharEdit_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCharEdit_t qt_meta_stringdata_QtCharEdit = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 12), -QT_MOC_LITERAL(2, 24, 0), -QT_MOC_LITERAL(3, 25, 5), -QT_MOC_LITERAL(4, 31, 8), -QT_MOC_LITERAL(5, 40, 13) - }, - "QtCharEdit\0valueChanged\0\0value\0setValue\0" - "slotClearChar" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCharEdit[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QChar, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QChar, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtCharEdit::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCharEdit *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QChar(*)>(_a[1]))); break; - case 2: _t->slotClearChar(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCharEdit::*_t)(const QChar & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCharEdit::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtCharEdit::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtCharEdit.data, - qt_meta_data_QtCharEdit, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCharEdit::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCharEdit::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCharEdit.stringdata)) - return static_cast(const_cast< QtCharEdit*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtCharEdit::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtCharEdit::valueChanged(const QChar & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtColorEditWidget_t { - QByteArrayData data[6]; - char stringdata[61]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtColorEditWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtColorEditWidget_t qt_meta_stringdata_QtColorEditWidget = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 12), -QT_MOC_LITERAL(2, 31, 0), -QT_MOC_LITERAL(3, 32, 5), -QT_MOC_LITERAL(4, 38, 8), -QT_MOC_LITERAL(5, 47, 13) - }, - "QtColorEditWidget\0valueChanged\0\0value\0" - "setValue\0buttonClicked" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtColorEditWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QColor, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QColor, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtColorEditWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtColorEditWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QColor(*)>(_a[1]))); break; - case 2: _t->buttonClicked(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtColorEditWidget::*_t)(const QColor & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtColorEditWidget::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtColorEditWidget::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtColorEditWidget.data, - qt_meta_data_QtColorEditWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtColorEditWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtColorEditWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtColorEditWidget.stringdata)) - return static_cast(const_cast< QtColorEditWidget*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtColorEditWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtColorEditWidget::valueChanged(const QColor & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -struct qt_meta_stringdata_QtFontEditWidget_t { - QByteArrayData data[6]; - char stringdata[60]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtFontEditWidget_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtFontEditWidget_t qt_meta_stringdata_QtFontEditWidget = { - { -QT_MOC_LITERAL(0, 0, 16), -QT_MOC_LITERAL(1, 17, 12), -QT_MOC_LITERAL(2, 30, 0), -QT_MOC_LITERAL(3, 31, 5), -QT_MOC_LITERAL(4, 37, 8), -QT_MOC_LITERAL(5, 46, 13) - }, - "QtFontEditWidget\0valueChanged\0\0value\0" - "setValue\0buttonClicked" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtFontEditWidget[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 4, 1, 32, 2, 0x0a /* Public */, - 5, 0, 35, 2, 0x08 /* Private */, - - // signals: parameters - QMetaType::Void, QMetaType::QFont, 3, - - // slots: parameters - QMetaType::Void, QMetaType::QFont, 3, - QMetaType::Void, - - 0 // eod -}; - -void QtFontEditWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtFontEditWidget *_t = static_cast(_o); - switch (_id) { - case 0: _t->valueChanged((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - case 1: _t->setValue((*reinterpret_cast< const QFont(*)>(_a[1]))); break; - case 2: _t->buttonClicked(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtFontEditWidget::*_t)(const QFont & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtFontEditWidget::valueChanged)) { - *result = 0; - } - } - } -} - -const QMetaObject QtFontEditWidget::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_QtFontEditWidget.data, - qt_meta_data_QtFontEditWidget, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtFontEditWidget::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtFontEditWidget::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtFontEditWidget.stringdata)) - return static_cast(const_cast< QtFontEditWidget*>(this)); - return QWidget::qt_metacast(_clname); -} - -int QtFontEditWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 3) - qt_static_metacall(this, _c, _id, _a); - _id -= 3; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 3) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtFontEditWidget::valueChanged(const QFont & _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.o deleted file mode 100644 index c4b962f..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qteditorfactory.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtgroupboxpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtgroupboxpropertybrowser.o deleted file mode 100644 index 4cc08ad..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtgroupboxpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowser.o deleted file mode 100644 index da3cfd2..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowserutils.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowserutils.o deleted file mode 100644 index 1fdc5b8..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertybrowserutils.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.moc deleted file mode 100644 index a8349e8..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.moc +++ /dev/null @@ -1,126 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtpropertymanager.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtpropertymanager.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtMetaEnumWrapper_t { - QByteArrayData data[3]; - char stringdata[45]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtMetaEnumWrapper_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtMetaEnumWrapper_t qt_meta_stringdata_QtMetaEnumWrapper = { - { -QT_MOC_LITERAL(0, 0, 17), -QT_MOC_LITERAL(1, 18, 6), -QT_MOC_LITERAL(2, 25, 19) - }, - "QtMetaEnumWrapper\0policy\0QSizePolicy::Policy" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtMetaEnumWrapper[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 0, 0, // methods - 1, 14, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // properties: name, type, flags - 1, 0x80000000 | 2, 0x00095009, - - 0 // eod -}; - -void QtMetaEnumWrapper::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - Q_UNUSED(_o); - Q_UNUSED(_id); - Q_UNUSED(_c); - Q_UNUSED(_a); -} - -static const QMetaObject * const qt_meta_extradata_QtMetaEnumWrapper[] = { - &QSizePolicy::staticMetaObject, - 0 -}; - -const QMetaObject QtMetaEnumWrapper::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtMetaEnumWrapper.data, - qt_meta_data_QtMetaEnumWrapper, qt_static_metacall, qt_meta_extradata_QtMetaEnumWrapper, 0} -}; - - -const QMetaObject *QtMetaEnumWrapper::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtMetaEnumWrapper::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtMetaEnumWrapper.stringdata)) - return static_cast(const_cast< QtMetaEnumWrapper*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtMetaEnumWrapper::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QObject::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - -#ifndef QT_NO_PROPERTIES - if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< QSizePolicy::Policy*>(_v) = policy(); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::WriteProperty) { - _id -= 1; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 1; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } -#endif // QT_NO_PROPERTIES - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.o deleted file mode 100644 index ba5c295..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtpropertymanager.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.moc b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.moc deleted file mode 100644 index 4867cdf..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.moc +++ /dev/null @@ -1,176 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qttreepropertybrowser.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qttreepropertybrowser.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtPropertyEditorView_t { - QByteArrayData data[1]; - char stringdata[21]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPropertyEditorView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPropertyEditorView_t qt_meta_stringdata_QtPropertyEditorView = { - { -QT_MOC_LITERAL(0, 0, 20) - }, - "QtPropertyEditorView" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPropertyEditorView[] = { - - // 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 QtPropertyEditorView::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 QtPropertyEditorView::staticMetaObject = { - { &QTreeWidget::staticMetaObject, qt_meta_stringdata_QtPropertyEditorView.data, - qt_meta_data_QtPropertyEditorView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPropertyEditorView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPropertyEditorView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPropertyEditorView.stringdata)) - return static_cast(const_cast< QtPropertyEditorView*>(this)); - return QTreeWidget::qt_metacast(_clname); -} - -int QtPropertyEditorView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QTreeWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - return _id; -} -struct qt_meta_stringdata_QtPropertyEditorDelegate_t { - QByteArrayData data[4]; - char stringdata[53]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtPropertyEditorDelegate_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtPropertyEditorDelegate_t qt_meta_stringdata_QtPropertyEditorDelegate = { - { -QT_MOC_LITERAL(0, 0, 24), -QT_MOC_LITERAL(1, 25, 19), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 6) - }, - "QtPropertyEditorDelegate\0slotEditorDestroyed\0" - "\0object" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtPropertyEditorDelegate[] = { - - // 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, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, QMetaType::QObjectStar, 3, - - 0 // eod -}; - -void QtPropertyEditorDelegate::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtPropertyEditorDelegate *_t = static_cast(_o); - switch (_id) { - case 0: _t->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject QtPropertyEditorDelegate::staticMetaObject = { - { &QItemDelegate::staticMetaObject, qt_meta_stringdata_QtPropertyEditorDelegate.data, - qt_meta_data_QtPropertyEditorDelegate, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtPropertyEditorDelegate::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtPropertyEditorDelegate::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtPropertyEditorDelegate.stringdata)) - return static_cast(const_cast< QtPropertyEditorDelegate*>(this)); - return QItemDelegate::qt_metacast(_clname); -} - -int QtPropertyEditorDelegate::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QItemDelegate::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(_a[0]) = -1; - _id -= 1; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.o deleted file mode 100644 index d02753b..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qttreepropertybrowser.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtvariantproperty.o b/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtvariantproperty.o deleted file mode 100644 index c32fb3c..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/buildlib/release/qtvariantproperty.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/config.pri b/trunk/Spacescape/external/QtPropertyBrowser5/config.pri index f66a784..b62531c 100644 --- a/trunk/Spacescape/external/QtPropertyBrowser5/config.pri +++ b/trunk/Spacescape/external/QtPropertyBrowser5/config.pri @@ -1 +1 @@ -SOLUTIONS_LIBRARY = yes +SOLUTIONS_LIBRARY = yes diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/main.o deleted file mode 100644 index 06d1210..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/mainwindow.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/mainwindow.o deleted file mode 100644 index 3c01cee..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/mainwindow.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.cpp deleted file mode 100644 index 2af3fe0..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.cpp +++ /dev/null @@ -1,291 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'mainwindow.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "mainwindow.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'mainwindow.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_CanvasView_t { - QByteArrayData data[6]; - char stringdata[53]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_CanvasView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_CanvasView_t qt_meta_stringdata_CanvasView = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 11), -QT_MOC_LITERAL(2, 23, 0), -QT_MOC_LITERAL(3, 24, 13), -QT_MOC_LITERAL(4, 38, 4), -QT_MOC_LITERAL(5, 43, 9) - }, - "CanvasView\0itemClicked\0\0QtCanvasItem*\0" - "item\0itemMoved" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_CanvasView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 24, 2, 0x06 /* Public */, - 5, 1, 27, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - 0 // eod -}; - -void CanvasView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - CanvasView *_t = static_cast(_o); - switch (_id) { - case 0: _t->itemClicked((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 1: _t->itemMoved((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (CanvasView::*_t)(QtCanvasItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&CanvasView::itemClicked)) { - *result = 0; - } - } - { - typedef void (CanvasView::*_t)(QtCanvasItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&CanvasView::itemMoved)) { - *result = 1; - } - } - } -} - -const QMetaObject CanvasView::staticMetaObject = { - { &QtCanvasView::staticMetaObject, qt_meta_stringdata_CanvasView.data, - qt_meta_data_CanvasView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *CanvasView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *CanvasView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_CanvasView.stringdata)) - return static_cast(const_cast< CanvasView*>(this)); - return QtCanvasView::qt_metacast(_clname); -} - -int CanvasView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtCanvasView::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void CanvasView::itemClicked(QtCanvasItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void CanvasView::itemMoved(QtCanvasItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_MainWindow_t { - QByteArrayData data[17]; - char stringdata[164]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 12), -QT_MOC_LITERAL(2, 24, 0), -QT_MOC_LITERAL(3, 25, 10), -QT_MOC_LITERAL(4, 36, 7), -QT_MOC_LITERAL(5, 44, 7), -QT_MOC_LITERAL(6, 52, 12), -QT_MOC_LITERAL(7, 65, 8), -QT_MOC_LITERAL(8, 74, 8), -QT_MOC_LITERAL(9, 83, 11), -QT_MOC_LITERAL(10, 95, 13), -QT_MOC_LITERAL(11, 109, 4), -QT_MOC_LITERAL(12, 114, 9), -QT_MOC_LITERAL(13, 124, 12), -QT_MOC_LITERAL(14, 137, 11), -QT_MOC_LITERAL(15, 149, 8), -QT_MOC_LITERAL(16, 158, 5) - }, - "MainWindow\0newRectangle\0\0newEllipse\0" - "newLine\0newText\0deleteObject\0clearAll\0" - "fillView\0itemClicked\0QtCanvasItem*\0" - "item\0itemMoved\0valueChanged\0QtProperty*\0" - "property\0value" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MainWindow[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 15, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 0, 89, 2, 0x08 /* Private */, - 3, 0, 90, 2, 0x08 /* Private */, - 4, 0, 91, 2, 0x08 /* Private */, - 5, 0, 92, 2, 0x08 /* Private */, - 6, 0, 93, 2, 0x08 /* Private */, - 7, 0, 94, 2, 0x08 /* Private */, - 8, 0, 95, 2, 0x08 /* Private */, - 9, 1, 96, 2, 0x08 /* Private */, - 12, 1, 99, 2, 0x08 /* Private */, - 13, 2, 102, 2, 0x08 /* Private */, - 13, 2, 107, 2, 0x08 /* Private */, - 13, 2, 112, 2, 0x08 /* Private */, - 13, 2, 117, 2, 0x08 /* Private */, - 13, 2, 122, 2, 0x08 /* Private */, - 13, 2, 127, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, 0x80000000 | 10, 11, - QMetaType::Void, 0x80000000 | 10, 11, - QMetaType::Void, 0x80000000 | 14, QMetaType::Double, 15, 16, - QMetaType::Void, 0x80000000 | 14, QMetaType::QString, 15, 16, - QMetaType::Void, 0x80000000 | 14, QMetaType::QColor, 15, 16, - QMetaType::Void, 0x80000000 | 14, QMetaType::QFont, 15, 16, - QMetaType::Void, 0x80000000 | 14, QMetaType::QPoint, 15, 16, - QMetaType::Void, 0x80000000 | 14, QMetaType::QSize, 15, 16, - - 0 // eod -}; - -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MainWindow *_t = static_cast(_o); - switch (_id) { - case 0: _t->newRectangle(); break; - case 1: _t->newEllipse(); break; - case 2: _t->newLine(); break; - case 3: _t->newText(); break; - case 4: _t->deleteObject(); break; - case 5: _t->clearAll(); break; - case 6: _t->fillView(); break; - case 7: _t->itemClicked((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 8: _t->itemMoved((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 9: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< double(*)>(_a[2]))); break; - case 10: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 11: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QColor(*)>(_a[2]))); break; - case 12: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QFont(*)>(_a[2]))); break; - case 13: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QPoint(*)>(_a[2]))); break; - case 14: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QSize(*)>(_a[2]))); break; - default: ; - } - } -} - -const QMetaObject MainWindow::staticMetaObject = { - { &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow.data, - qt_meta_data_MainWindow, qt_static_metacall, 0, 0} -}; - - -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 0; - if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata)) - return static_cast(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 < 15) - qt_static_metacall(this, _c, _id, _a); - _id -= 15; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 15) - *reinterpret_cast(_a[0]) = -1; - _id -= 15; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.o deleted file mode 100644 index 3c6e272..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_mainwindow.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.cpp deleted file mode 100644 index 6cb51c7..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.cpp +++ /dev/null @@ -1,267 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtcanvas.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "qtcanvas.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtcanvas.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtCanvas_t { - QByteArrayData data[5]; - char stringdata[33]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCanvas_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCanvas_t qt_meta_stringdata_QtCanvas = { - { -QT_MOC_LITERAL(0, 0, 8), -QT_MOC_LITERAL(1, 9, 7), -QT_MOC_LITERAL(2, 17, 0), -QT_MOC_LITERAL(3, 18, 7), -QT_MOC_LITERAL(4, 26, 6) - }, - "QtCanvas\0resized\0\0advance\0update" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCanvas[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 3, 0, 30, 2, 0x0a /* Public */, - 4, 0, 31, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtCanvas::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCanvas *_t = static_cast(_o); - switch (_id) { - case 0: _t->resized(); break; - case 1: _t->advance(); break; - case 2: _t->update(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCanvas::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCanvas::resized)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject QtCanvas::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtCanvas.data, - qt_meta_data_QtCanvas, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCanvas::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCanvas::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCanvas.stringdata)) - return static_cast(const_cast< QtCanvas*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtCanvas::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) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtCanvas::resized() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -struct qt_meta_stringdata_QtCanvasView_t { - QByteArrayData data[6]; - char stringdata[85]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCanvasView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCanvasView_t qt_meta_stringdata_QtCanvasView = { - { -QT_MOC_LITERAL(0, 0, 12), -QT_MOC_LITERAL(1, 13, 23), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 6), -QT_MOC_LITERAL(4, 45, 18), -QT_MOC_LITERAL(5, 64, 20) - }, - "QtCanvasView\0setHighQualityRendering\0" - "\0enable\0updateContentsSize\0" - "highQualityRendering" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCanvasView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 1, 28, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 1, 24, 2, 0x0a /* Public */, - 4, 0, 27, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, QMetaType::Bool, 3, - QMetaType::Void, - - // properties: name, type, flags - 5, QMetaType::Bool, 0x00095103, - - 0 // eod -}; - -void QtCanvasView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCanvasView *_t = static_cast(_o); - switch (_id) { - case 0: _t->setHighQualityRendering((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 1: _t->updateContentsSize(); break; - default: ; - } - } -} - -const QMetaObject QtCanvasView::staticMetaObject = { - { &QScrollArea::staticMetaObject, qt_meta_stringdata_QtCanvasView.data, - qt_meta_data_QtCanvasView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCanvasView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCanvasView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCanvasView.stringdata)) - return static_cast(const_cast< QtCanvasView*>(this)); - return QScrollArea::qt_metacast(_clname); -} - -int QtCanvasView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QScrollArea::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(_a[0]) = -1; - _id -= 2; - } -#ifndef QT_NO_PROPERTIES - else if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< bool*>(_v) = highQualityRendering(); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::WriteProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: setHighQualityRendering(*reinterpret_cast< bool*>(_v)); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 1; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } -#endif // QT_NO_PROPERTIES - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.o deleted file mode 100644 index c46a791..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/moc_qtcanvas.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/qtcanvas.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/qtcanvas.o deleted file mode 100644 index 0bb4901..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_typed/qtcanvas.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/main.o deleted file mode 100644 index bc28c3e..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/mainwindow.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/mainwindow.o deleted file mode 100644 index bb84a95..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/mainwindow.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.cpp deleted file mode 100644 index 3af209c..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.cpp +++ /dev/null @@ -1,276 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'mainwindow.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "mainwindow.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'mainwindow.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_CanvasView_t { - QByteArrayData data[6]; - char stringdata[53]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_CanvasView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_CanvasView_t qt_meta_stringdata_CanvasView = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 11), -QT_MOC_LITERAL(2, 23, 0), -QT_MOC_LITERAL(3, 24, 13), -QT_MOC_LITERAL(4, 38, 4), -QT_MOC_LITERAL(5, 43, 9) - }, - "CanvasView\0itemClicked\0\0QtCanvasItem*\0" - "item\0itemMoved" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_CanvasView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 1, 24, 2, 0x06 /* Public */, - 5, 1, 27, 2, 0x06 /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, 4, - QMetaType::Void, 0x80000000 | 3, 4, - - 0 // eod -}; - -void CanvasView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - CanvasView *_t = static_cast(_o); - switch (_id) { - case 0: _t->itemClicked((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 1: _t->itemMoved((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (CanvasView::*_t)(QtCanvasItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&CanvasView::itemClicked)) { - *result = 0; - } - } - { - typedef void (CanvasView::*_t)(QtCanvasItem * ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&CanvasView::itemMoved)) { - *result = 1; - } - } - } -} - -const QMetaObject CanvasView::staticMetaObject = { - { &QtCanvasView::staticMetaObject, qt_meta_stringdata_CanvasView.data, - qt_meta_data_CanvasView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *CanvasView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *CanvasView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_CanvasView.stringdata)) - return static_cast(const_cast< CanvasView*>(this)); - return QtCanvasView::qt_metacast(_clname); -} - -int CanvasView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtCanvasView::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(_a[0]) = -1; - _id -= 2; - } - return _id; -} - -// SIGNAL 0 -void CanvasView::itemClicked(QtCanvasItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void CanvasView::itemMoved(QtCanvasItem * _t1) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_MainWindow_t { - QByteArrayData data[17]; - char stringdata[164]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { - { -QT_MOC_LITERAL(0, 0, 10), -QT_MOC_LITERAL(1, 11, 12), -QT_MOC_LITERAL(2, 24, 0), -QT_MOC_LITERAL(3, 25, 10), -QT_MOC_LITERAL(4, 36, 7), -QT_MOC_LITERAL(5, 44, 7), -QT_MOC_LITERAL(6, 52, 12), -QT_MOC_LITERAL(7, 65, 8), -QT_MOC_LITERAL(8, 74, 8), -QT_MOC_LITERAL(9, 83, 11), -QT_MOC_LITERAL(10, 95, 13), -QT_MOC_LITERAL(11, 109, 4), -QT_MOC_LITERAL(12, 114, 9), -QT_MOC_LITERAL(13, 124, 12), -QT_MOC_LITERAL(14, 137, 11), -QT_MOC_LITERAL(15, 149, 8), -QT_MOC_LITERAL(16, 158, 5) - }, - "MainWindow\0newRectangle\0\0newEllipse\0" - "newLine\0newText\0deleteObject\0clearAll\0" - "fillView\0itemClicked\0QtCanvasItem*\0" - "item\0itemMoved\0valueChanged\0QtProperty*\0" - "property\0value" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MainWindow[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 10, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 0, 64, 2, 0x08 /* Private */, - 3, 0, 65, 2, 0x08 /* Private */, - 4, 0, 66, 2, 0x08 /* Private */, - 5, 0, 67, 2, 0x08 /* Private */, - 6, 0, 68, 2, 0x08 /* Private */, - 7, 0, 69, 2, 0x08 /* Private */, - 8, 0, 70, 2, 0x08 /* Private */, - 9, 1, 71, 2, 0x08 /* Private */, - 12, 1, 74, 2, 0x08 /* Private */, - 13, 2, 77, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, - QMetaType::Void, 0x80000000 | 10, 11, - QMetaType::Void, 0x80000000 | 10, 11, - QMetaType::Void, 0x80000000 | 14, QMetaType::QVariant, 15, 16, - - 0 // eod -}; - -void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MainWindow *_t = static_cast(_o); - switch (_id) { - case 0: _t->newRectangle(); break; - case 1: _t->newEllipse(); break; - case 2: _t->newLine(); break; - case 3: _t->newText(); break; - case 4: _t->deleteObject(); break; - case 5: _t->clearAll(); break; - case 6: _t->fillView(); break; - case 7: _t->itemClicked((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 8: _t->itemMoved((*reinterpret_cast< QtCanvasItem*(*)>(_a[1]))); break; - case 9: _t->valueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - default: ; - } - } -} - -const QMetaObject MainWindow::staticMetaObject = { - { &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow.data, - qt_meta_data_MainWindow, qt_static_metacall, 0, 0} -}; - - -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 0; - if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata)) - return static_cast(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 < 10) - qt_static_metacall(this, _c, _id, _a); - _id -= 10; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 10) - *reinterpret_cast(_a[0]) = -1; - _id -= 10; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.o deleted file mode 100644 index d9a0dfd..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_mainwindow.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.cpp deleted file mode 100644 index 6cb51c7..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.cpp +++ /dev/null @@ -1,267 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'qtcanvas.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "qtcanvas.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'qtcanvas.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_QtCanvas_t { - QByteArrayData data[5]; - char stringdata[33]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCanvas_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCanvas_t qt_meta_stringdata_QtCanvas = { - { -QT_MOC_LITERAL(0, 0, 8), -QT_MOC_LITERAL(1, 9, 7), -QT_MOC_LITERAL(2, 17, 0), -QT_MOC_LITERAL(3, 18, 7), -QT_MOC_LITERAL(4, 26, 6) - }, - "QtCanvas\0resized\0\0advance\0update" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCanvas[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 3, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 1, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 0, 29, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 3, 0, 30, 2, 0x0a /* Public */, - 4, 0, 31, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, - - // slots: parameters - QMetaType::Void, - QMetaType::Void, - - 0 // eod -}; - -void QtCanvas::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCanvas *_t = static_cast(_o); - switch (_id) { - case 0: _t->resized(); break; - case 1: _t->advance(); break; - case 2: _t->update(); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (QtCanvas::*_t)(); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&QtCanvas::resized)) { - *result = 0; - } - } - } - Q_UNUSED(_a); -} - -const QMetaObject QtCanvas::staticMetaObject = { - { &QObject::staticMetaObject, qt_meta_stringdata_QtCanvas.data, - qt_meta_data_QtCanvas, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCanvas::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCanvas::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCanvas.stringdata)) - return static_cast(const_cast< QtCanvas*>(this)); - return QObject::qt_metacast(_clname); -} - -int QtCanvas::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) - *reinterpret_cast(_a[0]) = -1; - _id -= 3; - } - return _id; -} - -// SIGNAL 0 -void QtCanvas::resized() -{ - QMetaObject::activate(this, &staticMetaObject, 0, 0); -} -struct qt_meta_stringdata_QtCanvasView_t { - QByteArrayData data[6]; - char stringdata[85]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_QtCanvasView_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_QtCanvasView_t qt_meta_stringdata_QtCanvasView = { - { -QT_MOC_LITERAL(0, 0, 12), -QT_MOC_LITERAL(1, 13, 23), -QT_MOC_LITERAL(2, 37, 0), -QT_MOC_LITERAL(3, 38, 6), -QT_MOC_LITERAL(4, 45, 18), -QT_MOC_LITERAL(5, 64, 20) - }, - "QtCanvasView\0setHighQualityRendering\0" - "\0enable\0updateContentsSize\0" - "highQualityRendering" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_QtCanvasView[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 2, 14, // methods - 1, 28, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: name, argc, parameters, tag, flags - 1, 1, 24, 2, 0x0a /* Public */, - 4, 0, 27, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, QMetaType::Bool, 3, - QMetaType::Void, - - // properties: name, type, flags - 5, QMetaType::Bool, 0x00095103, - - 0 // eod -}; - -void QtCanvasView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - QtCanvasView *_t = static_cast(_o); - switch (_id) { - case 0: _t->setHighQualityRendering((*reinterpret_cast< bool(*)>(_a[1]))); break; - case 1: _t->updateContentsSize(); break; - default: ; - } - } -} - -const QMetaObject QtCanvasView::staticMetaObject = { - { &QScrollArea::staticMetaObject, qt_meta_stringdata_QtCanvasView.data, - qt_meta_data_QtCanvasView, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *QtCanvasView::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *QtCanvasView::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_QtCanvasView.stringdata)) - return static_cast(const_cast< QtCanvasView*>(this)); - return QScrollArea::qt_metacast(_clname); -} - -int QtCanvasView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QScrollArea::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(_a[0]) = -1; - _id -= 2; - } -#ifndef QT_NO_PROPERTIES - else if (_c == QMetaObject::ReadProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: *reinterpret_cast< bool*>(_v) = highQualityRendering(); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::WriteProperty) { - void *_v = _a[0]; - switch (_id) { - case 0: setHighQualityRendering(*reinterpret_cast< bool*>(_v)); break; - default: break; - } - _id -= 1; - } else if (_c == QMetaObject::ResetProperty) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyDesignable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyScriptable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyStored) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyEditable) { - _id -= 1; - } else if (_c == QMetaObject::QueryPropertyUser) { - _id -= 1; - } else if (_c == QMetaObject::RegisterPropertyMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } -#endif // QT_NO_PROPERTIES - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.o deleted file mode 100644 index c46a791..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/moc_qtcanvas.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/qtcanvas.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/qtcanvas.o deleted file mode 100644 index c9cc4f4..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/canvas_variant/qtcanvas.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.moc b/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.moc deleted file mode 100644 index 05cc4ca..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.moc +++ /dev/null @@ -1,261 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'main.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'main.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_DecoratedDoublePropertyManager_t { - QByteArrayData data[10]; - char stringdata[115]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_DecoratedDoublePropertyManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_DecoratedDoublePropertyManager_t qt_meta_stringdata_DecoratedDoublePropertyManager = { - { -QT_MOC_LITERAL(0, 0, 30), -QT_MOC_LITERAL(1, 31, 13), -QT_MOC_LITERAL(2, 45, 0), -QT_MOC_LITERAL(3, 46, 11), -QT_MOC_LITERAL(4, 58, 8), -QT_MOC_LITERAL(5, 67, 6), -QT_MOC_LITERAL(6, 74, 13), -QT_MOC_LITERAL(7, 88, 6), -QT_MOC_LITERAL(8, 95, 9), -QT_MOC_LITERAL(9, 105, 9) - }, - "DecoratedDoublePropertyManager\0" - "prefixChanged\0\0QtProperty*\0property\0" - "prefix\0suffixChanged\0suffix\0setPrefix\0" - "setSuffix" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_DecoratedDoublePropertyManager[] = { - - // content: - 7, // revision - 0, // classname - 0, 0, // classinfo - 4, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 2, // signalCount - - // signals: name, argc, parameters, tag, flags - 1, 2, 34, 2, 0x06 /* Public */, - 6, 2, 39, 2, 0x06 /* Public */, - - // slots: name, argc, parameters, tag, flags - 8, 2, 44, 2, 0x0a /* Public */, - 9, 2, 49, 2, 0x0a /* Public */, - - // signals: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 7, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 7, - - 0 // eod -}; - -void DecoratedDoublePropertyManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - DecoratedDoublePropertyManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->prefixChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->suffixChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 2: _t->setPrefix((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 3: _t->setSuffix((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - default: ; - } - } else if (_c == QMetaObject::IndexOfMethod) { - int *result = reinterpret_cast(_a[0]); - void **func = reinterpret_cast(_a[1]); - { - typedef void (DecoratedDoublePropertyManager::*_t)(QtProperty * , const QString & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DecoratedDoublePropertyManager::prefixChanged)) { - *result = 0; - } - } - { - typedef void (DecoratedDoublePropertyManager::*_t)(QtProperty * , const QString & ); - if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&DecoratedDoublePropertyManager::suffixChanged)) { - *result = 1; - } - } - } -} - -const QMetaObject DecoratedDoublePropertyManager::staticMetaObject = { - { &QtDoublePropertyManager::staticMetaObject, qt_meta_stringdata_DecoratedDoublePropertyManager.data, - qt_meta_data_DecoratedDoublePropertyManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *DecoratedDoublePropertyManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *DecoratedDoublePropertyManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_DecoratedDoublePropertyManager.stringdata)) - return static_cast(const_cast< DecoratedDoublePropertyManager*>(this)); - return QtDoublePropertyManager::qt_metacast(_clname); -} - -int DecoratedDoublePropertyManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtDoublePropertyManager::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(_a[0]) = -1; - _id -= 4; - } - return _id; -} - -// SIGNAL 0 -void DecoratedDoublePropertyManager::prefixChanged(QtProperty * _t1, const QString & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 0, _a); -} - -// SIGNAL 1 -void DecoratedDoublePropertyManager::suffixChanged(QtProperty * _t1, const QString & _t2) -{ - void *_a[] = { 0, const_cast(reinterpret_cast(&_t1)), const_cast(reinterpret_cast(&_t2)) }; - QMetaObject::activate(this, &staticMetaObject, 1, _a); -} -struct qt_meta_stringdata_DecoratedDoubleSpinBoxFactory_t { - QByteArrayData data[9]; - char stringdata[122]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_DecoratedDoubleSpinBoxFactory_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_DecoratedDoubleSpinBoxFactory_t qt_meta_stringdata_DecoratedDoubleSpinBoxFactory = { - { -QT_MOC_LITERAL(0, 0, 29), -QT_MOC_LITERAL(1, 30, 17), -QT_MOC_LITERAL(2, 48, 0), -QT_MOC_LITERAL(3, 49, 11), -QT_MOC_LITERAL(4, 61, 8), -QT_MOC_LITERAL(5, 70, 6), -QT_MOC_LITERAL(6, 77, 17), -QT_MOC_LITERAL(7, 95, 19), -QT_MOC_LITERAL(8, 115, 6) - }, - "DecoratedDoubleSpinBoxFactory\0" - "slotPrefixChanged\0\0QtProperty*\0property\0" - "prefix\0slotSuffixChanged\0slotEditorDestroyed\0" - "object" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_DecoratedDoubleSpinBoxFactory[] = { - - // 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, 2, 29, 2, 0x08 /* Private */, - 6, 2, 34, 2, 0x08 /* Private */, - 7, 1, 39, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QString, 4, 5, - QMetaType::Void, QMetaType::QObjectStar, 8, - - 0 // eod -}; - -void DecoratedDoubleSpinBoxFactory::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - DecoratedDoubleSpinBoxFactory *_t = static_cast(_o); - switch (_id) { - case 0: _t->slotPrefixChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 1: _t->slotSuffixChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2]))); break; - case 2: _t->slotEditorDestroyed((*reinterpret_cast< QObject*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject DecoratedDoubleSpinBoxFactory::staticMetaObject = { - { &QtAbstractEditorFactory::staticMetaObject, qt_meta_stringdata_DecoratedDoubleSpinBoxFactory.data, - qt_meta_data_DecoratedDoubleSpinBoxFactory, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *DecoratedDoubleSpinBoxFactory::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *DecoratedDoubleSpinBoxFactory::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_DecoratedDoubleSpinBoxFactory.stringdata)) - return static_cast(const_cast< DecoratedDoubleSpinBoxFactory*>(this)); - return QtAbstractEditorFactory::qt_metacast(_clname); -} - -int DecoratedDoubleSpinBoxFactory::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtAbstractEditorFactory::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.o deleted file mode 100644 index 8b72c7d..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/decoration/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/main.o deleted file mode 100644 index f634611..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.cpp deleted file mode 100644 index ad0bd73..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.cpp +++ /dev/null @@ -1,273 +0,0 @@ -/**************************************************************************** -** Resource object code -** -** Created by: The Resource Compiler for Qt version 5.3.1 -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include - -static const unsigned char qt_resource_data[] = { - // /Users/alex/Documents/workspace/spacescape/spacescape-git/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/images/up.png - 0x0,0x0,0x2,0xb4, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b, - 0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd6,0xd8,0xd4,0x4f,0x58,0x32, - 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, - 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x2,0x46,0x49,0x44,0x41,0x54,0x38,0xcb,0xb5, - 0xd4,0xbf,0x4f,0x14,0x41,0x14,0xc0,0xf1,0xef,0x9b,0x59,0xe,0x41,0xc,0x39,0x2d, - 0x8d,0x89,0x1,0x51,0x8c,0xc1,0xc2,0xc6,0x86,0x9a,0xa8,0xc4,0x1f,0x21,0x44,0xd, - 0x9c,0xc6,0x42,0x88,0x4a,0x21,0x1a,0x2b,0xff,0x0,0x2b,0x6d,0x8d,0xc1,0x92,0xc2, - 0x42,0x9,0xa5,0x21,0x12,0xd,0xc6,0x98,0x10,0x25,0x16,0x16,0x54,0x48,0xac,0x8c, - 0xe2,0xc9,0xc1,0x71,0x70,0xde,0xed,0xee,0xb3,0xb8,0xb9,0x83,0x5b,0xf,0xb3,0x10, - 0x79,0xc9,0x64,0xb6,0x98,0xf9,0xcc,0x9b,0xd9,0x37,0xe3,0xa9,0x2a,0x3b,0x11,0x1e, - 0x3b,0x14,0xb1,0x61,0x11,0xd9,0x3,0x88,0xaa,0x2e,0xff,0x37,0x58,0x44,0x4e,0xd5, - 0xef,0xb2,0x2f,0x11,0x45,0x44,0x46,0x80,0xfb,0x40,0x46,0x55,0x83,0x6d,0xc3,0x22, - 0x72,0xa1,0x39,0x99,0x18,0xbf,0x3c,0x70,0x94,0xd6,0x63,0xca,0xd8,0xe8,0xec,0xe0, - 0xf4,0x64,0x31,0x1,0xdc,0x15,0x91,0xac,0xaa,0xfa,0x5b,0x86,0x45,0xe4,0xb8,0x31, - 0x32,0x7e,0x75,0xa8,0x83,0x3,0x6d,0x45,0x16,0xb3,0xf3,0x74,0x76,0x7,0x14,0xa, - 0x72,0xed,0xd3,0x5b,0xb5,0xc0,0xb0,0x88,0x2c,0xd7,0xc2,0xbd,0x7f,0xa0,0x3d,0xbb, - 0x9b,0xea,0xc6,0xce,0xf7,0x1d,0xa2,0xa5,0x5d,0x59,0xc8,0xcc,0x11,0x84,0xab,0xd4, - 0x59,0xe8,0xea,0x5,0x23,0x5c,0x99,0x99,0x42,0x80,0xdb,0xb5,0x70,0x6f,0xb3,0x4c, - 0x1b,0x1a,0xbd,0xb1,0x81,0x3b,0x1d,0xec,0x6f,0xf1,0x59,0xca,0xce,0x13,0x86,0xab, - 0x58,0x1,0x31,0x60,0x4,0x4e,0x5f,0x14,0x8c,0xd1,0xd4,0x87,0x37,0x50,0xb,0xf7, - 0x6a,0xa0,0x5d,0x89,0x7a,0x33,0xd1,0xd3,0xdf,0xc6,0xc1,0xc3,0x21,0xbf,0x96,0xe6, - 0x8,0xc3,0x35,0x3c,0x87,0x8a,0xb8,0x66,0xa1,0xfb,0x92,0x60,0x44,0x53,0xd3,0xaf, - 0xff,0xc6,0xbd,0x28,0xda,0x9c,0x4c,0x4c,0xf4,0x5f,0x6f,0xa7,0xe5,0x88,0xb0,0xb2, - 0xf2,0x15,0xdd,0x90,0xa9,0x94,0x7b,0x3,0x86,0x12,0x7e,0xae,0x4f,0xb0,0x46,0x53, - 0xef,0x27,0xab,0xf1,0x68,0xc6,0x37,0xcf,0xf4,0xd6,0xd1,0xb4,0xf7,0x33,0xe9,0x45, - 0x48,0xd4,0x53,0x9d,0xa9,0x1,0x63,0x40,0x28,0xf5,0x3f,0xbf,0x43,0x2e,0x7,0x27, - 0x4e,0xa,0x85,0xbc,0xa6,0x3e,0xbe,0x63,0x16,0x78,0x24,0x22,0x41,0x14,0x7e,0xf2, - 0xec,0x69,0xce,0x2,0x67,0x1,0x1e,0x8e,0x24,0xf9,0x5d,0xcc,0xd4,0x44,0x8d,0x81, - 0x7c,0xe,0x1e,0x3f,0xa8,0x3c,0x9,0xcf,0x81,0x51,0xdc,0x66,0xa2,0xf0,0x2b,0x60, - 0xa,0x68,0x4,0xd2,0xfb,0x9a,0x5b,0xf9,0x91,0x9e,0x59,0x3f,0xd7,0xd,0xa8,0x91, - 0x92,0xe0,0xa2,0x13,0xf8,0x6,0x2c,0x1,0x1,0xa0,0x51,0x58,0x81,0x22,0x90,0x3, - 0xb0,0x42,0x55,0x25,0x94,0xd1,0xf2,0xe,0xac,0x54,0xe6,0x65,0x5d,0xcb,0x3,0xbe, - 0xaa,0x56,0xc3,0x5a,0x7a,0xea,0x2,0x20,0x10,0x11,0xac,0x28,0x9e,0xd1,0x9a,0xa8, - 0x18,0xb0,0xeb,0x29,0xe7,0x81,0xbc,0xaa,0x16,0x62,0xdd,0x3c,0xe3,0xb2,0xaa,0xc0, - 0xae,0x2f,0x9f,0xb7,0x27,0xe2,0x36,0xb9,0xc5,0x2b,0x6d,0x0,0x1b,0x59,0x40,0x36, - 0x2c,0x62,0x8d,0x6e,0xef,0x75,0x4b,0x2f,0xcc,0x30,0xff,0x65,0xfd,0x8c,0xcb,0x65, - 0x57,0x86,0xd7,0x56,0x2b,0x43,0x7d,0x20,0x8c,0xb,0x8f,0xdc,0xba,0xc1,0x60,0x8c, - 0x57,0xf5,0x5,0xb0,0xe6,0xfe,0x4d,0x2c,0x78,0x8,0xb8,0x7,0x34,0x1,0xd,0x9b, - 0x8c,0xf5,0x1d,0xba,0xe2,0xbe,0x63,0xc1,0x81,0x9b,0x54,0x4,0x96,0xa9,0x2a,0xdb, - 0x4a,0x84,0x6e,0x9c,0x1f,0x3b,0x63,0x57,0x7a,0x7e,0x34,0x93,0xb8,0xf1,0x7,0xd8, - 0x7c,0xd4,0x7a,0x77,0x80,0x8e,0xe,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae, - 0x42,0x60,0x82, - // /Users/alex/Documents/workspace/spacescape/spacescape-git/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/images/down.png - 0x0,0x0,0x2,0x52, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b, - 0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd6,0xd8,0xd4,0x4f,0x58,0x32, - 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, - 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x1,0xe4,0x49,0x44,0x41,0x54,0x38,0x8d,0xbd, - 0xd4,0xcf,0x4f,0xd3,0x60,0x1c,0xc7,0xf1,0xb5,0x5b,0x69,0x3b,0x37,0xcc,0x96,0x68, - 0x42,0xa6,0x82,0x98,0xa1,0x1c,0x38,0x98,0xe0,0xcd,0x8b,0x28,0xa4,0x12,0xa3,0x19, - 0x48,0x48,0x20,0x1a,0x6e,0x1a,0x16,0xe5,0xc4,0xc5,0x18,0x42,0x23,0x3a,0xa2,0xc6, - 0x18,0x63,0xc6,0x8f,0x39,0x6,0x54,0xb3,0xf2,0x40,0x3c,0x29,0x97,0x72,0xf1,0x2f, - 0xfb,0xf0,0x7d,0x6a,0x4b,0xea,0xb6,0x67,0x3c,0x90,0xe0,0x93,0xbc,0x8f,0x7d,0xf5, - 0xc9,0xd3,0x6f,0x9f,0x18,0x80,0xd8,0x59,0x74,0x26,0xe8,0xff,0x87,0x69,0x95,0x29, - 0x48,0xb4,0x46,0x25,0x28,0x45,0x16,0x46,0xfd,0xcf,0xb,0x6c,0x78,0x4f,0x85,0x2d, - 0xd5,0x6f,0x85,0x78,0x9a,0xe3,0xd2,0xf0,0xa6,0xf7,0x4,0xcb,0x6c,0x50,0xd8,0x33, - 0xfb,0x7a,0x8,0x77,0x51,0x86,0x34,0xbc,0xe5,0x4d,0xe1,0x3d,0xbb,0x29,0xec,0xb9, - 0x9d,0xf,0xe1,0x5e,0xea,0x9c,0x34,0xec,0x78,0x93,0xf8,0xc8,0x6,0x84,0xcd,0xda, - 0xbd,0x21,0xdc,0xc7,0x8f,0x43,0x1a,0xfe,0xe1,0x3d,0xc6,0x27,0xd6,0x2f,0xac,0x68, - 0x77,0x9f,0xe,0x76,0xbd,0x2,0xbe,0xb0,0xbc,0xb0,0x39,0xfb,0x92,0x1c,0x4c,0x4b, - 0xa3,0x56,0xc2,0x51,0xda,0x3d,0x78,0x84,0xaf,0xac,0x47,0x58,0xa9,0x72,0x39,0x3a, - 0x76,0xbf,0xa9,0x51,0x2a,0x1e,0x8e,0x5e,0x14,0x9e,0xb3,0x1e,0x76,0xe1,0xe7,0xc1, - 0x3,0xbf,0xfa,0xfe,0x6d,0xac,0xb2,0x9c,0xb0,0xb2,0x9b,0xc3,0xda,0xee,0x15,0x54, - 0xf6,0xae,0x62,0xa6,0x98,0xe1,0xc0,0x2f,0x3e,0x1d,0x94,0xda,0x8,0xeb,0xd4,0xfa, - 0x90,0x65,0x62,0xd5,0xbd,0x88,0x75,0xd6,0xbe,0xcf,0xb5,0xb,0x98,0x5f,0xcc,0x60, - 0xb4,0x90,0x44,0x2a,0xad,0x72,0x60,0x3a,0x98,0xe9,0x78,0x23,0xac,0x50,0x29,0xaa, - 0x76,0xd7,0x32,0x50,0x71,0xb3,0xa8,0xb2,0xe6,0xbe,0xed,0x64,0xb1,0xe2,0x64,0xb0, - 0xb0,0xdc,0x89,0x3b,0x23,0x6,0x34,0x4d,0xe1,0xf,0x17,0xa9,0x1c,0x95,0x6c,0xda, - 0x71,0x80,0xf3,0xdf,0x33,0x4b,0x39,0xf7,0xac,0xe,0x6c,0xb8,0x69,0x6c,0xb2,0x7f, - 0x2b,0xd7,0x52,0x58,0x78,0x97,0xc4,0xd8,0xa4,0xe,0xdd,0xf0,0xd1,0x19,0x2a,0x1f, - 0x3c,0xd7,0xd1,0x74,0xc6,0xad,0xf0,0x61,0x2b,0x81,0x2d,0xd7,0x84,0xc3,0xfe,0x56, - 0x75,0x4c,0xd8,0x25,0x1d,0x43,0xc3,0x9,0x98,0xa6,0x8f,0xbe,0x6e,0x85,0xb6,0x1b, - 0xb7,0x23,0x7c,0xc4,0x52,0xf1,0x7d,0x47,0x43,0x75,0x5b,0x43,0xe9,0x43,0x2,0xe3, - 0x13,0x2a,0x14,0x25,0x16,0xdd,0x69,0xa6,0x11,0x6d,0x7b,0x6d,0x46,0x71,0xeb,0xbe, - 0x82,0x37,0x6f,0x55,0x14,0xc6,0x14,0xfa,0x50,0x3e,0xfa,0x4a,0xb4,0x53,0xa9,0xfb, - 0x38,0xc0,0xf9,0x25,0xb3,0x6d,0x18,0x31,0xe8,0xba,0x8f,0xbe,0x3c,0xe,0x3d,0x16, - 0x8e,0xe0,0x7c,0x5a,0xae,0x51,0x37,0x82,0x17,0x9d,0x6f,0x87,0x4a,0xc1,0x1,0x1e, - 0xf,0x20,0x23,0x98,0xf7,0x96,0x97,0xfb,0x89,0xe1,0xd3,0x74,0x8,0x56,0x10,0xa, - 0xb,0xb1,0xaa,0xe0,0x42,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82, - // /Users/alex/Documents/workspace/spacescape/spacescape-git/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/images/right.png - 0x0,0x0,0x2,0x8f, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b, - 0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd6,0xd8,0xd4,0x4f,0x58,0x32, - 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, - 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x2,0x21,0x49,0x44,0x41,0x54,0x38,0x8d,0xed, - 0xd2,0x4d,0x6b,0x13,0x61,0x10,0xc0,0xf1,0xff,0x3c,0xdb,0x8b,0x28,0xfd,0x0,0xc5, - 0x83,0x37,0x3f,0x80,0xa1,0x27,0x3d,0xe8,0x41,0x4f,0x82,0x17,0x6f,0xa2,0x9e,0x4, - 0x11,0xf1,0x4b,0x88,0x1e,0xf4,0xd0,0x56,0x29,0x6,0x6d,0xb5,0x62,0xda,0xd4,0x50, - 0x6a,0x85,0xd8,0x50,0xb5,0xa,0xe2,0xa5,0x31,0x26,0xa,0xe2,0x4b,0x23,0xb4,0xd4, - 0xd2,0xa4,0x89,0x6d,0x2d,0x89,0x79,0x6b,0x32,0x1e,0xb2,0xb1,0x9b,0x6c,0x36,0x90, - 0x83,0x37,0x7,0x96,0x79,0xe0,0xd9,0xfd,0x31,0x33,0x3b,0xa2,0xaa,0xfc,0x8b,0x90, - 0xff,0x70,0xd7,0xb0,0x88,0x1c,0x7,0x2e,0x2,0x77,0x80,0xe7,0x80,0x6a,0x87,0x8f, - 0xbb,0x81,0xa7,0xcf,0x5d,0x39,0x70,0x6a,0xea,0xc1,0x12,0xb9,0x5f,0x9c,0x4,0xe6, - 0x80,0x8a,0x17,0xde,0xd,0xac,0x3,0xc1,0x7e,0x5e,0x46,0xa2,0x44,0xc6,0x95,0x4a, - 0x99,0x23,0xc0,0x82,0x17,0xde,0x4,0x8b,0xc8,0x30,0xf5,0x76,0xdb,0xc6,0xed,0xc9, - 0x7e,0x92,0x2b,0x51,0xbe,0xbc,0x83,0xd7,0x33,0x4a,0xb1,0xc0,0x59,0x60,0xb2,0x1d, - 0xde,0xa,0xab,0xff,0xf1,0x9,0x7e,0x17,0x7f,0x22,0x16,0x8,0x20,0x2,0xc6,0x80, - 0x18,0x8b,0x62,0x79,0x93,0xcd,0xed,0x45,0x8c,0x8,0xc9,0xcf,0xca,0xf4,0x88,0x52, - 0xc8,0x73,0x18,0x88,0xb6,0xe2,0x2e,0x78,0xf0,0xa1,0x8f,0xd5,0x4c,0xcc,0x1,0x82, - 0x91,0x7a,0x96,0x46,0x36,0x50,0xad,0xc0,0xfb,0xb7,0x30,0x1b,0x54,0x6a,0x35,0xce, - 0x0,0x21,0x27,0xee,0x82,0x6f,0x3d,0xf2,0xb1,0xb6,0x6e,0xc3,0x56,0x1d,0xc5,0x81, - 0x1b,0x63,0x77,0x62,0xc0,0x18,0x61,0xf1,0x93,0x12,0x1a,0x51,0xb6,0xb7,0x38,0xd, - 0x3c,0x6d,0xe0,0x2e,0x78,0x38,0x50,0x87,0x8d,0xd9,0xad,0x58,0x5a,0xd0,0xbf,0x77, - 0x2,0x8,0x2c,0xbc,0x81,0x99,0x80,0x52,0x2a,0xb2,0x1f,0x48,0xab,0xea,0x8e,0x7b, - 0xc6,0x1,0x1f,0xa9,0x8c,0x7,0x2c,0xcd,0xa8,0x18,0xc8,0xe7,0x21,0xbd,0xa,0xfe, - 0x9b,0x4a,0xa9,0xc4,0x41,0x60,0x59,0x55,0x4b,0x2e,0xf8,0xde,0xb8,0x8f,0x74,0x36, - 0x86,0x18,0xb0,0x1c,0x33,0x15,0x7,0xda,0x18,0x4b,0x2e,0x7,0x99,0x14,0xcc,0x47, - 0x94,0x44,0x94,0x27,0xc0,0x65,0x20,0xab,0xaa,0x45,0x17,0x3c,0x3a,0xe1,0x63,0x3d, - 0x1b,0xdb,0x5,0xac,0xe6,0x4a,0xb1,0xcf,0xb9,0x1c,0xa4,0xd7,0xe0,0x45,0x58,0xf9, - 0x18,0x67,0x16,0xb8,0x6,0x7c,0x3,0xb6,0x54,0xb5,0xec,0x82,0xc7,0x82,0x87,0xc8, - 0xd8,0xb0,0x38,0x2a,0x6c,0xfc,0x48,0x71,0xa0,0x73,0x61,0xf8,0x10,0x27,0x2,0x5c, - 0x5,0x56,0x80,0xd,0xa0,0xa0,0xaa,0x55,0x17,0x7c,0x63,0x10,0x96,0x97,0x9a,0x57, - 0xcc,0x18,0xe8,0xeb,0x83,0xde,0xde,0xfa,0x4c,0x53,0x29,0x88,0x34,0xa3,0x3f,0x1c, - 0xe8,0x4e,0xbb,0x75,0xf3,0x3,0x17,0xf0,0x88,0xbb,0xf7,0xe1,0x7b,0x12,0x22,0xcf, - 0x20,0xd1,0x1,0x6d,0x7,0xf7,0x0,0x7b,0x80,0x7d,0x76,0xee,0x71,0xb8,0x5f,0x47, - 0xc7,0x60,0x68,0x0,0x12,0x71,0xc2,0xc0,0x75,0x2f,0xb4,0x1d,0x2c,0x80,0x65,0x83, - 0x16,0x60,0x1c,0xef,0xe,0x1d,0x3d,0xc6,0xf9,0x57,0xf3,0x84,0x6c,0x74,0xc3,0xb, - 0x75,0xc1,0x9d,0x42,0x44,0xf6,0x2,0x97,0x80,0x9,0xa0,0x68,0x3f,0x6d,0xd1,0x6e, - 0x61,0xe3,0xe8,0xa4,0x6,0x54,0xbd,0x50,0x80,0x3f,0x6d,0xca,0x56,0xe4,0x6d,0xd4, - 0x88,0xab,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - // /Users/alex/Documents/workspace/spacescape/spacescape-git/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/images/left.png - 0x0,0x0,0x2,0xa6, - 0x89, - 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc4,0xb4,0x6c,0x3b, - 0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd6,0xd8,0xd4,0x4f,0x58,0x32, - 0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, - 0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64, - 0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x2,0x38,0x49,0x44,0x41,0x54,0x38,0xcb,0xdd, - 0x94,0x41,0x48,0x54,0x51,0x14,0x86,0xbf,0x73,0xde,0x73,0xd4,0x4c,0x44,0x70,0x1d, - 0x65,0x4a,0x53,0x60,0x5b,0x37,0x2d,0x2b,0x5a,0x14,0x65,0x64,0x96,0x4c,0x11,0x94, - 0x42,0x14,0x24,0xd1,0xaa,0x55,0xb4,0x8,0x5a,0xb4,0x8f,0xa1,0x9d,0xab,0x28,0x71, - 0x19,0x92,0x65,0x89,0xd0,0xca,0x5d,0x50,0x1b,0x93,0x16,0x61,0x52,0xd2,0xcc,0x38, - 0xa3,0x36,0xf3,0xde,0x9c,0x16,0xf3,0x7c,0x5e,0x75,0x1c,0xc3,0x70,0xd3,0x81,0xcb, - 0xbb,0x8f,0x7b,0xce,0x77,0xff,0x7b,0xce,0x3d,0xd7,0x37,0x33,0x76,0xc3,0x7c,0x76, - 0xc9,0xfe,0x53,0xb0,0x88,0x9c,0x4,0x6e,0x2,0x4f,0x81,0xd7,0x80,0xd9,0x36,0xc5, - 0xf1,0xff,0x6,0xda,0xd2,0x9a,0x18,0x3b,0xde,0x9b,0x60,0x24,0x9d,0xf7,0x80,0xf7, - 0x40,0x9,0x8,0x77,0xc,0x16,0x91,0xa3,0x89,0x7a,0x1d,0xbb,0x74,0x23,0x49,0x7d, - 0xdb,0x47,0x80,0x33,0xc0,0x1e,0xa0,0xb0,0x63,0xb0,0x88,0x9c,0x6f,0x6c,0xf2,0x47, - 0x7a,0xfa,0x3b,0x69,0x4f,0xa,0xf3,0x99,0xf8,0xe4,0xb,0xd1,0xfa,0xc6,0x90,0x34, - 0x70,0xb,0x8,0xcd,0xcc,0xfc,0xad,0x94,0x36,0x35,0xd7,0x8d,0xc,0xc,0x75,0xb1, - 0xff,0x50,0x99,0x6c,0xe1,0x2b,0xf5,0x9,0x78,0xf8,0xac,0x95,0xb6,0x96,0x83,0x88, - 0x10,0xf,0x4,0xe6,0x7e,0x4e,0xf3,0x60,0xc0,0x6,0x81,0x7b,0xc0,0x32,0x10,0xf8, - 0x55,0xa0,0xe7,0x54,0x65,0xb4,0xe7,0x72,0x7,0xfb,0x3a,0x2,0x7e,0xe5,0x66,0x8, - 0xc3,0x25,0x7c,0x85,0xa0,0x98,0x61,0x7e,0x61,0x1a,0x51,0x50,0x40,0xb4,0x32,0xbe, - 0xcd,0xc4,0xe1,0x7b,0xa3,0xfc,0xaf,0x7,0x8b,0xc8,0xa9,0x96,0xd6,0xc4,0xe8,0xf5, - 0xdb,0x5d,0xb4,0x27,0x8d,0x6c,0x7e,0x16,0x9,0x97,0xf1,0x14,0x54,0x2a,0x10,0x55, - 0x10,0x9c,0xb9,0x80,0xaf,0x31,0xa2,0x11,0xc8,0xad,0xcb,0xb1,0x88,0x34,0x37,0x34, - 0x78,0xaf,0xae,0xe,0x1e,0xe6,0x40,0x67,0x91,0x4c,0xe6,0xb,0x61,0x79,0x29,0xe, - 0x76,0xa1,0xea,0x40,0x25,0xda,0xd4,0xa9,0x99,0x6e,0x2c,0x9e,0x20,0x46,0xf2,0x48, - 0x99,0xec,0xe2,0x2c,0x16,0x1d,0xdf,0xcd,0xa7,0x56,0x81,0x8a,0xae,0x53,0xbc,0xf9, - 0x56,0x98,0x59,0x4e,0x44,0xd2,0xcf,0x87,0x3f,0xf,0x9e,0x38,0x1d,0xe0,0xf9,0xe0, - 0x89,0x3,0x90,0x35,0xa8,0x3a,0x50,0xd5,0x8a,0xdf,0x76,0xd7,0xed,0xfe,0xe4,0x78, - 0x29,0x51,0x2a,0x72,0xed,0x6c,0xaf,0xe0,0xe9,0xda,0x51,0x57,0xa1,0x44,0x73,0x71, - 0x36,0xa9,0xa9,0x38,0xb2,0xc,0x70,0xf7,0xc3,0x24,0x9e,0xa7,0x76,0xa5,0xe7,0x22, - 0xf8,0xe2,0x80,0x37,0x28,0x55,0x11,0xd4,0xab,0xf8,0xd4,0x4,0x9b,0x59,0x28,0x22, - 0x8b,0xc0,0xd0,0xd4,0x3b,0x44,0x85,0xd4,0x85,0x3e,0xf0,0xea,0xe0,0xc7,0x77,0x58, - 0xca,0x83,0xc9,0x5a,0x8e,0x57,0xbf,0xcb,0x85,0x18,0x11,0x0,0xe5,0xaa,0x9d,0x67, - 0x66,0x81,0x88,0xe4,0x80,0x3b,0x93,0x13,0xe0,0x9,0xa9,0xbe,0xfe,0xa,0xf4,0xf1, - 0xa3,0x4d,0xde,0xee,0xcf,0xcb,0xa8,0x39,0xc2,0x2d,0x5b,0xda,0x85,0x4f,0xbc,0x5, - 0x55,0x52,0xdd,0xdd,0xf1,0xf2,0x31,0x60,0x11,0x58,0x71,0x42,0x82,0x8,0x9a,0x8f, - 0xe6,0x5b,0xbf,0x15,0x2e,0xfc,0xcd,0x38,0xfc,0x5e,0x21,0x5,0xbc,0x0,0xe6,0xaa, - 0x80,0xcb,0x91,0xd2,0xa0,0xa6,0xe2,0x6a,0xf0,0xa9,0x29,0x3e,0x1,0xc3,0x40,0x16, - 0x58,0x31,0xb3,0xe2,0x3f,0xbd,0xc7,0xe,0xfc,0x49,0xd4,0x55,0xab,0xca,0x6a,0xda, - 0x1f,0xc9,0x19,0xc4,0x91,0xf7,0xf4,0x60,0x5d,0x0,0x0,0x0,0x0,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82, - -}; - -static const unsigned char qt_resource_name[] = { - // demo - 0x0,0x4, - 0x0,0x6,0xac,0x3f, - 0x0,0x64, - 0x0,0x65,0x0,0x6d,0x0,0x6f, - // images - 0x0,0x6, - 0x7,0x3,0x7d,0xc3, - 0x0,0x69, - 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, - // up.png - 0x0,0x6, - 0x7,0xc3,0x57,0x47, - 0x0,0x75, - 0x0,0x70,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // down.png - 0x0,0x8, - 0x6,0xe1,0x5a,0x27, - 0x0,0x64, - 0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // right.png - 0x0,0x9, - 0xd,0xf7,0xa6,0xa7, - 0x0,0x72, - 0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - // left.png - 0x0,0x8, - 0xb,0xd7,0x59,0x7, - 0x0,0x6c, - 0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, - -}; - -static const unsigned char qt_resource_struct[] = { - // : - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, - // :/demo - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, - // :/demo/images - 0x0,0x0,0x0,0xe,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3, - // :/demo/images/down.png - 0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0xb8, - // :/demo/images/up.png - 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - // :/demo/images/left.png - 0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7,0xa1, - // :/demo/images/right.png - 0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xe, - -}; - -QT_BEGIN_NAMESPACE - -extern Q_CORE_EXPORT bool qRegisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -extern Q_CORE_EXPORT bool qUnregisterResourceData - (int, const unsigned char *, const unsigned char *, const unsigned char *); - -QT_END_NAMESPACE - - -int QT_MANGLE_NAMESPACE(qInitResources_demo)() -{ - QT_PREPEND_NAMESPACE(qRegisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_demo)) - -int QT_MANGLE_NAMESPACE(qCleanupResources_demo)() -{ - QT_PREPEND_NAMESPACE(qUnregisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); - return 1; -} - -Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_demo)) - diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.o deleted file mode 100644 index 63bf0ab..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/demo/qrc_demo.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.moc b/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.moc deleted file mode 100644 index 8f7ec26..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.moc +++ /dev/null @@ -1,121 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'main.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'main.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_VariantManager_t { - QByteArrayData data[9]; - char stringdata[95]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_VariantManager_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_VariantManager_t qt_meta_stringdata_VariantManager = { - { -QT_MOC_LITERAL(0, 0, 14), -QT_MOC_LITERAL(1, 15, 8), -QT_MOC_LITERAL(2, 24, 0), -QT_MOC_LITERAL(3, 25, 11), -QT_MOC_LITERAL(4, 37, 8), -QT_MOC_LITERAL(5, 46, 3), -QT_MOC_LITERAL(6, 50, 16), -QT_MOC_LITERAL(7, 67, 5), -QT_MOC_LITERAL(8, 73, 21) - }, - "VariantManager\0setValue\0\0QtProperty*\0" - "property\0val\0slotValueChanged\0value\0" - "slotPropertyDestroyed" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_VariantManager[] = { - - // 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, 2, 29, 2, 0x0a /* Public */, - 6, 2, 34, 2, 0x08 /* Private */, - 8, 1, 39, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 5, - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 4, 7, - QMetaType::Void, 0x80000000 | 3, 4, - - 0 // eod -}; - -void VariantManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - VariantManager *_t = static_cast(_o); - switch (_id) { - case 0: _t->setValue((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 1: _t->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - case 2: _t->slotPropertyDestroyed((*reinterpret_cast< QtProperty*(*)>(_a[1]))); break; - default: ; - } - } -} - -const QMetaObject VariantManager::staticMetaObject = { - { &QtVariantPropertyManager::staticMetaObject, qt_meta_stringdata_VariantManager.data, - qt_meta_data_VariantManager, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *VariantManager::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *VariantManager::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_VariantManager.stringdata)) - return static_cast(const_cast< VariantManager*>(this)); - return QtVariantPropertyManager::qt_metacast(_clname); -} - -int VariantManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QtVariantPropertyManager::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(_a[0]) = -1; - _id -= 3; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.o deleted file mode 100644 index c4e9204..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/extension/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.moc b/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.moc deleted file mode 100644 index 34c3f4d..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.moc +++ /dev/null @@ -1,108 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'main.cpp' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'main.cpp' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_MyController_t { - QByteArrayData data[3]; - char stringdata[31]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_MyController_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_MyController_t qt_meta_stringdata_MyController = { - { -QT_MOC_LITERAL(0, 0, 12), -QT_MOC_LITERAL(1, 13, 16), -QT_MOC_LITERAL(2, 30, 0) - }, - "MyController\0createAndControl\0" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_MyController[] = { - - // 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, 0, 19, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, - - 0 // eod -}; - -void MyController::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - MyController *_t = static_cast(_o); - switch (_id) { - case 0: _t->createAndControl(); break; - default: ; - } - } - Q_UNUSED(_a); -} - -const QMetaObject MyController::staticMetaObject = { - { &QDialog::staticMetaObject, qt_meta_stringdata_MyController.data, - qt_meta_data_MyController, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *MyController::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *MyController::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_MyController.stringdata)) - return static_cast(const_cast< MyController*>(this)); - return QDialog::qt_metacast(_clname); -} - -int MyController::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(_a[0]) = -1; - _id -= 1; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.o deleted file mode 100644 index 8bd05e1..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/main.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/moc_objectcontroller.cpp b/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/moc_objectcontroller.cpp deleted file mode 100644 index 0a22f3a..0000000 --- a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/moc_objectcontroller.cpp +++ /dev/null @@ -1,110 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'objectcontroller.h' -** -** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.1) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "objectcontroller.h" -#include -#include -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'objectcontroller.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 67 -#error "This file was generated using the moc from 5.3.1. 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_ObjectController_t { - QByteArrayData data[4]; - char stringdata[47]; -}; -#define QT_MOC_LITERAL(idx, ofs, len) \ - Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ - qptrdiff(offsetof(qt_meta_stringdata_ObjectController_t, stringdata) + ofs \ - - idx * sizeof(QByteArrayData)) \ - ) -static const qt_meta_stringdata_ObjectController_t qt_meta_stringdata_ObjectController = { - { -QT_MOC_LITERAL(0, 0, 16), -QT_MOC_LITERAL(1, 17, 16), -QT_MOC_LITERAL(2, 34, 0), -QT_MOC_LITERAL(3, 35, 11) - }, - "ObjectController\0slotValueChanged\0\0" - "QtProperty*" -}; -#undef QT_MOC_LITERAL - -static const uint qt_meta_data_ObjectController[] = { - - // 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, 2, 19, 2, 0x08 /* Private */, - - // slots: parameters - QMetaType::Void, 0x80000000 | 3, QMetaType::QVariant, 2, 2, - - 0 // eod -}; - -void ObjectController::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - ObjectController *_t = static_cast(_o); - switch (_id) { - case 0: _t->d_func()->slotValueChanged((*reinterpret_cast< QtProperty*(*)>(_a[1])),(*reinterpret_cast< const QVariant(*)>(_a[2]))); break; - default: ; - } - } -} - -const QMetaObject ObjectController::staticMetaObject = { - { &QWidget::staticMetaObject, qt_meta_stringdata_ObjectController.data, - qt_meta_data_ObjectController, qt_static_metacall, 0, 0} -}; - - -const QMetaObject *ObjectController::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; -} - -void *ObjectController::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_ObjectController.stringdata)) - return static_cast(const_cast< ObjectController*>(this)); - return QWidget::qt_metacast(_clname); -} - -int ObjectController::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QWidget::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 1) - qt_static_metacall(this, _c, _id, _a); - _id -= 1; - } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { - if (_id < 1) - *reinterpret_cast(_a[0]) = -1; - _id -= 1; - } - return _id; -} -QT_END_MOC_NAMESPACE diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/objectcontroller.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/objectcontroller.o deleted file mode 100644 index b7340d8..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/object_controller/objectcontroller.o and /dev/null differ diff --git a/trunk/Spacescape/external/QtPropertyBrowser5/examples/simple/main.o b/trunk/Spacescape/external/QtPropertyBrowser5/examples/simple/main.o deleted file mode 100644 index 6f3209f..0000000 Binary files a/trunk/Spacescape/external/QtPropertyBrowser5/examples/simple/main.o and /dev/null differ diff --git a/trunk/Spacescape/src/QtOgreWidget.cpp b/trunk/Spacescape/src/QtOgreWidget.cpp index b2c119a..ab17ba2 100644 --- a/trunk/Spacescape/src/QtOgreWidget.cpp +++ b/trunk/Spacescape/src/QtOgreWidget.cpp @@ -46,7 +46,8 @@ QtOgreWidget::QtOgreWidget(QWidget* parent, Qt::WindowFlags f) : QWidget(parent) //QtOgreWidget::QtOgreWidget(QWidget *parent) : QWidget(parent) { setAttribute(Qt::WA_PaintOnScreen); setAttribute(Qt::WA_NoBackground); - + setAttribute(Qt::WA_NativeWindow); + mRenderWindow = NULL; mOgreRoot = NULL; } @@ -76,7 +77,7 @@ void QtOgreWidget::configure(void) { SetCurrentDirectory(path.toStdString().c_str()); #endif -#if defined(Q_WS_X11) +#if defined(Q_OS_UNIX) mOgreRoot = new Ogre::Root("plugins.cfg", "app.cfg", "app.log"); #else #ifdef _DEBUG diff --git a/trunk/Spacescape/src/QtSpacescapeExportFileDialog.cpp b/trunk/Spacescape/src/QtSpacescapeExportFileDialog.cpp index e575cab..614bd5f 100644 --- a/trunk/Spacescape/src/QtSpacescapeExportFileDialog.cpp +++ b/trunk/Spacescape/src/QtSpacescapeExportFileDialog.cpp @@ -56,7 +56,7 @@ QtSpacescapeExportFileDialog::QtSpacescapeExportFileDialog(QWidget *parent, Qt:: { } QtSpacescapeExportFileDialog::QtSpacescapeExportFileDialog(const QFileDialogArgs &args) : - QFileDialog(args) + QFileDialog(args.parent, args.caption, args.directory, args.filter) { } diff --git a/trunk/SpacescapePlugin/src/SpacescapeBillboardSet.cpp b/trunk/SpacescapePlugin/src/SpacescapeBillboardSet.cpp index e15ea68..f4d13bd 100644 --- a/trunk/SpacescapePlugin/src/SpacescapeBillboardSet.cpp +++ b/trunk/SpacescapePlugin/src/SpacescapeBillboardSet.cpp @@ -1003,7 +1003,7 @@ namespace Ogre { getWorldTransforms(&xworld); - sph.setCenter(xworld.transformAffine(bill.mPosition)); + sph.setCenter(xworld * bill.mPosition); if (bill.mOwnDimensions) { diff --git a/trunk/SpacescapePlugin/src/SpacescapeLayerPoints.cpp b/trunk/SpacescapePlugin/src/SpacescapeLayerPoints.cpp index 6f2f135..4364f97 100644 --- a/trunk/SpacescapePlugin/src/SpacescapeLayerPoints.cpp +++ b/trunk/SpacescapePlugin/src/SpacescapeLayerPoints.cpp @@ -306,13 +306,18 @@ namespace Ogre Pass* pass = mMaterial->getTechnique(0)->getPass(0); // load the vertex program - gpuProgram = HighLevelGpuProgramManager::getSingleton(). - createProgram("spacescape_points_glsl_vp", - ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, - "glsl", - GPT_VERTEX_PROGRAM); - gpuProgram->setSource(spacescape_points_glsl_vp); - gpuProgram->load(); + gpuProgram = HighLevelGpuProgramManager::getSingleton().getByName("spacescape_points_glsl_vp"); + + if(!gpuProgram) + { + gpuProgram = HighLevelGpuProgramManager::getSingleton(). + createProgram("spacescape_points_glsl_vp", + ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, + "glsl", + GPT_VERTEX_PROGRAM); + gpuProgram->setSource(spacescape_points_glsl_vp); + gpuProgram->load(); + } // set the vertex program pass->setVertexProgram("spacescape_points_glsl_vp"); @@ -322,14 +327,18 @@ namespace Ogre params->setNamedAutoConstant("worldViewProj",GpuProgramParameters::ACT_WORLDVIEWPROJ_MATRIX); // load the fragment program - gpuProgram = HighLevelGpuProgramManager::getSingleton(). - createProgram("spacescape_points_glsl_fp", - ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, - "glsl", - GPT_FRAGMENT_PROGRAM); - gpuProgram->setSource(spacescape_points_glsl_fp); - gpuProgram->load(); - + gpuProgram = HighLevelGpuProgramManager::getSingleton().getByName("spacescape_points_glsl_fp"); + + if(!gpuProgram) + { + gpuProgram = HighLevelGpuProgramManager::getSingleton(). + createProgram("spacescape_points_glsl_fp", + ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, + "glsl", + GPT_FRAGMENT_PROGRAM); + gpuProgram->setSource(spacescape_points_glsl_fp); + gpuProgram->load(); + } // set the fragment program pass->setFragmentProgram("spacescape_points_glsl_fp"); diff --git a/trunk/SpacescapePlugin/src/SpacescapePlugin.cpp b/trunk/SpacescapePlugin/src/SpacescapePlugin.cpp index 6fb07ad..45e10d6 100644 --- a/trunk/SpacescapePlugin/src/SpacescapePlugin.cpp +++ b/trunk/SpacescapePlugin/src/SpacescapePlugin.cpp @@ -43,7 +43,7 @@ THE SOFTWARE. //#include "half.h" #include "OgreLogManager.h" #include "OgreCamera.h" -#include "OgreViewPort.h" +#include "OgreViewport.h" #include "OgreTechnique.h" namespace Ogre