mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029631: Samples: build AndroidQt sample together with OCCT on Windows platform
- _WIN32 definition provides functionality for sample on Windows - CMake procedure is changed to have Qt5_FOUND variable defined before compilation modules. Searching of Qt packages is moved into qt.cmake.
This commit is contained in:
parent
384db46a5a
commit
41ea50ac6f
@ -1018,9 +1018,9 @@ endif()
|
|||||||
OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
|
OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
|
||||||
|
|
||||||
if (BUILD_MODULE_QtSamples)
|
if (BUILD_MODULE_QtSamples)
|
||||||
if (NOT Qt5_FOUND OR NOT USE_GLES2)
|
if (NOT Qt5_FOUND OR NOT WIN32)
|
||||||
list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
|
list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
|
||||||
message (STATUS "Info: AndroidQt sample excluded due to Qt5 or GLES2 usage are disabled")
|
message (STATUS "Info: AndroidQt sample excluded due to Qt5 usage is disabled or OS is not Windows")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT BUILD_Inspector)
|
if (NOT BUILD_Inspector)
|
||||||
|
@ -18,3 +18,19 @@ UNSET (${3RDPARTY_QT_LIBRARY_DIR} CACHE)
|
|||||||
|
|
||||||
set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
|
set (USED_3RDPARTY_QT_DIR "${3RDPARTY_QT_DIR}")
|
||||||
message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
|
message (STATUS "Info: Qt is used from folder: ${3RDPARTY_QT_DIR}")
|
||||||
|
|
||||||
|
# Now set CMAKE_PREFIX_PATH to point to local Qt installation.
|
||||||
|
# Without this setting find_package() will not work
|
||||||
|
set(CMAKE_PREFIX_PATH ${3RDPARTY_QT_DIR})
|
||||||
|
|
||||||
|
# Now we can apply standard CMake finder for Qt5. We do this mostly
|
||||||
|
# to have qt5_wrap_cpp() function available and Qt5_FOUND variable filled
|
||||||
|
find_package(Qt5 QUIET COMPONENTS Widgets Quick PATHS ${3RDPARTY_QT_DIR} NO_DEFAULT_PATH)
|
||||||
|
if (NOT ${Qt5_FOUND})
|
||||||
|
# Now we can apply standard CMake finder for Qt. We do this mostly
|
||||||
|
# to have qt4_wrap_cpp() function available
|
||||||
|
find_package(Qt4)
|
||||||
|
#message (STATUS "Qt4 cmake configuration")
|
||||||
|
else()
|
||||||
|
#message (STATUS "Qt5 cmake configuration")
|
||||||
|
endif()
|
||||||
|
@ -6,13 +6,6 @@ macro (FIND_QT_PACKAGE PROJECT_LIBRARIES_DEBUG PROJECT_LIBRARIES_RELEASE PROJECT
|
|||||||
message (FATAL_ERROR "Empty Qt dir")
|
message (FATAL_ERROR "Empty Qt dir")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Now set CMAKE_PREFIX_PATH to point to local Qt installation.
|
|
||||||
# Without this setting find_package() will not work
|
|
||||||
set(CMAKE_PREFIX_PATH ${3RDPARTY_QT_DIR})
|
|
||||||
|
|
||||||
# Now we can apply standard CMake finder for Qt5. We do this mostly
|
|
||||||
# to have qt5_wrap_cpp() function available
|
|
||||||
find_package(Qt5 QUIET COMPONENTS Widgets Quick PATHS ${3RDPARTY_QT_DIR} NO_DEFAULT_PATH)
|
|
||||||
if (${Qt5_FOUND})
|
if (${Qt5_FOUND})
|
||||||
#message (STATUS "Qt5 cmake configuration")
|
#message (STATUS "Qt5 cmake configuration")
|
||||||
|
|
||||||
@ -28,10 +21,6 @@ macro (FIND_QT_PACKAGE PROJECT_LIBRARIES_DEBUG PROJECT_LIBRARIES_RELEASE PROJECT
|
|||||||
GET_FILENAME_COMPONENT(QT_BINARY_DIR ${QT_LRELEASE_EXECUTABLE} DIRECTORY)
|
GET_FILENAME_COMPONENT(QT_BINARY_DIR ${QT_LRELEASE_EXECUTABLE} DIRECTORY)
|
||||||
MARK_AS_ADVANCED(QT_BINARY_DIR)
|
MARK_AS_ADVANCED(QT_BINARY_DIR)
|
||||||
else()
|
else()
|
||||||
# Now we can apply standard CMake finder for Qt. We do this mostly
|
|
||||||
# to have qt4_wrap_cpp() function available
|
|
||||||
find_package(Qt4)
|
|
||||||
|
|
||||||
#message (STATUS "Qt4 cmake configuration")
|
#message (STATUS "Qt4 cmake configuration")
|
||||||
set(PROJECT_INCLUDES ${QT_INCLUDES})
|
set(PROJECT_INCLUDES ${QT_INCLUDES})
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
|
@ -25,6 +25,7 @@ if ["%1"] == [""] (
|
|||||||
)
|
)
|
||||||
|
|
||||||
call "%~dp0env.bat" %2 %3 %4
|
call "%~dp0env.bat" %2 %3 %4
|
||||||
|
if not ["%QTDIR%"] == [""] if exist "%QTDIR%\qml" if ["%QML2_IMPORT_PATH%"] == [""] set "QML2_IMPORT_PATH=%QTDIR%/qml"
|
||||||
set "EXE_PATH=%CSF_OCCTBinPath%/%1.exe"
|
set "EXE_PATH=%CSF_OCCTBinPath%/%1.exe"
|
||||||
|
|
||||||
if not exist "%EXE_PATH%" (
|
if not exist "%EXE_PATH%" (
|
||||||
|
@ -28,6 +28,9 @@ Window {
|
|||||||
id: root_window
|
id: root_window
|
||||||
visible: true
|
visible: true
|
||||||
|
|
||||||
|
width: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? Screen.width : 600
|
||||||
|
height: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? Screen.height : 400
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root_item
|
id: root_item
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
@ -52,8 +55,8 @@ Window {
|
|||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
|
|
||||||
// size
|
// size
|
||||||
width: 200
|
width: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? 200 : 150
|
||||||
height: 200
|
height: (Qt.platform.os == "android" || Qt.platform.os == "ios") ? 200 : 150
|
||||||
|
|
||||||
color: "white"
|
color: "white"
|
||||||
|
|
||||||
|
@ -11,13 +11,19 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <AndroidQt_Window.h>
|
#if defined(_WIN32)
|
||||||
#include <AndroidQt.h>
|
#include <windows.h>
|
||||||
#include <AndroidQt_UserInteractionParameters.h>
|
#endif
|
||||||
|
|
||||||
|
#include "AndroidQt.h"
|
||||||
|
#include "AndroidQt_UserInteractionParameters.h"
|
||||||
|
#include "AndroidQt_Window.h"
|
||||||
|
|
||||||
#include <AIS_Shape.hxx>
|
#include <AIS_Shape.hxx>
|
||||||
#include <BRepTools.hxx>
|
#include <BRepTools.hxx>
|
||||||
#include <BRep_Builder.hxx>
|
#include <BRep_Builder.hxx>
|
||||||
|
#include <Message.hxx>
|
||||||
|
#include <Message_Messenger.hxx>
|
||||||
#include <OpenGl_GraphicDriver.hxx>
|
#include <OpenGl_GraphicDriver.hxx>
|
||||||
#include <Quantity_Color.hxx>
|
#include <Quantity_Color.hxx>
|
||||||
#include <Standard_ErrorHandler.hxx>
|
#include <Standard_ErrorHandler.hxx>
|
||||||
@ -25,6 +31,7 @@
|
|||||||
#include <TopoDS_Face.hxx>
|
#include <TopoDS_Face.hxx>
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
#include <UnitsAPI.hxx>
|
#include <UnitsAPI.hxx>
|
||||||
|
#include <WNT_Window.hxx>
|
||||||
|
|
||||||
#include <EGL/egl.h>
|
#include <EGL/egl.h>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
@ -36,7 +43,7 @@
|
|||||||
AndroidQt::AndroidQt()
|
AndroidQt::AndroidQt()
|
||||||
: myFitAllAction (false)
|
: myFitAllAction (false)
|
||||||
{
|
{
|
||||||
connect (this, SIGNAL(windowChanged(QQuickWindow*)), this, SLOT(handleWindowChanged(QQuickWindow*)));
|
connect (this, SIGNAL (windowChanged (QQuickWindow*)), this, SLOT (handleWindowChanged (QQuickWindow*)));
|
||||||
|
|
||||||
// set shaders location variable
|
// set shaders location variable
|
||||||
QByteArray aDataRoot = "/data/data/org.qtproject.example.AndroidQt/files/opencascade/shared";
|
QByteArray aDataRoot = "/data/data/org.qtproject.example.AndroidQt/files/opencascade/shared";
|
||||||
@ -138,7 +145,7 @@ void AndroidQt::handleWindowChanged (QQuickWindow* theWin)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
connect(theWin, SIGNAL(beforeSynchronizing()), this, SLOT(sync()), Qt::DirectConnection);
|
connect (theWin, SIGNAL (beforeSynchronizing()), this, SLOT (sync()), Qt::DirectConnection);
|
||||||
|
|
||||||
theWin->setClearBeforeRendering (false);
|
theWin->setClearBeforeRendering (false);
|
||||||
}
|
}
|
||||||
@ -151,28 +158,54 @@ void AndroidQt::sync()
|
|||||||
{
|
{
|
||||||
myViewportSize = window()->size() * window()->devicePixelRatio();
|
myViewportSize = window()->size() * window()->devicePixelRatio();
|
||||||
|
|
||||||
|
Graphic3d_Vec2i aWinTopLeft (window()->x(), window()->y());
|
||||||
|
Graphic3d_Vec2i aWinSize (myViewportSize.width(), myViewportSize.height());
|
||||||
|
const bool isChangedLeft = (myWinTopLeft.x() != aWinTopLeft.x());
|
||||||
|
const bool isChangedTop = (myWinTopLeft.y() != aWinTopLeft.y());
|
||||||
|
myWinTopLeft = aWinTopLeft;
|
||||||
|
|
||||||
if (myViewer.IsNull())
|
if (myViewer.IsNull())
|
||||||
{
|
{
|
||||||
initViewer();
|
initViewer (Aspect_Drawable (window()->winId()));
|
||||||
connect (window(), SIGNAL(beforeRendering()), this, SLOT(paint()), Qt::DirectConnection);
|
connect (window(), SIGNAL (beforeRendering()), this, SLOT (paint()), Qt::DirectConnection);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Handle(OpenGl_GraphicDriver) aDriver = Handle(OpenGl_GraphicDriver)::DownCast (myViewer->Driver());
|
Handle(OpenGl_GraphicDriver) aDriver = Handle(OpenGl_GraphicDriver)::DownCast (myViewer->Driver());
|
||||||
|
#ifdef __ANDROID__
|
||||||
if (aDriver->getRawGlContext() != eglGetCurrentContext())
|
if (aDriver->getRawGlContext() != eglGetCurrentContext())
|
||||||
{
|
{
|
||||||
initViewer();
|
initViewer (Aspect_Drawable (window()->winId()));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
Handle(AndroidQt_Window) aWindow = Handle(AndroidQt_Window)::DownCast (myView->Window());
|
#ifdef __ANDROID__
|
||||||
|
Handle(AndroidQt_Window) aWindow = Handle(AndroidQt_Window)::DownCast(myView->Window());
|
||||||
aWindow->SetSize (myViewportSize.width(), myViewportSize.height());
|
aWindow->SetSize (myViewportSize.width(), myViewportSize.height());
|
||||||
//myView->MustBeResized(); // can be used instead of SetWindow() when EGLsurface has not been changed
|
//myView->MustBeResized(); // can be used instead of SetWindow() when EGLsurface has not been changed
|
||||||
|
|
||||||
EGLContext anEglContext = eglGetCurrentContext();
|
EGLContext anEglContext = eglGetCurrentContext();
|
||||||
myView->SetWindow (aWindow, (Aspect_RenderingContext )anEglContext);
|
myView->SetWindow (aWindow, (Aspect_RenderingContext )anEglContext);
|
||||||
|
#else
|
||||||
|
if (aWinSize.x() != myWinSize.x()
|
||||||
|
|| aWinSize.y() != myWinSize.y())
|
||||||
|
{
|
||||||
|
myView->MustBeResized();
|
||||||
|
myView->Invalidate();
|
||||||
|
}
|
||||||
|
else if (isChangedTop)
|
||||||
|
{
|
||||||
|
myView->MustBeResized();
|
||||||
|
}
|
||||||
|
else if (isChangedLeft)
|
||||||
|
{
|
||||||
|
myView->MustBeResized();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
myWinSize = aWinSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
@ -183,7 +216,7 @@ void AndroidQt::paint()
|
|||||||
{
|
{
|
||||||
myMutex.lock();
|
myMutex.lock();
|
||||||
|
|
||||||
if (Abs(myTouchPoint.DevX()) + Abs(myTouchPoint.DevY()) > 1)
|
if (Abs (myTouchPoint.DevX()) + Abs (myTouchPoint.DevY()) > 1)
|
||||||
{
|
{
|
||||||
myView->StartRotation (myTouchPoint.X().first, myTouchPoint.Y().first);
|
myView->StartRotation (myTouchPoint.X().first, myTouchPoint.Y().first);
|
||||||
myView->Rotation (myTouchPoint.X().second, myTouchPoint.Y().second);
|
myView->Rotation (myTouchPoint.X().second, myTouchPoint.Y().second);
|
||||||
@ -206,10 +239,12 @@ void AndroidQt::paint()
|
|||||||
// function : initViewer
|
// function : initViewer
|
||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
bool AndroidQt::initViewer()
|
bool AndroidQt::initViewer (Aspect_Drawable theWin)
|
||||||
{
|
{
|
||||||
EGLint aCfgId = 0;
|
|
||||||
int aWidth = 0, aHeight = 0;
|
int aWidth = 0, aHeight = 0;
|
||||||
|
Handle(Aspect_DisplayConnection) aDisplayConnection;
|
||||||
|
#ifdef __ANDROID__
|
||||||
|
EGLint aCfgId = 0;
|
||||||
EGLDisplay anEglDisplay = eglGetCurrentDisplay();
|
EGLDisplay anEglDisplay = eglGetCurrentDisplay();
|
||||||
EGLContext anEglContext = eglGetCurrentContext();
|
EGLContext anEglContext = eglGetCurrentContext();
|
||||||
EGLSurface anEglSurf = eglGetCurrentSurface (EGL_DRAW);
|
EGLSurface anEglSurf = eglGetCurrentSurface (EGL_DRAW);
|
||||||
@ -232,6 +267,7 @@ bool AndroidQt::initViewer()
|
|||||||
|
|
||||||
if (eglChooseConfig (anEglDisplay, aConfigAttribs, &anEglConfig, 1, &aNbConfigs) != EGL_TRUE)
|
if (eglChooseConfig (anEglDisplay, aConfigAttribs, &anEglConfig, 1, &aNbConfigs) != EGL_TRUE)
|
||||||
{
|
{
|
||||||
|
Message::DefaultMessenger()->Send ("Error: EGL does not provide compatible configurations", Message_Fail);
|
||||||
release();
|
release();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -242,6 +278,7 @@ bool AndroidQt::initViewer()
|
|||||||
Handle(AndroidQt_Window) aWindow = Handle(AndroidQt_Window)::DownCast (myView->Window());
|
Handle(AndroidQt_Window) aWindow = Handle(AndroidQt_Window)::DownCast (myView->Window());
|
||||||
if (!aDriver->InitEglContext (anEglDisplay, anEglContext, anEglConfig))
|
if (!aDriver->InitEglContext (anEglDisplay, anEglContext, anEglConfig))
|
||||||
{
|
{
|
||||||
|
Message::DefaultMessenger()->Send ("Error: OpenGl_GraphicDriver can not be initialized", Message_Fail);
|
||||||
release();
|
release();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -251,15 +288,46 @@ bool AndroidQt::initViewer()
|
|||||||
}
|
}
|
||||||
|
|
||||||
Handle(OpenGl_GraphicDriver) aDriver = new OpenGl_GraphicDriver (NULL, Standard_False);
|
Handle(OpenGl_GraphicDriver) aDriver = new OpenGl_GraphicDriver (NULL, Standard_False);
|
||||||
aDriver->ChangeOptions().buffersNoSwap = Standard_True;
|
#elif defined(_WIN32)
|
||||||
//aDriver->ChangeOptions().glslWarnings = Standard_True; // for GLSL shaders debug
|
HWND aWinHandle = (HWND)theWin;
|
||||||
|
HDC aWindowDC = wglGetCurrentDC();
|
||||||
if (!aDriver->InitEglContext (anEglDisplay, anEglContext, anEglConfig))
|
HGLRC aRendCtx = wglGetCurrentContext();
|
||||||
|
if (aWinHandle == NULL
|
||||||
|
|| aWindowDC == NULL
|
||||||
|
|| aRendCtx == NULL)
|
||||||
{
|
{
|
||||||
|
Message::DefaultMessenger()->Send ("Error: No active WGL context!", Message_Fail);
|
||||||
release();
|
release();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RECT aRect;
|
||||||
|
::GetClientRect (aWinHandle, &aRect);
|
||||||
|
aWidth = aRect.right - aRect.left;
|
||||||
|
aHeight = aRect.bottom - aRect.top;
|
||||||
|
myWinSize.x() = aWidth;
|
||||||
|
myWinSize.y() = aHeight;
|
||||||
|
if (!myViewer.IsNull())
|
||||||
|
{
|
||||||
|
Handle(WNT_Window) aWindow = new WNT_Window (aWinHandle);
|
||||||
|
myView->SetWindow (aWindow, (Aspect_RenderingContext)aRendCtx);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Handle(OpenGl_GraphicDriver) aDriver = new OpenGl_GraphicDriver (aDisplayConnection, Standard_False);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
aDriver->ChangeOptions().buffersNoSwap = Standard_True;
|
||||||
|
//aDriver->ChangeOptions().glslWarnings = Standard_True; // for GLSL shaders debug
|
||||||
|
|
||||||
|
#ifdef __ANDROID__
|
||||||
|
if (!aDriver->InitEglContext (anEglDisplay, anEglContext, anEglConfig))
|
||||||
|
{
|
||||||
|
Message::DefaultMessenger()->Send ("Error: OpenGl_GraphicDriver can not be initialized", Message_Fail);
|
||||||
|
release();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// create viewer
|
// create viewer
|
||||||
myViewer = new V3d_Viewer (aDriver);
|
myViewer = new V3d_Viewer (aDriver);
|
||||||
myViewer->SetDefaultBackgroundColor (AndroidQt_UserInteractionParameters::BgColor.Name());
|
myViewer->SetDefaultBackgroundColor (AndroidQt_UserInteractionParameters::BgColor.Name());
|
||||||
@ -270,10 +338,20 @@ bool AndroidQt::initViewer()
|
|||||||
myContext = new AIS_InteractiveContext (myViewer);
|
myContext = new AIS_InteractiveContext (myViewer);
|
||||||
myContext->SetDisplayMode (AIS_Shaded, false);
|
myContext->SetDisplayMode (AIS_Shaded, false);
|
||||||
|
|
||||||
|
#ifdef __ANDROID__
|
||||||
Handle(AndroidQt_Window) aWindow = new AndroidQt_Window (aWidth, aHeight);
|
Handle(AndroidQt_Window) aWindow = new AndroidQt_Window (aWidth, aHeight);
|
||||||
myView = myViewer->CreateView();
|
#elif defined(_WIN32)
|
||||||
|
Handle(WNT_Window) aWindow = new WNT_Window (aWinHandle);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
myView = myViewer->CreateView();
|
||||||
|
myView->SetImmediateUpdate (Standard_False);
|
||||||
|
|
||||||
|
#ifdef __ANDROID__
|
||||||
myView->SetWindow (aWindow, (Aspect_RenderingContext )anEglContext);
|
myView->SetWindow (aWindow, (Aspect_RenderingContext )anEglContext);
|
||||||
|
#else
|
||||||
|
myView->SetWindow (aWindow, (Aspect_RenderingContext )aRendCtx);
|
||||||
|
#endif
|
||||||
myView->TriedronDisplay (Aspect_TOTP_RIGHT_LOWER, Quantity_NOC_WHITE, 0.08, V3d_ZBUFFER);
|
myView->TriedronDisplay (Aspect_TOTP_RIGHT_LOWER, Quantity_NOC_WHITE, 0.08, V3d_ZBUFFER);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
|
|
||||||
#include <AndroidQt_TouchParameters.h>
|
#include "AndroidQt_TouchParameters.h"
|
||||||
|
|
||||||
//! QML item with embedded OCCT viewer.
|
//! QML item with embedded OCCT viewer.
|
||||||
class AndroidQt : public QQuickItem
|
class AndroidQt : public QQuickItem
|
||||||
@ -67,7 +67,8 @@ private slots:
|
|||||||
private:
|
private:
|
||||||
|
|
||||||
//! (Re-)initialize viewer on OpenGL context change.
|
//! (Re-)initialize viewer on OpenGL context change.
|
||||||
bool initViewer();
|
//! \param theWin handle to GUI window
|
||||||
|
bool initViewer (Aspect_Drawable theWin);
|
||||||
|
|
||||||
//! Close viewer
|
//! Close viewer
|
||||||
void release();
|
void release();
|
||||||
@ -77,6 +78,8 @@ private:
|
|||||||
Handle(V3d_Viewer) myViewer; //!< 3D viewer
|
Handle(V3d_Viewer) myViewer; //!< 3D viewer
|
||||||
Handle(V3d_View) myView; //!< 3D view
|
Handle(V3d_View) myView; //!< 3D view
|
||||||
Handle(AIS_InteractiveContext) myContext; //!< interactive context
|
Handle(AIS_InteractiveContext) myContext; //!< interactive context
|
||||||
|
Graphic3d_Vec2i myWinTopLeft; //!< cached window position (top-left)
|
||||||
|
Graphic3d_Vec2i myWinSize; //!< cached window width-height
|
||||||
|
|
||||||
QMutex myMutex; //!< mutex for interconnection with rendering thread
|
QMutex myMutex; //!< mutex for interconnection with rendering thread
|
||||||
QSize myViewportSize; //!< QML item size
|
QSize myViewportSize; //!< QML item size
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <AndroidQt_TouchParameters.h>
|
#include "AndroidQt_TouchParameters.h"
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : AndroidQt_TouchParameters
|
// function : AndroidQt_TouchParameters
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <AndroidQt_Window.h>
|
#include "AndroidQt_Window.h"
|
||||||
|
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(AndroidQt_Window, Aspect_Window)
|
IMPLEMENT_STANDARD_RTTIEXT(AndroidQt_Window, Aspect_Window)
|
||||||
|
|
||||||
|
@ -14,10 +14,18 @@
|
|||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QQmlApplicationEngine>
|
#include <QQmlApplicationEngine>
|
||||||
|
|
||||||
#include <AndroidQt.h>
|
#include "AndroidQt.h"
|
||||||
|
|
||||||
|
#include <OSD_Environment.hxx>
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
#if defined(_WIN32) && (QT_VERSION > 0x050000)
|
||||||
|
TCollection_AsciiString aPlugindsDirName = OSD_Environment ("QTDIR").Value();
|
||||||
|
if (!aPlugindsDirName.IsEmpty())
|
||||||
|
QApplication::addLibraryPath (QString (aPlugindsDirName.ToCString()) + "/plugins");
|
||||||
|
#endif
|
||||||
|
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
|
|
||||||
qmlRegisterType<AndroidQt>("AndroidQt", 1, 0, "AndroidQt");
|
qmlRegisterType<AndroidQt>("AndroidQt", 1, 0, "AndroidQt");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user