diff --git a/samples/qt/FuncDemo/FuncDemo.pro b/samples/qt/FuncDemo/FuncDemo.pro index c6bb1dc48d..64fa96d48d 100644 --- a/samples/qt/FuncDemo/FuncDemo.pro +++ b/samples/qt/FuncDemo/FuncDemo.pro @@ -1,40 +1,12 @@ -###################################################################### -# Automatically generated by qmake (2.01a) ?? 11. ??? 12:03:38 2016 -###################################################################### - TEMPLATE = app -TARGET = -DEPENDPATH += . src -INCLUDEPATH += . +CONFIG += debug_and_release qt -# Input -HEADERS += src/BaseDriver.h \ - src/CircleDriver.h \ - src/ConeDriver.h \ - src/CylinderDriver.h \ - src/edge.h \ - src/FThread.h \ - src/graphwidget.h \ - src/mainwindow.h \ - src/node.h \ - src/PointDriver.h \ - src/PrismDriver.h \ - src/ShapeSaverDriver.h \ - src/SimpleDriver.h -SOURCES += src/BaseDriver.cpp \ - src/CircleDriver.cpp \ - src/ConeDriver.cpp \ - src/CylinderDriver.cpp \ - src/edge.cpp \ - src/FThread.cpp \ - src/graphwidget.cpp \ - src/main.cpp \ - src/mainwindow.cpp \ - src/node.cpp \ - src/PointDriver.cpp \ - src/PrismDriver.cpp \ - src/ShapeSaverDriver.cpp \ - src/SimpleDriver.cpp +TARGET = FuncDemo + +SAMPLESROOT = $$quote($$(CASROOT)/samples/qt) + +HEADERS = src/*.h +SOURCES = src/*.cpp INCLUDEPATH += $$quote($$(CASROOT)/inc) @@ -86,6 +58,24 @@ win32 { LIBS += -lTKernel -lTKMath -lTKBRep -lTKGeomBase -lTKGeomAlgo -lTKG3d -lTKG2d \ -lTKTopAlgo -lTKMesh -lTKPrim -lTKCDF -lTKLCAF -lTKCAF -lTKBO +lrelease.name = LRELEASE ${QMAKE_FILE_IN} +lrelease.commands = lrelease ${QMAKE_FILE_IN} -qm $${RES_DIR}/${QMAKE_FILE_BASE}.qm +lrelease.output = ${QMAKE_FILE_BASE}.qm +lrelease.input = TS_FILES +lrelease.clean = $${RES_DIR}/${QMAKE_FILE_BASE}.qm +lrelease.CONFIG += no_link target_predeps +QMAKE_EXTRA_COMPILERS += lrelease + +copy_res.name = Copy resource ${QMAKE_FILE_IN} +copy_res.output = ${QMAKE_FILE_BASE}${QMAKE_FILE_EXT} +copy_res.clean = $${RES_DIR}/${QMAKE_FILE_BASE}${QMAKE_FILE_EXT} +copy_res.input = RES_FILES +copy_res.CONFIG += no_link target_predeps +win32: copy_res.commands = type ${QMAKE_FILE_IN} > $${RES_DIR}/${QMAKE_FILE_BASE}${QMAKE_FILE_EXT} +unix: copy_res.commands = cp -f ${QMAKE_FILE_IN} $${RES_DIR} +QMAKE_EXTRA_COMPILERS += copy_res +#QMAKE_CXXFLAGS += /wd4996 + greaterThan(QT_MAJOR_VERSION, 4) { QT += widgets } diff --git a/samples/qt/FuncDemo/custom.bat b/samples/qt/FuncDemo/custom.bat index 895b72e0c3..115ac2c09f 100644 --- a/samples/qt/FuncDemo/custom.bat +++ b/samples/qt/FuncDemo/custom.bat @@ -1,3 +1,3 @@ @echo off rem Define QTDIR variable -set QTDIR=D:\Qt\4.8.2 +set QTDIR= diff --git a/samples/qt/FuncDemo/custom.sh b/samples/qt/FuncDemo/custom.sh new file mode 100644 index 0000000000..708bb7faae --- /dev/null +++ b/samples/qt/FuncDemo/custom.sh @@ -0,0 +1,3 @@ +#!/bin/bash +#Define QTDIR variables in order to generate Makefile files by qmake +export QTDIR= diff --git a/samples/qt/FuncDemo/env.sh b/samples/qt/FuncDemo/env.sh new file mode 100644 index 0000000000..f081139a1a --- /dev/null +++ b/samples/qt/FuncDemo/env.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +if [ -e "custom.sh" ]; then + source "custom.sh"; +fi + +if [ -e "${aSamplePath}/../../../env.sh" ]; then + source "${aSamplePath}/../../../env.sh"; +fi + +if test "${QTDIR}" == ""; then + echo "Environment variable \"QTDIR\" not defined. Define it in \"custom.sh\" script." + exit 1 +fi + +host=`uname -s` +export STATION=$host + +export PATH=${QTDIR}/bin:${PATH} diff --git a/samples/qt/FuncDemo/run.sh b/samples/qt/FuncDemo/run.sh new file mode 100644 index 0000000000..8129d8f69c --- /dev/null +++ b/samples/qt/FuncDemo/run.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +export aSamplePath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +if [ -e "${aSamplePath}/env.sh" ]; then source "${aSamplePath}/env.sh"; fi +cd $aSamplePath + +aSystem=`uname -s` +if [ "$aSystem" == "Darwin" ] && [ "$MACOSX_USE_GLX" != "true" ]; then + if [ "${CASDEB}" == "d" ]; then + BIN_DIR="${aSamplePath}/build/Debug/FuncDemo.app/Contents/MacOS" + else + BIN_DIR="${aSamplePath}/build/Release/FuncDemo.app/Contents/MacOS" + fi +else + BIN_DIR="${aSamplePath}/${STATION}/bin${CASDEB}" +fi + +PATH="${BIN_DIR}:${PATH}" +export PATH + +if test ! -r "${BIN_DIR}/FuncDemo"; then + echo "Executable \"${BIN_DIR}/FuncDemo\" not found." + if [ "$aSystem" == "Darwin" ] && [ "$MACOSX_USE_GLX" != "true" ]; then + echo "Probably you don't compile the application. Build it with Xcode." + else + echo "Probably you don't compile the application. Execute \"make\"." + fi + exit 1 +fi + +${BIN_DIR}/FuncDemo diff --git a/samples/qt/FuncDemo/src/FThread.cpp b/samples/qt/FuncDemo/src/FThread.cpp index 06bbc0f3b3..48221dce62 100644 --- a/samples/qt/FuncDemo/src/FThread.cpp +++ b/samples/qt/FuncDemo/src/FThread.cpp @@ -1,5 +1,5 @@ #include "FThread.h" -#include "GraphWidget.h" +#include "graphwidget.h" #include #include @@ -67,7 +67,11 @@ void FThread::run() { L = getFreeFunction(); if (L.IsNull()) - ::Sleep(100); + #ifdef __GNUC__ + sleep(0.001); + #else + ::Sleep(100); + #endif else break; } @@ -123,4 +127,4 @@ void FThread::run() }// while (More()) graph->setFinished(); -} \ No newline at end of file +} diff --git a/samples/qt/FuncDemo/src/mainwindow.cpp b/samples/qt/FuncDemo/src/mainwindow.cpp index 212227968d..cb1f4904f7 100644 --- a/samples/qt/FuncDemo/src/mainwindow.cpp +++ b/samples/qt/FuncDemo/src/mainwindow.cpp @@ -54,6 +54,9 @@ #include #include #include +#ifdef __GNUC__ +#include +#endif MainWindow::MainWindow() { @@ -171,7 +174,11 @@ void MainWindow::compute() // Process user-events. qApp->processEvents(); - ::Sleep(100); + #ifdef __GNUC__ + sleep(0.001); + #else + ::Sleep(100); + #endif } } @@ -660,4 +667,4 @@ void MainWindow::createDefaultModel2() graph->createModel(doc); //app->SaveAs(doc, "W:\\TestFM\\model2.cbf"); -} \ No newline at end of file +}