1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0032308: Configuration - make Xlib dependency optional

MACOSX_USE_GLX has been renamed to HAVE_XLIB and now configurable on Linux target.

Xw_Window.hxx now export class on non-Linux platforms.
OpenGl_Window now creates an off-screen EGL surface also in case of
window-less desktop setup (e.g. with disabled Xlib on Linux).

Draw_Window - code has been cleaned up.
Class definition has been unified across platforms when possible.
Unusued constructors have been removed.
Internal header files (MainWindow.h, init.h, etc.) have been renamed to .pxx
to avoid their unexpected distribution in "inc".
This commit is contained in:
kgv 2021-04-16 16:12:16 +03:00 committed by bugmaster
parent e8e157df45
commit b69e576af0
48 changed files with 2288 additions and 3044 deletions

View File

@ -373,10 +373,12 @@ set (USE_RAPIDJSON OFF CACHE BOOL "${USE_RAPIDJSON_DESCR}")
set (USE_TBB OFF CACHE BOOL "${USE_TBB_DESCR}") set (USE_TBB OFF CACHE BOOL "${USE_TBB_DESCR}")
set (USE_EIGEN OFF CACHE BOOL "${USE_EIGEN_DESCR}") set (USE_EIGEN OFF CACHE BOOL "${USE_EIGEN_DESCR}")
if (APPLE) if (WIN32 OR ANDROID OR IOS OR EMSCRIPTEN)
set (USE_GLX OFF CACHE BOOL "${USE_GLX_DESCR}") # no Xlib
elseif (APPLE)
set (USE_XLIB OFF CACHE BOOL "${USE_XLIB_DESCR}")
else() else()
set (USE_GLX OFF) set (USE_XLIB ON CACHE BOOL "${USE_XLIB_DESCR}")
endif() endif()
if (WIN32) if (WIN32)
@ -503,6 +505,7 @@ endif()
OCCT_IS_PRODUCT_REQUIRED (CSF_FreeImagePlus CAN_USE_FREEIMAGE) OCCT_IS_PRODUCT_REQUIRED (CSF_FreeImagePlus CAN_USE_FREEIMAGE)
OCCT_IS_PRODUCT_REQUIRED (CSF_TclLibs USE_TCL) OCCT_IS_PRODUCT_REQUIRED (CSF_TclLibs USE_TCL)
OCCT_IS_PRODUCT_REQUIRED (CSF_TclTkLibs CAN_USE_TK) OCCT_IS_PRODUCT_REQUIRED (CSF_TclTkLibs CAN_USE_TK)
OCCT_IS_PRODUCT_REQUIRED (CSF_XwLibs CAN_USE_XLIB)
OCCT_IS_PRODUCT_REQUIRED (CSF_FREETYPE CAN_USE_FREETYPE) OCCT_IS_PRODUCT_REQUIRED (CSF_FREETYPE CAN_USE_FREETYPE)
OCCT_IS_PRODUCT_REQUIRED (CSF_OpenGlLibs CAN_USE_OPENGL) OCCT_IS_PRODUCT_REQUIRED (CSF_OpenGlLibs CAN_USE_OPENGL)
OCCT_IS_PRODUCT_REQUIRED (CSF_OpenGlesLibs CAN_USE_GLES2) OCCT_IS_PRODUCT_REQUIRED (CSF_OpenGlesLibs CAN_USE_GLES2)
@ -537,6 +540,19 @@ else()
OCCT_CHECK_AND_UNSET ("INSTALL_TK") OCCT_CHECK_AND_UNSET ("INSTALL_TK")
endif() endif()
# Xlib
if (CAN_USE_XLIB)
if (USE_XLIB)
message (STATUS "Info: Xlib is used by OCCT")
add_definitions (-DHAVE_XLIB)
if (APPLE)
OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/glx")
endif()
endif()
else()
OCCT_CHECK_AND_UNSET ("USE_XLIB")
endif()
# FreeType # FreeType
if (CAN_USE_FREETYPE) if (CAN_USE_FREETYPE)
if (USE_FREETYPE) if (USE_FREETYPE)
@ -571,12 +587,6 @@ else()
endif() endif()
endif() endif()
# GLX
if (USE_GLX)
add_definitions (-DMACOSX_USE_GLX)
OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/glx")
endif()
# FREEIMAGE # FREEIMAGE
if (CAN_USE_FREEIMAGE) if (CAN_USE_FREEIMAGE)
if (USE_FREEIMAGE) if (USE_FREEIMAGE)
@ -1232,7 +1242,7 @@ if (WIN32)
set (SET_OpenCASCADE_WITH_D3D "set (OpenCASCADE_WITH_D3D ${USE_D3D})") set (SET_OpenCASCADE_WITH_D3D "set (OpenCASCADE_WITH_D3D ${USE_D3D})")
endif() endif()
if (APPLE) if (APPLE)
set (SET_OpenCASCADE_WITH_GLX "set (OpenCASCADE_WITH_GLX ${USE_GLX})") set (SET_OpenCASCADE_WITH_GLX "set (OpenCASCADE_WITH_GLX ${USE_XLIB})")
endif() endif()
# Configure and install cmake config file # Configure and install cmake config file

View File

@ -197,7 +197,6 @@ t TKPrim
t TKShHealing t TKShHealing
t TKTopAlgo t TKTopAlgo
t TKXMesh t TKXMesh
n InterfaceGraphic
n AIS n AIS
n Aspect n Aspect
n DsgPrs n DsgPrs

View File

@ -109,7 +109,7 @@ else()
find_library (OpenGlesLibs_LIB NAMES OpenGLES) find_library (OpenGlesLibs_LIB NAMES OpenGLES)
set (CSF_OpenGlesLibs ${OpenGlesLibs_LIB}) set (CSF_OpenGlesLibs ${OpenGlesLibs_LIB})
OCCT_CHECK_AND_UNSET (OpenGlesLibs_LIB) OCCT_CHECK_AND_UNSET (OpenGlesLibs_LIB)
elseif (USE_GLX) elseif (USE_XLIB)
set (CSF_OpenGlLibs GL) set (CSF_OpenGlLibs GL)
set (CSF_XwLibs "X11 Xext Xmu Xi") set (CSF_XwLibs "X11 Xext Xmu Xi")
else() else()
@ -124,9 +124,13 @@ else()
set (CSF_androidlog "log") set (CSF_androidlog "log")
elseif (UNIX) elseif (UNIX)
set (CSF_ThreadLibs "pthread rt stdc++") set (CSF_ThreadLibs "pthread rt stdc++")
set (CSF_OpenGlLibs "GL") if (USE_XLIB)
set (CSF_OpenGlLibs "GL")
set (CSF_XwLibs "X11 Xext Xmu Xi")
else()
set (CSF_OpenGlLibs "GL EGL")
endif()
set (CSF_OpenGlesLibs "EGL GLESv2") set (CSF_OpenGlesLibs "EGL GLESv2")
set (CSF_XwLibs "X11 Xext Xmu Xi")
set (CSF_dl "dl") set (CSF_dl "dl")
if (USE_FREETYPE) if (USE_FREETYPE)
set (CSF_fontconfig "fontconfig") set (CSF_fontconfig "fontconfig")

View File

@ -196,7 +196,7 @@ ToolKit, the technology of Kitware Inc intended for general-purpose scientific
visualization. OCCT comes with a bridge between CAD data representation and visualization. OCCT comes with a bridge between CAD data representation and
VTK by means of its dedicated VIS component (VTK Integration Services).") VTK by means of its dedicated VIS component (VTK Integration Services).")
set (USE_GLX_DESCR "Indicates whether X11 OpenGl on OSX is used or not") set (USE_XLIB_DESCR "Indicates whether X11 is used or not")
set (USE_D3D_DESCR "Indicates whether optional Direct3D wrapper in OCCT visualization module should be build or not") set (USE_D3D_DESCR "Indicates whether optional Direct3D wrapper in OCCT visualization module should be build or not")

View File

@ -496,8 +496,8 @@ ttk::label .myFrame.myChecks.myFFmpegLbl -text "Use FFmpeg"
checkbutton .myFrame.myChecks.myRapidJsonCheck -offvalue "false" -onvalue "true" -variable HAVE_RAPIDJSON -command wokdep:gui:UpdateList checkbutton .myFrame.myChecks.myRapidJsonCheck -offvalue "false" -onvalue "true" -variable HAVE_RAPIDJSON -command wokdep:gui:UpdateList
ttk::label .myFrame.myChecks.myRapidJsonLbl -text "Use RapidJSON" ttk::label .myFrame.myChecks.myRapidJsonLbl -text "Use RapidJSON"
checkbutton .myFrame.myChecks.myMacGLXCheck -offvalue "false" -onvalue "true" -variable MACOSX_USE_GLX checkbutton .myFrame.myChecks.myXLibCheck -offvalue "false" -onvalue "true" -variable HAVE_XLIB
ttk::label .myFrame.myChecks.myMacGLXLbl -text "Use X11 for windows drawing" ttk::label .myFrame.myChecks.myXLibLbl -text "Use X11 for windows drawing"
ttk::label .myFrame.myChecks.myVtkLbl -text "Use VTK" ttk::label .myFrame.myChecks.myVtkLbl -text "Use VTK"
checkbutton .myFrame.myChecks.myVtkCheck -offvalue "false" -onvalue "true" -variable HAVE_VTK -command wokdep:gui:UpdateList checkbutton .myFrame.myChecks.myVtkCheck -offvalue "false" -onvalue "true" -variable HAVE_VTK -command wokdep:gui:UpdateList
@ -632,9 +632,9 @@ grid .myFrame.myChecks.myTbbLbl -row $aCheckRowIter -column 3 -sticky w
if { "$::tcl_platform(platform)" == "windows" } { if { "$::tcl_platform(platform)" == "windows" } {
grid .myFrame.myChecks.myD3dCheck -row $aCheckRowIter -column 4 -sticky e grid .myFrame.myChecks.myD3dCheck -row $aCheckRowIter -column 4 -sticky e
grid .myFrame.myChecks.myD3dLbl -row $aCheckRowIter -column 5 -sticky w grid .myFrame.myChecks.myD3dLbl -row $aCheckRowIter -column 5 -sticky w
} elseif { "$::tcl_platform(os)" == "Darwin" } { } else {
grid .myFrame.myChecks.myMacGLXCheck -row $aCheckRowIter -column 4 -sticky e grid .myFrame.myChecks.myXLibCheck -row $aCheckRowIter -column 4 -sticky e
grid .myFrame.myChecks.myMacGLXLbl -row $aCheckRowIter -column 5 -sticky w grid .myFrame.myChecks.myXLibLbl -row $aCheckRowIter -column 5 -sticky w
} }
grid .myFrame.myChecks.myLzmaCheck -row $aCheckRowIter -column 6 -sticky e grid .myFrame.myChecks.myLzmaCheck -row $aCheckRowIter -column 6 -sticky e
grid .myFrame.myChecks.myLzmaLbl -row $aCheckRowIter -column 7 -sticky w grid .myFrame.myChecks.myLzmaLbl -row $aCheckRowIter -column 7 -sticky w

View File

@ -68,10 +68,11 @@ if { [info exists ::env(SHORTCUT_HEADERS)] } {
} }
# fetch environment variables (e.g. set by custom.sh or custom.bat) and set them as tcl variables with the same name # fetch environment variables (e.g. set by custom.sh or custom.bat) and set them as tcl variables with the same name
set THE_ENV_VARIABLES {HAVE_TK HAVE_FREETYPE HAVE_FREEIMAGE HAVE_FFMPEG HAVE_TBB HAVE_GLES2 HAVE_D3D HAVE_VTK HAVE_ZLIB HAVE_LIBLZMA HAVE_E57 HAVE_RAPIDJSON HAVE_OPENVR HAVE_OPENCL CHECK_QT4 CHECK_JDK MACOSX_USE_GLX HAVE_RelWithDebInfo BUILD_Inspector} set THE_ENV_VARIABLES {HAVE_TK HAVE_FREETYPE HAVE_FREEIMAGE HAVE_FFMPEG HAVE_TBB HAVE_GLES2 HAVE_D3D HAVE_VTK HAVE_ZLIB HAVE_LIBLZMA HAVE_E57 HAVE_RAPIDJSON HAVE_OPENVR HAVE_OPENCL CHECK_QT4 CHECK_JDK HAVE_XLIB HAVE_RelWithDebInfo BUILD_Inspector}
foreach anEnvIter $THE_ENV_VARIABLES { set ${anEnvIter} "false" } foreach anEnvIter $THE_ENV_VARIABLES { set ${anEnvIter} "false" }
set HAVE_TK "true" set HAVE_TK "true"
set HAVE_FREETYPE "true" set HAVE_FREETYPE "true"
if { "$tcl_platform(os)" != "Darwin" } { set HAVE_XLIB "true" }
foreach anEnvIter $THE_ENV_VARIABLES { foreach anEnvIter $THE_ENV_VARIABLES {
if { [info exists ::env(${anEnvIter})] } { if { [info exists ::env(${anEnvIter})] } {
set ${anEnvIter} "$::env(${anEnvIter})" set ${anEnvIter} "$::env(${anEnvIter})"
@ -80,12 +81,12 @@ foreach anEnvIter $THE_ENV_VARIABLES {
# do not export platform-specific variables # do not export platform-specific variables
if { "$::tcl_platform(os)" == "Darwin" } { if { "$::tcl_platform(os)" == "Darwin" } {
set HAVE_GLES2 "" set HAVE_GLES2 ""
} else {
set MACOSX_USE_GLX ""
} }
if { "$tcl_platform(platform)" != "windows" } { if { "$tcl_platform(platform)" != "windows" } {
set HAVE_D3D "" set HAVE_D3D ""
set HAVE_RelWithDebInfo "" set HAVE_RelWithDebInfo ""
} else {
set HAVE_XLIB ""
} }
foreach anEnvIter {ARCH VCVER VCVARS PRJFMT } { foreach anEnvIter {ARCH VCVER VCVARS PRJFMT } {
if { [info exists ::env(${anEnvIter})] } { if { [info exists ::env(${anEnvIter})] } {
@ -1195,7 +1196,7 @@ proc wokdep:SearchX11 {theErrInc theErrLib32 theErrLib64 theErrBin32 theErrBin64
upvar $theErrBin64 anErrBin64 upvar $theErrBin64 anErrBin64
set isFound "true" set isFound "true"
if { "$::tcl_platform(platform)" == "windows" || ( "$::tcl_platform(os)" == "Darwin" && "$::MACOSX_USE_GLX" != "true" ) } { if { "$::tcl_platform(platform)" == "windows" || ( "$::tcl_platform(os)" == "Darwin" && "$::HAVE_XLIB" != "true" ) } {
return "$isFound" return "$isFound"
} }

View File

@ -1491,7 +1491,11 @@ proc osutils:csfList { theOS theCsfLibsMap theCsfFrmsMap theRelease} {
} }
} else { } else {
set aLibsMap(CSF_dl) "dl" set aLibsMap(CSF_dl) "dl"
set aLibsMap(CSF_OpenGlLibs) "GL" if { "$::HAVE_XLIB" == "true" } {
set aLibsMap(CSF_OpenGlLibs) "GL"
} else {
set aLibsMap(CSF_OpenGlLibs) "GL EGL"
}
set aLibsMap(CSF_OpenGlesLibs) "EGL GLESv2" set aLibsMap(CSF_OpenGlesLibs) "EGL GLESv2"
if { "$theOS" == "mac" || "$theOS" == "ios" } { if { "$theOS" == "mac" || "$theOS" == "ios" } {
set aLibsMap(CSF_objc) "objc" set aLibsMap(CSF_objc) "objc"
@ -1525,8 +1529,10 @@ proc osutils:csfList { theOS theCsfLibsMap theCsfFrmsMap theRelease} {
if { "$::HAVE_TK" == "true" } { if { "$::HAVE_TK" == "true" } {
set aLibsMap(CSF_TclTkLibs) "tk8.6" set aLibsMap(CSF_TclTkLibs) "tk8.6"
} }
set aLibsMap(CSF_XwLibs) "X11 Xext Xmu Xi" if { "$::HAVE_XLIB" == "true" } {
set aLibsMap(CSF_MotifLibs) "X11" set aLibsMap(CSF_XwLibs) "X11 Xext Xmu Xi"
set aLibsMap(CSF_MotifLibs) "X11"
}
} }
} }
} }

View File

@ -59,11 +59,15 @@ win32 {
} else { } else {
CSF_dl = -ldl CSF_dl = -ldl
CSF_ThreadLibs = -lpthread -lrt CSF_ThreadLibs = -lpthread -lrt
CSF_OpenGlLibs = -lGL
CSF_OpenGlesLibs = -lEGL -lGLESv2 CSF_OpenGlesLibs = -lEGL -lGLESv2
CSF_TclTkLibs = -lX11 -ltk8.6 CSF_TclTkLibs = -ltk8.6
CSF_XwLibs = -lX11 -lXext -lXmu -lXi HAVE_XLIB {
CSF_MotifLibs = -lX11 CSF_OpenGlLibs = -lGL
CSF_XwLibs = -lX11 -lXext -lXmu -lXi
CSF_MotifLibs = -lX11
} else {
CSF_OpenGlLibs = -lGL -lEGL
}
HAVE_FREETYPE { CSF_fontconfig = -lfontconfig } HAVE_FREETYPE { CSF_fontconfig = -lfontconfig }
} }

View File

@ -13,6 +13,7 @@ rem Paths to 3rd-party tools and libraries
set "aCmakeBin=" set "aCmakeBin="
set "aFreeType=" set "aFreeType="
set "aRapidJson=" set "aRapidJson="
set "aTcl="
rem Build stages to perform rem Build stages to perform
set "toCMake=1" set "toCMake=1"
@ -30,6 +31,7 @@ set "BUILD_ModelingAlgorithms=ON"
set "BUILD_Visualization=ON" set "BUILD_Visualization=ON"
set "BUILD_ApplicationFramework=ON" set "BUILD_ApplicationFramework=ON"
set "BUILD_DataExchange=ON" set "BUILD_DataExchange=ON"
set "BUILD_Draw=OFF"
rem Optional 3rd-party libraries to enable rem Optional 3rd-party libraries to enable
set "USE_RAPIDJSON=OFF" set "USE_RAPIDJSON=OFF"
@ -162,11 +164,15 @@ if ["%toCMake%"] == ["1"] (
-D BUILD_MODULE_Visualization:BOOL="%BUILD_Visualization%" ^ -D BUILD_MODULE_Visualization:BOOL="%BUILD_Visualization%" ^
-D BUILD_MODULE_ApplicationFramework:BOOL="%BUILD_ApplicationFramework%" ^ -D BUILD_MODULE_ApplicationFramework:BOOL="%BUILD_ApplicationFramework%" ^
-D BUILD_MODULE_DataExchange:BOOL="%BUILD_DataExchange%" ^ -D BUILD_MODULE_DataExchange:BOOL="%BUILD_DataExchange%" ^
-D BUILD_MODULE_Draw:BOOL="OFF" ^ -D BUILD_MODULE_Draw:BOOL="%BUILD_Draw%" ^
-D BUILD_DOC_Overview:BOOL="OFF" ^ -D BUILD_DOC_Overview:BOOL="OFF" ^
-D USE_RAPIDJSON:BOOL="%USE_RAPIDJSON%" ^ -D USE_RAPIDJSON:BOOL="%USE_RAPIDJSON%" ^
-D 3RDPARTY_RAPIDJSON_DIR:PATH="%aRapidJson%" ^ -D 3RDPARTY_RAPIDJSON_DIR:PATH="%aRapidJson%" ^
-D 3RDPARTY_RAPIDJSON_INCLUDE_DIR:PATH="%aRapidJson%/include" ^ -D 3RDPARTY_RAPIDJSON_INCLUDE_DIR:PATH="%aRapidJson%/include" ^
-D 3RDPARTY_TCL_DIR:PATH="%aTcl%" ^
-D 3RDPARTY_TCL_INCLUDE_DIR:PATH="%aTcl%/include" ^
-D 3RDPARTY_TCL_LIBRARY_DIR:PATH="%aTcl%/lib" ^
-D 3RDPARTY_TCL_LIBRARY:FILEPATH="%aTcl%/lib/libtcl.a" ^
"%aCasSrc%" "%aCasSrc%"
if errorlevel 1 ( if errorlevel 1 (

View File

@ -3,6 +3,8 @@
# go to the script directory # go to the script directory
aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD"; aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
aSystem=`uname -s`
# Reset values # Reset values
export CASROOT="__CASROOT__" export CASROOT="__CASROOT__"
export CASDEB="" export CASDEB=""
@ -20,7 +22,10 @@ export HAVE_LIBLZMA="false";
export HAVE_RAPIDJSON="false"; export HAVE_RAPIDJSON="false";
export HAVE_OPENVR="false"; export HAVE_OPENVR="false";
export HAVE_E57="false"; export HAVE_E57="false";
export MACOSX_USE_GLX="false"; export HAVE_XLIB="true";
if [ "$aSystem" == "Darwin" ]; then
export HAVE_XLIB="false";
fi
export CSF_OPT_INC="" export CSF_OPT_INC=""
export CSF_OPT_LIB32="" export CSF_OPT_LIB32=""
export CSF_OPT_LIB64="" export CSF_OPT_LIB64=""
@ -60,7 +65,6 @@ else
export ARCH="64"; export ARCH="64";
fi fi
aSystem=`uname -s`
if [ "$aSystem" == "Darwin" ]; then if [ "$aSystem" == "Darwin" ]; then
export WOKSTATION="mac"; export WOKSTATION="mac";
export ARCH="64"; export ARCH="64";
@ -113,8 +117,7 @@ if [ "$HAVE_LIBLZMA" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -D
if [ "$HAVE_RAPIDJSON" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_RAPIDJSON"; fi if [ "$HAVE_RAPIDJSON" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_RAPIDJSON"; fi
if [ "$HAVE_OPENVR" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_OPENVR"; fi if [ "$HAVE_OPENVR" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_OPENVR"; fi
if [ "$HAVE_E57" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_E57"; fi if [ "$HAVE_E57" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_E57"; fi
# Option to compile OCCT with X11 libs on Mac OS X if [ "$HAVE_XLIB" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DHAVE_XLIB"; fi
if [ "$MACOSX_USE_GLX" == "true" ]; then export CSF_OPT_CMPL="${CSF_OPT_CMPL} -DMACOSX_USE_GLX"; fi
# To split string into array # To split string into array
aDelimBack=$IFS aDelimBack=$IFS

View File

@ -424,14 +424,14 @@ public: //! @name resize events
//! Handle focus event. //! Handle focus event.
//! Default implementation does nothing. //! Default implementation does nothing.
virtual void ProcessFocus (bool theIsActivated) virtual void ProcessFocus (bool theIsActivated) Standard_OVERRIDE
{ {
(void )theIsActivated; (void )theIsActivated;
} }
//! Handle window close event. //! Handle window close event.
//! Default implementation does nothing. //! Default implementation does nothing.
virtual void ProcessClose() {} virtual void ProcessClose() Standard_OVERRIDE {}
public: public:

View File

@ -16,6 +16,12 @@
#include <Aspect_DisplayConnectionDefinitionError.hxx> #include <Aspect_DisplayConnectionDefinitionError.hxx>
#include <OSD_Environment.hxx> #include <OSD_Environment.hxx>
#if defined(HAVE_XLIB)
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#endif
IMPLEMENT_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient) IMPLEMENT_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient)
// ======================================================================= // =======================================================================
@ -24,7 +30,7 @@ IMPLEMENT_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient)
// ======================================================================= // =======================================================================
Aspect_DisplayConnection::Aspect_DisplayConnection() Aspect_DisplayConnection::Aspect_DisplayConnection()
{ {
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) #if defined(HAVE_XLIB)
myDisplay = NULL; myDisplay = NULL;
myDefVisualInfo = NULL; myDefVisualInfo = NULL;
myDefFBConfig = NULL; myDefFBConfig = NULL;
@ -41,7 +47,7 @@ Aspect_DisplayConnection::Aspect_DisplayConnection()
// ======================================================================= // =======================================================================
Aspect_DisplayConnection::~Aspect_DisplayConnection() Aspect_DisplayConnection::~Aspect_DisplayConnection()
{ {
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) #if defined(HAVE_XLIB)
if (myDefVisualInfo != NULL) if (myDefVisualInfo != NULL)
{ {
XFree (myDefVisualInfo); XFree (myDefVisualInfo);
@ -49,12 +55,11 @@ Aspect_DisplayConnection::~Aspect_DisplayConnection()
if (myDisplay != NULL if (myDisplay != NULL
&& myIsOwnDisplay) && myIsOwnDisplay)
{ {
XCloseDisplay (myDisplay); XCloseDisplay ((Display* )myDisplay);
} }
#endif #endif
} }
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__)
// ======================================================================= // =======================================================================
// function : Aspect_DisplayConnection // function : Aspect_DisplayConnection
// purpose : // purpose :
@ -73,7 +78,7 @@ Aspect_DisplayConnection::Aspect_DisplayConnection (const TCollection_AsciiStrin
// function : Aspect_DisplayConnection // function : Aspect_DisplayConnection
// purpose : // purpose :
// ======================================================================= // =======================================================================
Aspect_DisplayConnection::Aspect_DisplayConnection (Display* theDisplay) Aspect_DisplayConnection::Aspect_DisplayConnection (Aspect_XDisplay* theDisplay)
: myDisplay (NULL), : myDisplay (NULL),
myDefVisualInfo (NULL), myDefVisualInfo (NULL),
myDefFBConfig (NULL), myDefFBConfig (NULL),
@ -86,12 +91,14 @@ Aspect_DisplayConnection::Aspect_DisplayConnection (Display* theDisplay)
// function : SetDefaultVisualInfo // function : SetDefaultVisualInfo
// purpose : // purpose :
// ======================================================================= // =======================================================================
void Aspect_DisplayConnection::SetDefaultVisualInfo (XVisualInfo* theVisual, void Aspect_DisplayConnection::SetDefaultVisualInfo (Aspect_XVisualInfo* theVisual,
Aspect_FBConfig theFBConfig) Aspect_FBConfig theFBConfig)
{ {
if (myDefVisualInfo != NULL) if (myDefVisualInfo != NULL)
{ {
#if defined(HAVE_XLIB)
XFree (myDefVisualInfo); XFree (myDefVisualInfo);
#endif
} }
myDefVisualInfo = theVisual; myDefVisualInfo = theVisual;
myDefFBConfig = theFBConfig; myDefFBConfig = theFBConfig;
@ -101,17 +108,18 @@ void Aspect_DisplayConnection::SetDefaultVisualInfo (XVisualInfo* theVisual,
// function : Init // function : Init
// purpose : // purpose :
// ======================================================================= // =======================================================================
void Aspect_DisplayConnection::Init (Display* theDisplay) void Aspect_DisplayConnection::Init (Aspect_XDisplay* theDisplay)
{ {
#if defined(HAVE_XLIB)
if (myDisplay != NULL if (myDisplay != NULL
&& myIsOwnDisplay) && myIsOwnDisplay)
{ {
XCloseDisplay (myDisplay); XCloseDisplay ((Display* )myDisplay);
} }
myIsOwnDisplay = false; myIsOwnDisplay = false;
myAtoms.Clear(); myAtoms.Clear();
myDisplay = theDisplay != NULL ? theDisplay : XOpenDisplay (myDisplayName.ToCString()); myDisplay = theDisplay != NULL ? theDisplay : (Aspect_XDisplay* )XOpenDisplay (myDisplayName.ToCString());
if (myDisplay == NULL) if (myDisplay == NULL)
{ {
TCollection_AsciiString aMessage; TCollection_AsciiString aMessage;
@ -122,18 +130,10 @@ void Aspect_DisplayConnection::Init (Display* theDisplay)
else else
{ {
myIsOwnDisplay = theDisplay == NULL; myIsOwnDisplay = theDisplay == NULL;
myAtoms.Bind (Aspect_XA_DELETE_WINDOW, XInternAtom(myDisplay, "WM_DELETE_WINDOW", False)); myAtoms.Bind (Aspect_XA_DELETE_WINDOW, (uint64_t )XInternAtom((Display* )myDisplay, "WM_DELETE_WINDOW", False));
} }
} #else
myDisplay = theDisplay;
// ======================================================================= myIsOwnDisplay = theDisplay == NULL;
// function : GetAtom
// purpose :
// =======================================================================
Atom Aspect_DisplayConnection::GetAtom (const Aspect_XAtom theAtom) const
{
Atom anAtom = myAtoms.Find(theAtom);
return anAtom;
}
#endif #endif
}

View File

@ -16,51 +16,52 @@
#include <Standard_Transient.hxx> #include <Standard_Transient.hxx>
#include <Aspect_XAtom.hxx> #include <Aspect_XAtom.hxx>
#include <Aspect_FBConfig.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>
#include <NCollection_DataMap.hxx> #include <NCollection_DataMap.hxx>
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) struct Aspect_XDisplay;
#include <InterfaceGraphic.hxx> struct Aspect_XVisualInfo;
#include <Aspect_FBConfig.hxx>
#endif
//! This class creates and provides connection with X server. //! This class creates and provides connection with X server.
//! Raises exception if can not connect to X server. //! Raises exception if can not connect to X server.
//! On Windows and Mac OS X (in case when Cocoa used) platforms this class do nothing. //! On Windows and Mac OS X (in case when Cocoa used) platforms this class does nothing.
//! WARRNING: Do not close display connection manualy! //! WARRNING: Do not close display connection manually!
class Aspect_DisplayConnection : public Standard_Transient class Aspect_DisplayConnection : public Standard_Transient
{ {
DEFINE_STANDARD_RTTIEXT(Aspect_DisplayConnection, Standard_Transient)
public: public:
//! Default constructor. Creates connection with display name taken from "DISPLAY" environment variable //! Default constructor. Creates connection with display name taken from "DISPLAY" environment variable
Standard_EXPORT Aspect_DisplayConnection(); Standard_EXPORT Aspect_DisplayConnection();
//! Destructor. Close opened connection. //! Destructor. Close opened connection.
Standard_EXPORT ~Aspect_DisplayConnection(); Standard_EXPORT virtual ~Aspect_DisplayConnection();
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__)
//! Constructor. Creates connection with display specified in theDisplayName. //! Constructor. Creates connection with display specified in theDisplayName.
//! Display name should be in format "hostname:number" or "hostname:number.screen_number", where: //! Display name should be in format "hostname:number" or "hostname:number.screen_number", where:
//! hostname - Specifies the name of the host machine on which the display is physically attached. //! hostname - Specifies the name of the host machine on which the display is physically attached.
//! number - Specifies the number of the display server on that host machine. //! number - Specifies the number of the display server on that host machine.
//! screen_number - Specifies the screen to be used on that server. Optional variable. //! screen_number - Specifies the screen to be used on that server. Optional variable.
Aspect_DisplayConnection (const TCollection_AsciiString& theDisplayName); Standard_EXPORT Aspect_DisplayConnection (const TCollection_AsciiString& theDisplayName);
//! Constructor wrapping existing Display instance. //! Constructor wrapping existing Display instance.
//! WARNING! it is a responsibility of application to keep this pointer //! WARNING! it is a responsibility of application to keep this pointer
//! valid while Aspect_DisplayConnection is alive and to close Display when it is no more needed. //! valid while Aspect_DisplayConnection is alive and to close Display when it is no more needed.
Aspect_DisplayConnection (Display* theDisplay); Standard_EXPORT Aspect_DisplayConnection (Aspect_XDisplay* theDisplay);
//! @return pointer to Display structure that serves as the connection to the X server. //! @return pointer to Display structure that serves as the connection to the X server.
Display* GetDisplay() { return myDisplay; } Aspect_XDisplay* GetDisplayAspect() { return myDisplay; }
//! @return TRUE if X Display has been allocated by this class //! @return TRUE if X Display has been allocated by this class
Standard_Boolean IsOwnDisplay() const { return myIsOwnDisplay; } Standard_Boolean IsOwnDisplay() const { return myIsOwnDisplay; }
//! @return identifier(atom) for custom named property associated with windows that use current connection to X server. //! @return identifier(atom) for custom named property associated with windows that use current connection to X server.
Atom GetAtom (const Aspect_XAtom theAtom) const; uint64_t GetAtom (const Aspect_XAtom theAtom) const
{
return myAtoms.Find (theAtom);
}
//! @return display name for this connection. //! @return display name for this connection.
const TCollection_AsciiString& GetDisplayName() { return myDisplayName; } const TCollection_AsciiString& GetDisplayName() { return myDisplayName; }
@ -71,27 +72,60 @@ public:
//! to keep this pointer valid while Aspect_DisplayConnection is alive //! to keep this pointer valid while Aspect_DisplayConnection is alive
//! and to close Display when it is no more needed. //! and to close Display when it is no more needed.
//! @param theDisplay external pointer to allocated Display, or NULL if new connection should be created //! @param theDisplay external pointer to allocated Display, or NULL if new connection should be created
void Init (Display* theDisplay); Standard_EXPORT void Init (Aspect_XDisplay* theDisplay);
//! Return default window visual or NULL when undefined. //! Return default window visual or NULL when undefined.
XVisualInfo* GetDefaultVisualInfo() const { return myDefVisualInfo; } Aspect_XVisualInfo* GetDefaultVisualInfo() const { return myDefVisualInfo; }
//! @return native Window FB config (GLXFBConfig on Xlib) //! @return native Window FB config (GLXFBConfig on Xlib)
Aspect_FBConfig GetDefaultFBConfig() const { return myDefFBConfig; } Aspect_FBConfig GetDefaultFBConfig() const { return myDefFBConfig; }
//! Set default window visual; the visual will be deallocated using XFree(). //! Set default window visual; the visual will be deallocated using XFree().
Standard_EXPORT void SetDefaultVisualInfo (XVisualInfo* theVisual, Standard_EXPORT void SetDefaultVisualInfo (Aspect_XVisualInfo* theVisual,
Aspect_FBConfig theFBConfig); Aspect_FBConfig theFBConfig);
#ifdef X_PROTOCOL
//! Constructor wrapping existing Display instance.
//! WARNING! it is a responsibility of application to keep this pointer
//! valid while Aspect_DisplayConnection is alive and to close Display when it is no more needed.
Aspect_DisplayConnection (Display* theDisplay)
: Aspect_DisplayConnection ((Aspect_XDisplay* )theDisplay) {}
//! @return pointer to Display structure that serves as the connection to the X server.
Display* GetDisplay() { return (Display* )myDisplay; }
//! Return default window visual or NULL when undefined.
XVisualInfo* GetDefaultVisualInfoX() const { return (XVisualInfo* )myDefVisualInfo; }
//! Set default window visual; the visual will be deallocated using XFree().
void SetDefaultVisualInfo (XVisualInfo* theVisual,
Aspect_FBConfig theFBConfig)
{
SetDefaultVisualInfo ((Aspect_XVisualInfo* )theVisual, theFBConfig);
}
//! @return identifier(atom) for custom named property associated with windows that use current connection to X server.
Atom GetAtomX (const Aspect_XAtom theAtom) const
{
return (Atom )GetAtom (theAtom);
}
//! Open connection with display specified in myDisplayName class field
//! or takes theDisplay parameter when it is not NULL.
void Init (Display* theDisplay)
{
Init ((Aspect_XDisplay* )theDisplay);
}
#endif
private: private:
Display* myDisplay; Aspect_XDisplay* myDisplay;
XVisualInfo* myDefVisualInfo; Aspect_XVisualInfo* myDefVisualInfo;
Aspect_FBConfig myDefFBConfig; Aspect_FBConfig myDefFBConfig;
NCollection_DataMap<Aspect_XAtom, Atom> myAtoms; NCollection_DataMap<Aspect_XAtom, uint64_t> myAtoms;
TCollection_AsciiString myDisplayName; TCollection_AsciiString myDisplayName;
Standard_Boolean myIsOwnDisplay; Standard_Boolean myIsOwnDisplay;
#endif
private: private:
@ -99,10 +133,6 @@ private:
Aspect_DisplayConnection (const Aspect_DisplayConnection& ); Aspect_DisplayConnection (const Aspect_DisplayConnection& );
Aspect_DisplayConnection& operator= (const Aspect_DisplayConnection& ); Aspect_DisplayConnection& operator= (const Aspect_DisplayConnection& );
public:
DEFINE_STANDARD_RTTIEXT(Aspect_DisplayConnection,Standard_Transient) // Type definition
}; };
DEFINE_STANDARD_HANDLE (Aspect_DisplayConnection, Standard_Transient) DEFINE_STANDARD_HANDLE (Aspect_DisplayConnection, Standard_Transient)

View File

@ -14,11 +14,7 @@
#ifndef _Aspect_FBConfig_HeaderFile #ifndef _Aspect_FBConfig_HeaderFile
#define _Aspect_FBConfig_HeaderFile #define _Aspect_FBConfig_HeaderFile
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) typedef struct __GLXFBConfigRec* GLXFBConfig;
typedef struct __GLXFBConfigRec* GLXFBConfig; typedef GLXFBConfig Aspect_FBConfig;
typedef GLXFBConfig Aspect_FBConfig; // GLXFBConfig* under UNIX
#else
typedef void* Aspect_FBConfig; // unused on other systems
#endif
#endif // _Aspect_FBConfig_HeaderFile #endif // _Aspect_FBConfig_HeaderFile

View File

@ -22,7 +22,7 @@
#ifndef _Aspect_RenderingContext_HeaderFile #ifndef _Aspect_RenderingContext_HeaderFile
#define _Aspect_RenderingContext_HeaderFile #define _Aspect_RenderingContext_HeaderFile
#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) #if defined(__APPLE__) && !defined(HAVE_XLIB)
#import <TargetConditionals.h> #import <TargetConditionals.h>
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
#ifdef __OBJC__ #ifdef __OBJC__

View File

@ -14,7 +14,7 @@
#ifndef __Aspect_WNTXWD_HXX #ifndef __Aspect_WNTXWD_HXX
# define __Aspect_WNTXWD_HXX # define __Aspect_WNTXWD_HXX
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) #if !defined(_WIN32) && (!defined(__APPLE__) || defined(HAVE_XLIB)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__)
# include <X11/XWDFile.h> # include <X11/XWDFile.h>
# else # else

View File

@ -348,6 +348,11 @@ static Standard_Integer dversion(Draw_Interpretor& di, Standard_Integer, const c
#else #else
di << "Tk disabled\n"; di << "Tk disabled\n";
#endif #endif
#ifdef HAVE_XLIB
di << "Xlib enabled (HAVE_XLIB)\n";
#elif !defined(_WIN32)
di << "Xlib disabled\n";
#endif
#ifdef HAVE_TBB #ifdef HAVE_TBB
di << "TBB enabled (HAVE_TBB)\n"; di << "TBB enabled (HAVE_TBB)\n";
#else #else

View File

@ -20,42 +20,17 @@
//function : Draw_View //function : Draw_View
//purpose : Constructor //purpose : Constructor
//======================================================================= //=======================================================================
Draw_View::Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer,
Standard_Integer theX,
Standard_Integer theY,
Standard_Integer theWidth,
Standard_Integer theHeight)
: Draw_Window("Win", theX, theY, theWidth, theHeight),
myId (theId),
myViewer (theViewer),
myIsPers (Standard_False),
myIs2D (Standard_False),
myFocalDistance(0.0),
myZoom (0.0),
myDx (0),
myDy (0),
myFrameX0 (0),
myFrameY0 (0),
myFrameX1 (0),
myFrameY1 (0)
{
memset (myType, 0, sizeof (myType));
}
//=======================================================================
//function : Draw_View
//purpose : Constructor
//=======================================================================
#if defined(_WIN32) || defined(__WIN32__)
Draw_View::Draw_View(Standard_Integer theId, Draw_View::Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer, Draw_Viewer* theViewer,
Standard_Integer theX, Standard_Integer theX,
Standard_Integer theY, Standard_Integer theY,
Standard_Integer theWidth, Standard_Integer theWidth,
Standard_Integer theHeight, Standard_Integer theHeight,
HWND theWindow) Aspect_Drawable theWindow)
: Draw_Window("Win", theX, theY, theWidth, theHeight, theWindow), : Draw_Window ("Win",
NCollection_Vec2<int> (theX, theY),
NCollection_Vec2<int> (theWidth, theHeight),
0, theWindow),
myId (theId), myId (theId),
myViewer (theViewer), myViewer (theViewer),
myIsPers (Standard_False), myIsPers (Standard_False),
@ -72,56 +47,28 @@ Draw_View::Draw_View(Standard_Integer theId,
memset (myType, 0, sizeof (myType)); memset (myType, 0, sizeof (myType));
} }
//======================================================================= //! Find window by it's XID - applicable only to X11.
//function : Draw_View static Aspect_Drawable findWindow (const char* theWindow)
//purpose : Constructor
//=======================================================================
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
Draw_View::Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer,
Standard_Integer theX,
Standard_Integer theY,
Standard_Integer theWidth,
Standard_Integer theHeight,
NSWindow* theWindow)
: Draw_Window(theWindow, "Win", theX, theY, theWidth, theHeight),
myId (theId),
myViewer (theViewer),
myIsPers (Standard_False),
myIs2D (Standard_False),
myFocalDistance(0.0),
myZoom (0.0),
myDx (0),
myDy (0),
myFrameX0 (0),
myFrameY0 (0),
myFrameX1 (0),
myFrameY1 (0)
{ {
memset (myType, 0, sizeof (myType)); Aspect_Drawable aWindow = 0;
} #ifdef HAVE_XLIB
#endif sscanf (theWindow, "%lx", &aWindow);
//=======================================================================
//function : Draw_View
//purpose : Constructor
//=======================================================================
#if defined(_WIN32) || defined (__WIN32__) || (defined(__APPLE__) && !defined(MACOSX_USE_GLX))
Draw_View::Draw_View(Standard_Integer /*theId*/,
Draw_Viewer* /*theViewer*/,
const char* /*theTitle*/)
: Draw_Window (),
myId (-1),
myViewer (NULL),
#else #else
(void )theWindow;
#endif
return aWindow;
}
//=======================================================================
//function : Draw_View
//purpose : Constructor
//=======================================================================
Draw_View::Draw_View(Standard_Integer theId, Draw_View::Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer, Draw_Viewer* theViewer,
const char* theTitle) const char* theTitle)
: Draw_Window (theTitle), : Draw_Window (theTitle, NCollection_Vec2<int>(0), NCollection_Vec2<int>(50), 0, findWindow (theTitle)),
myId (theId), myId (theId),
myViewer (theViewer), myViewer (theViewer),
#endif
myIsPers (Standard_False), myIsPers (Standard_False),
myIs2D (Standard_False), myIs2D (Standard_False),
myFocalDistance(0.0), myFocalDistance(0.0),

View File

@ -24,30 +24,13 @@ class Draw_View : public Draw_Window
public: public:
//! Constructor //! Constructor
Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer,
Standard_Integer theX,
Standard_Integer theY,
Standard_Integer theWidth,
Standard_Integer theHeight);
#if defined(_WIN32) || defined(__WIN32__)
Draw_View(Standard_Integer theId, Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer, Draw_Viewer* theViewer,
Standard_Integer theX, Standard_Integer theX,
Standard_Integer theY, Standard_Integer theY,
Standard_Integer theWidth, Standard_Integer theWidth,
Standard_Integer theHeight, Standard_Integer theHeight,
HWND theWindow); Aspect_Drawable theWindow = 0);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
Draw_View(Standard_Integer theId,
Draw_Viewer* theViewer,
Standard_Integer theX,
Standard_Integer theY,
Standard_Integer theWidth,
Standard_Integer theHeight,
NSWindow* theWindow);
#endif
//! Constructor. //! Constructor.
Draw_View(Standard_Integer theId, Draw_View(Standard_Integer theId,
@ -59,85 +42,44 @@ public:
public: // @name getters and setters public: // @name getters and setters
//! Sets horizontal offset.
void SetDx(const Standard_Integer theDx)
{
myDx = theDx;
}
//! Sets vertical offset.
void SetDy(const Standard_Integer theDy)
{
myDy = theDy;
}
//! Sets parameter of zoom.
void SetZoom(const Standard_Real theZoom)
{
myZoom = theZoom;
}
//! Sets view matrix.
void SetMatrix(const gp_Trsf& theMatrix)
{
myMatrix = theMatrix;
}
//! Sets focal distance.
void SetFocalDistance(const Standard_Real theDistance)
{
myFocalDistance = theDistance;
}
//! Gets horizontal offset. //! Gets horizontal offset.
Standard_Integer GetDx() const Standard_Integer GetDx() const { return myDx; }
{
return myDx; //! Sets horizontal offset.
} void SetDx (const Standard_Integer theDx) { myDx = theDx; }
//! Gets vertical offset. //! Gets vertical offset.
Standard_Integer GetDy() const Standard_Integer GetDy() const { return myDy; }
{
return myDy; //! Sets vertical offset.
} void SetDy (const Standard_Integer theDy) { myDy = theDy; }
//! Gets parameter of zoom. //! Gets parameter of zoom.
Standard_Real GetZoom() const Standard_Real GetZoom() const { return myZoom; }
{
return myZoom; //! Sets parameter of zoom.
} void SetZoom (const Standard_Real theZoom) { myZoom = theZoom; }
//! Gets matrix of view. //! Gets matrix of view.
const gp_Trsf& GetMatrix() const const gp_Trsf& GetMatrix() const { return myMatrix; }
{
return myMatrix; //! Sets view matrix.
} void SetMatrix (const gp_Trsf& theMatrix) { myMatrix = theMatrix; }
//! Gets focal distance. //! Gets focal distance.
Standard_Real GetFocalDistance() const Standard_Real GetFocalDistance() const { return myFocalDistance; }
{
return myFocalDistance;
}
public: //! @name public inline methods //! Sets focal distance.
void SetFocalDistance (const Standard_Real theDistance) { myFocalDistance = theDistance; }
//! Returns type of view. //! Returns type of view.
const char* Type() const char* Type() { return myType; }
{
return myType;
}
//! Returns true value if current view in 2D mode. //! Returns true value if current view in 2D mode.
Standard_Boolean Is2D() const Standard_Boolean Is2D() const { return myIs2D; }
{
return myIs2D;
}
//! Returns true value if current view in perspective mode. //! Returns true value if current view in perspective mode.
Standard_Real IsPerspective() const Standard_Real IsPerspective() const { return myIsPers; }
{
return myIsPers;
}
public: //! @name view API public: //! @name view API
@ -155,7 +97,7 @@ public: //! @name view API
Standard_Integer& theX1,Standard_Integer& theY1); Standard_Integer& theX1,Standard_Integer& theY1);
//! Perform window exposing. //! Perform window exposing.
void WExpose(); virtual void WExpose() Standard_OVERRIDE;
protected: protected:

View File

@ -30,7 +30,7 @@ static const Standard_Real DRAWINFINITE = 1e50;
Standard_EXPORT Standard_Boolean Draw_Bounds = Standard_True; Standard_EXPORT Standard_Boolean Draw_Bounds = Standard_True;
extern Standard_Boolean Draw_Batch; extern Standard_Boolean Draw_Batch;
const Standard_Integer MAXSEGMENT = 1000; const Standard_Integer MAXSEGMENT = 1000;
Segment segm[MAXSEGMENT]; Draw_XSegment segm[MAXSEGMENT];
static int nbseg=0; static int nbseg=0;
static Draw_View* curview = NULL; static Draw_View* curview = NULL;
static Standard_Integer curviewId = 0; static Standard_Integer curviewId = 0;
@ -943,12 +943,17 @@ Draw_Display Draw_Viewer::MakeDisplay (const Standard_Integer id) const
//function : Select //function : Select
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Viewer::Select (Standard_Integer& theId,
void Draw_Viewer::Select (Standard_Integer& id, Standard_Integer& X, Standard_Integer& Y, Standard_Integer& theX, Standard_Integer& theY,
Standard_Integer& Button, Standard_Boolean wait) Standard_Integer& theButton,
Standard_Boolean theToWait)
{ {
if (Draw_Batch) return; if (Draw_Batch)
id = X = Y = Button = 0; {
return;
}
theId = theX = theY = theButton = 0;
Standard_Boolean hasView = Standard_False; Standard_Boolean hasView = Standard_False;
for (int aViewIter = 0; aViewIter < MAXVIEW; ++aViewIter) for (int aViewIter = 0; aViewIter < MAXVIEW; ++aViewIter)
{ {
@ -965,105 +970,142 @@ void Draw_Viewer::Select (Standard_Integer& id, Standard_Integer& X, Standard_In
return; return;
} }
Flush(); Flush();
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))
if (!wait) { #ifdef _WIN32
if (id >=0 && id < MAXVIEW) { HANDLE hWnd = NULL;
if (myViews[id]) myViews[id]->Wait(wait);
theId = MAXVIEW; //:abv 29.05.02: cycle for working in console mode
while (theId >= MAXVIEW)
{
if (theToWait)
{
Draw_Window::SelectWait (hWnd, theX, theY, theButton);
}
else
{
Draw_Window::SelectNoWait (hWnd, theX, theY, theButton);
}
// Recherche du numero de la vue grace au HANDLE
for (int aViewIter = 0; aViewIter < MAXVIEW; ++aViewIter)
{
if (myViews[aViewIter] != NULL
&& myViews[aViewIter]->IsEqualWindows (hWnd))
{
theId = aViewIter;
}
} }
} }
else { theX = theX - myViews[theId]->GetDx();
for(int i=0 ; i<MAXVIEW ; i++) theY = -theY - myViews[theId]->GetDy();
if (myViews[i]) myViews[i]->Wait(wait); #elif defined(HAVE_XLIB)
if (!theToWait)
{
if (theId >= 0 && theId < MAXVIEW)
{
if (myViews[theId] != NULL)
{
myViews[theId]->Wait (theToWait);
}
}
}
else
{
for (int aViewIter = 0; aViewIter < MAXVIEW; ++aViewIter)
{
if (myViews[aViewIter] != NULL)
{
myViews[aViewIter]->Wait (theToWait);
}
}
} }
Standard_Boolean again = Standard_True; Standard_Boolean again = Standard_True;
while (again) { while (again)
{
Event ev; Draw_Window::Draw_XEvent ev;
ev.type = 0; ev.type = 0;
Draw_Window::GetNextEvent (ev);
GetNextEvent(ev); switch (ev.type)
{
switch (ev.type) { case ButtonPress:
{
case ButtonPress : Standard_Integer aViewIter = 0;
Standard_Integer iv; for (; aViewIter < MAXVIEW; ++aViewIter)
for (iv = 0; iv < MAXVIEW; iv++) { {
if (myViews[iv]) { if (myViews[aViewIter] != NULL
if (myViews[iv]->win == ev.window) && myViews[aViewIter]->IsEqualWindows (ev.window))
break; {
} break;
}
}
if (theToWait || theId == aViewIter)
{
if (aViewIter < MAXVIEW)
{
theId = aViewIter;
theX = ev.x;
theY = ev.y;
theButton = ev.button;
}
else
{
theId = -1;
}
again = Standard_False;
}
break;
} }
if (wait || id == iv) { case MotionNotify:
if (iv < MAXVIEW) { {
id = iv; if (theToWait)
X = ev.x; {
Y = ev.y; break;
Button = ev.button; }
} theX = ev.x;
else { theY = ev.y;
id = -1; theButton = 0;
} again = Standard_False;
again = Standard_False; break;
} }
break;
case MotionNotify :
if (wait) break;
X = ev.x;
Y = ev.y;
Button = 0;
again = Standard_False;
break;
} }
} }
if (id != -1) { if (theId != -1)
X = X - myViews[id]->GetDx();
Y = -Y - myViews[id]->GetDy();
}
if (!wait) myViews[id]->Wait(!wait);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
Standard_Integer aWindowNumber;
id = MAXVIEW;
while (id >= MAXVIEW)
{ {
GetNextEvent(wait, aWindowNumber, X, Y, Button); theX = theX - myViews[theId]->GetDx();
theY = -theY - myViews[theId]->GetDy();
if (Y < 0) }
if (!theToWait)
{
myViews[theId]->Wait (!theToWait);
}
#elif defined(__APPLE__)
theId = MAXVIEW;
while (theId >= MAXVIEW)
{
Standard_Integer aWindowNumber = 0;
Draw_Window::GetNextEvent (theToWait, aWindowNumber, theX, theY, theButton);
if (theY < 0)
{ {
continue; // mouse clicked on window title continue; // mouse clicked on window title
} }
for (Standard_Integer anIter = 0; anIter < MAXVIEW; anIter++) for (Standard_Integer aViewIter = 0; aViewIter < MAXVIEW; ++aViewIter)
{ {
if (myViews[anIter] && myViews[anIter]->IsEqualWindows (aWindowNumber)) if (myViews[aViewIter] != NULL
&& myViews[aViewIter]->IsEqualWindows (aWindowNumber))
{ {
id = anIter; theId = aViewIter;
} }
} }
} }
X = X - myViews[id]->GetDx(); theX = theX - myViews[theId]->GetDx();
Y = -Y - myViews[id]->GetDy(); theY = -theY - myViews[theId]->GetDy();
#else #else
HANDLE hWnd; // not implemented
(void )theToWait;
id = MAXVIEW; //:abv 29.05.02: cycle for working in console mode
while ( id >= MAXVIEW ) {
if (wait)
Draw_Window::SelectWait(hWnd, X, Y, Button);
else
Draw_Window::SelectNoWait(hWnd, X, Y, Button);
// Recherche du numero de la vue grace au HANDLE
for(int i=0 ; i<MAXVIEW ; i++)
if (myViews[i] && myViews[i]->win == hWnd ) id = i;
}
X = X - myViews[id]->GetDx();
Y = -Y - myViews[id]->GetDy();
#endif #endif
} }

View File

@ -15,14 +15,15 @@
// commercial license or contractual agreement. // commercial license or contractual agreement.
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <Draw_Window.hxx> #include <Draw_Window.hxx>
#include <Draw_Appli.hxx> #include <Draw_Appli.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>
#include <MainWindow.h> #include "Draw_WNTMainWindow.pxx"
#include <CommandWindow.h> #include "Draw_WNTCommandWindow.pxx"
#define CLIENTWND 0 #define CLIENTWND 0
@ -49,11 +50,10 @@ HWND CreateCommandWindow(HWND hWnd, int /*nitem*/)
0, 0, 400, 100, 0, 0, 400, 100,
hWnd, NULL, hInstance, NULL); hWnd, NULL, hInstance, NULL);
ShowWindow(hWndCommand, SW_SHOW); ShowWindow (hWndCommand, SW_SHOW);
return hWndCommand; return hWndCommand;
} }
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| COMMAND WINDOW PROCEDURE | COMMAND WINDOW PROCEDURE
\*--------------------------------------------------------*/ \*--------------------------------------------------------*/

View File

@ -16,25 +16,19 @@
#ifdef _WIN32 #ifdef _WIN32
#define COMMANDCLASS L"COMMANDWINDOW" #define COMMANDCLASS L"COMMANDWINDOW"
#define COMMANDTITLE L"Command Window" #define COMMANDTITLE L"Command Window"
HWND CreateCommandWindow(HWND, int); HWND CreateCommandWindow(HWND, int);
LRESULT APIENTRY CommandProc(HWND, UINT, WPARAM, LPARAM); LRESULT APIENTRY CommandProc(HWND, UINT, WPARAM, LPARAM);
BOOL CommandCreateProc(HWND); BOOL CommandCreateProc(HWND);
VOID CommandDestroyProc(HWND); VOID CommandDestroyProc(HWND);
BOOL CommandHandler(HWND, WPARAM, LPARAM); BOOL CommandHandler(HWND, WPARAM, LPARAM);
#include <sys/stat.h> #include <sys/stat.h>
#include <tcl.h> #include <tcl.h>
#include <Standard_Stream.hxx> #include <Standard_Stream.hxx>
#include <stdio.h> #include <stdio.h>
//#include <io.h>
#include <fcntl.h> #include <fcntl.h>
#endif #endif

View File

@ -20,22 +20,19 @@
#include <windows.h> #include <windows.h>
#include "Draw_Window.hxx" #include "Draw_Window.hxx"
#include "DrawRessource.h" #include "Draw_WNTRessource.pxx"
#include "init.h" #include "Draw_WNTInit.pxx"
#include "MainWindow.h" #include "Draw_WNTMainWindow.pxx"
#include "CommandWindow.h" #include "Draw_WNTCommandWindow.pxx"
#define USEDEFAULT 200 #define USEDEFAULT 200
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| REGISTER APPLICATION CLASS | REGISTER APPLICATION CLASS
| Enregistrement des classes de fenetres de l'application | Enregistrement des classes de fenetres de l'application
| |
d\*--------------------------------------------------------*/ \*--------------------------------------------------------*/
BOOL RegisterAppClass (HINSTANCE theInstance)
BOOL RegisterAppClass(HINSTANCE hInstance)
{ {
WNDCLASSW wndClass; WNDCLASSW wndClass;
@ -44,36 +41,35 @@ BOOL RegisterAppClass(HINSTANCE hInstance)
wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_CLASSDC; wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_CLASSDC;
wndClass.cbClsExtra = 0; wndClass.cbClsExtra = 0;
wndClass.hCursor = LoadCursor (NULL, IDC_ARROW); wndClass.hCursor = LoadCursor (NULL, IDC_ARROW);
wndClass.hInstance = hInstance; wndClass.hInstance = theInstance;
// Enregistrement de la fenetre principale // Enregistrement de la fenetre principale
//----- //-----
wndClass.cbWndExtra = sizeof(void*); wndClass.cbWndExtra = sizeof(void*);
wndClass.lpfnWndProc = (WNDPROC)WndProc; wndClass.lpfnWndProc = (WNDPROC)WndProc;
wndClass.hIcon = LoadIconW (hInstance, MAKEINTRESOURCEW(IDI_ICON1)); wndClass.hIcon = LoadIconW (theInstance, MAKEINTRESOURCEW(IDI_ICON1));
wndClass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); wndClass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
wndClass.lpszMenuName = MAKEINTRESOURCEW(APPMENU); wndClass.lpszMenuName = MAKEINTRESOURCEW(APPMENU);
wndClass.lpszClassName = APPCLASS; wndClass.lpszClassName = APPCLASS;
if (!RegisterClassW (&wndClass))
if(!RegisterClassW(&wndClass)) {
return(FALSE); return FALSE;
}
// Enregistrement de la fenetre DrawWindow // Enregistrement de la fenetre DrawWindow
//------ //------
wndClass.cbWndExtra = sizeof(void*); // Extra Memory wndClass.cbWndExtra = sizeof(void*); // Extra Memory
wndClass.lpfnWndProc = (WNDPROC)DrawWindow::DrawProc; wndClass.lpfnWndProc = (WNDPROC)Draw_Window::DrawProc;
wndClass.hIcon = 0; wndClass.hIcon = 0;
wndClass.hbrBackground = (HBRUSH) GetStockObject(BLACK_BRUSH); wndClass.hbrBackground = (HBRUSH) GetStockObject(BLACK_BRUSH);
wndClass.lpszMenuName = NULL; wndClass.lpszMenuName = NULL;
wndClass.lpszClassName = DRAWCLASS; wndClass.lpszClassName = DRAWCLASS;
if (!RegisterClassW (&wndClass))
if(!RegisterClassW(&wndClass))
{ {
UnregisterClassW(APPCLASS, hInstance); UnregisterClassW (APPCLASS, theInstance);
return(FALSE); return FALSE;
} }
// Enregistrement de la fenetre CommandWindow // Enregistrement de la fenetre CommandWindow
//------ //------
wndClass.lpfnWndProc = (WNDPROC)CommandProc; wndClass.lpfnWndProc = (WNDPROC)CommandProc;
@ -81,68 +77,58 @@ BOOL RegisterAppClass(HINSTANCE hInstance)
wndClass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH); wndClass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
wndClass.lpszMenuName = NULL; wndClass.lpszMenuName = NULL;
wndClass.lpszClassName = COMMANDCLASS; wndClass.lpszClassName = COMMANDCLASS;
if (!RegisterClassW (&wndClass))
if(!RegisterClassW(&wndClass))
{ {
UnregisterClassW(APPCLASS, hInstance); UnregisterClassW (APPCLASS, theInstance);
UnregisterClassW(DRAWCLASS, hInstance); UnregisterClassW (DRAWCLASS, theInstance);
return(FALSE); return FALSE;
} }
return(TRUE); return TRUE;
} }
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| UNREGISTER APPLICATION CLASS | UNREGISTER APPLICATION CLASS
| Suppression des classes de fenetres de l'application | Suppression des classes de fenetres de l'application
| |
\*--------------------------------------------------------*/ \*--------------------------------------------------------*/
VOID UnregisterAppClass(HINSTANCE hInstance) VOID UnregisterAppClass (HINSTANCE theInstance)
{ {
UnregisterClassW(APPCLASS, hInstance); UnregisterClassW (APPCLASS, theInstance);
UnregisterClassW(DRAWCLASS, hInstance); UnregisterClassW (DRAWCLASS, theInstance);
} }
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| CREATE APPLICATION WINDOW | CREATE APPLICATION WINDOW
| Creation de la fenetre Top-Level | Creation de la fenetre Top-Level
| |
\*--------------------------------------------------------*/ \*--------------------------------------------------------*/
HWND CreateAppWindow(HINSTANCE hInstance) HWND CreateAppWindow (HINSTANCE theInstance)
{ {
return(CreateWindowW(APPCLASS, APPTITLE, return CreateWindowW (APPCLASS, APPTITLE,
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN, WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN,
400,0, 400, 0,
623,767, 623,767,
NULL, NULL, hInstance, NULL)); NULL, NULL, theInstance, NULL);
} }
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| CREATE MDI CLIENT WINDOW | CREATE MDI CLIENT WINDOW
| Creation de la fenetre qui contient des fenetres MDI | Creation de la fenetre qui contient des fenetres MDI
| |
\*--------------------------------------------------------*/ \*--------------------------------------------------------*/
HWND CreateMDIClientWindow(HWND hWndFrame) HWND CreateMDIClientWindow (HWND theWndFrame)
{ {
HWND hWndClient;
HANDLE hInstance;
CLIENTCREATESTRUCT ccs; CLIENTCREATESTRUCT ccs;
// Initialisation de la structure client
ccs.hWindowMenu = NULL; ccs.hWindowMenu = NULL;
ccs.idFirstChild = 0; ccs.idFirstChild = 0;
hInstance = (HANDLE)GetWindowLongPtrW(hWndFrame, GWLP_HINSTANCE); HINSTANCE hInstance = (HINSTANCE )GetWindowLongPtrW (theWndFrame, GWLP_HINSTANCE);
HWND hWndClient = CreateWindowW (L"MDICLIENT", NULL,
hWndClient = CreateWindowW(L"MDICLIENT",NULL, WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE | MDIS_ALLCHILDSTYLES,
WS_CHILD | WS_CLIPSIBLINGS | 0, 0, 1, 1,
WS_VISIBLE | MDIS_ALLCHILDSTYLES, theWndFrame, NULL,
0, 0, 1, 1, hInstance, (LPVOID )&ccs);
hWndFrame, NULL, return hWndClient;
(HINSTANCE)hInstance, (LPVOID)&ccs);
return(hWndClient);
} }
#endif #endif

View File

@ -25,5 +25,4 @@ VOID UnregisterAppClass(HINSTANCE);
HWND CreateAppWindow(HINSTANCE); HWND CreateAppWindow(HINSTANCE);
HWND CreateMDIClientWindow(HWND); HWND CreateMDIClientWindow(HWND);
#endif #endif

View File

@ -17,18 +17,17 @@
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <DrawRessource.h>
#include <init.h>
#include <Draw_Window.hxx> #include <Draw_Window.hxx>
#include <MainWindow.h> #include "Draw_WNTCommandWindow.pxx"
#include <CommandWindow.h> #include "Draw_WNTInit.pxx"
#include "Draw_WNTMainWindow.pxx"
#include "Draw_WNTRessource.pxx"
Standard_Boolean Draw_Interprete(const char* command); // Implemented in Draw.cxx Standard_Boolean Draw_Interprete(const char* command); // Implemented in Draw.cxx
extern Standard_Boolean Draw_IsConsoleSubsystem; extern Standard_Boolean Draw_IsConsoleSubsystem;
//extern "C" int compat_unlink(const char *fname); // Implemente dans TCL
/*--------------------------------------------------------*\ /*--------------------------------------------------------*\
| CLIENT WINDOW PROCEDURE | CLIENT WINDOW PROCEDURE
| |
@ -42,7 +41,7 @@ LRESULT APIENTRY WndProc(HWND hWndFrame, UINT wMsg, WPARAM wParam, LPARAM lParam
{ {
CreateProc (hWndFrame); CreateProc (hWndFrame);
HWND hWndClient = (HWND )GetWindowLongPtrW (hWndFrame, CLIENTWND); HWND hWndClient = (HWND )GetWindowLongPtrW (hWndFrame, CLIENTWND);
DrawWindow::hWndClientMDI = hWndClient; Draw_Window::hWndClientMDI = hWndClient;
if (!Draw_IsConsoleSubsystem) if (!Draw_IsConsoleSubsystem)
{ {
CreateCommandWindow (hWndFrame, 0); CreateCommandWindow (hWndFrame, 0);
@ -82,7 +81,6 @@ BOOL CreateProc(HWND hWndFrame)
return(TRUE); return(TRUE);
} }
/*--------------------------------------------------------------------------*\ /*--------------------------------------------------------------------------*\
| COMMAND PROCEDURE | COMMAND PROCEDURE
| Handler for message WM_COMMAND | Handler for message WM_COMMAND
@ -138,7 +136,6 @@ LRESULT APIENTRY CmdProc(HWND hWndFrame, UINT wMsg, WPARAM /*wParam*/, LPARAM /*
return 0; return 0;
} }
/*--------------------------------------------------------------------------*\ /*--------------------------------------------------------------------------*\
| CLIENT DESTROY PROCEDURE | CLIENT DESTROY PROCEDURE
| Handler for message WM_DESTROY. | Handler for message WM_DESTROY.
@ -152,4 +149,3 @@ VOID DestroyProc(HWND hWnd)
PostQuitMessage(0); PostQuitMessage(0);
} }
#endif #endif

View File

@ -18,7 +18,7 @@
*/ */
/** MainWindow.h /** MainWindow.h
*/ */
/*\****************************************************/ /*****************************************************/
#ifdef _WIN32 #ifdef _WIN32
#define CLIENTWND 0 #define CLIENTWND 0
@ -33,5 +33,4 @@ BOOL CreateProc(HWND);
VOID DestroyProc(HWND); VOID DestroyProc(HWND);
LRESULT APIENTRY CmdProc(HWND, UINT, WPARAM, LPARAM); LRESULT APIENTRY CmdProc(HWND, UINT, WPARAM, LPARAM);
#endif #endif

View File

@ -41,6 +41,4 @@
#endif #endif
#endif #endif
#endif #endif

File diff suppressed because it is too large Load Diff

View File

@ -17,211 +17,78 @@
#ifndef Draw_Window_HeaderFile #ifndef Draw_Window_HeaderFile
#define Draw_Window_HeaderFile #define Draw_Window_HeaderFile
#if defined(_WIN32)
#include <windows.h>
#endif
#include <Aspect_Drawable.hxx>
#include <NCollection_Vec2.hxx>
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
#include <Standard_Integer.hxx> #include <Standard_Integer.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>
#if !defined(_WIN32) && !defined(__WIN32__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #include <memory>
const Standard_Integer MAXCOLOR = 15; const Standard_Integer MAXCOLOR = 15;
//! Segment definition.
struct Draw_XSegment
{
NCollection_Vec2<short> Points[2]; // same as XSegment
NCollection_Vec2<short>& operator[](int theIndex) { return Points[theIndex]; }
const NCollection_Vec2<short>& operator[](int theIndex) const { return Points[theIndex]; }
void Init (Standard_Integer theXStart, Standard_Integer theYStart, Standard_Integer theXEnd, Standard_Integer theYEnd)
{
Points[0].SetValues ((short )theXStart, (short )theYStart);
Points[1].SetValues ((short )theXEnd, (short )theYEnd);
}
};
#if defined(_WIN32)
#define DRAWCLASS L"DRAWWINDOW"
#define DRAWTITLE L"Draw View"
enum console_semaphore_value
{
STOP_CONSOLE,
WAIT_CONSOLE_COMMAND,
HAS_CONSOLE_COMMAND
};
// global variable describing console state
extern console_semaphore_value volatile console_semaphore;
// Console command buffer
#define DRAW_COMMAND_SIZE 1000
extern wchar_t console_command[DRAW_COMMAND_SIZE + 1];
// PROCEDURE DE DRAW WINDOW
Standard_EXPORT Standard_Boolean Init_Appli(HINSTANCE,HINSTANCE,int,HWND&);
Standard_EXPORT void Run_Appli(HWND);
Standard_EXPORT void Destroy_Appli(HINSTANCE);
#else
//! Run the application.
//! interp will be called to interpret a command and return True if the command is complete.
void Run_Appli (Standard_Boolean (*inteprete) (const char*));
//! Initialize application.
Standard_Boolean Init_Appli();
//! Destroy application.
void Destroy_Appli();
#if defined(HAVE_XLIB)
typedef unsigned long Window; typedef unsigned long Window;
typedef unsigned long Pixmap; typedef unsigned long Pixmap;
typedef unsigned long Drawable; typedef unsigned long Drawable;
// Definition de la class Base_Window (Definie dans Draw_Window.cxx) #elif defined(__APPLE__)
//===================================
struct Base_Window;
// Definition de la classe Segment
//================================
struct Segment
{
short xx1;
short yy1;
short xx2;
short yy2;
void Init(short x1, short y1, short x2, short y2) {
xx1 = x1; yy1 = y1; xx2 = x2; yy2 = y2;
}
};
// Definition de la structure Event
//=================================
typedef struct Event
{
Standard_Integer type;
Window window;
Standard_Integer button;
Standard_Integer x;
Standard_Integer y;
} Event;
// Definition de la classe Draw_Window
//====================================
class Draw_Window
{
public :
/**
* Type of the callback function that is to be passed to the method
* AddCallbackBeforeTerminate().
*/
typedef void (*FCallbackBeforeTerminate)();
/**
* This method registers a callback function that will be called just before exit.
* This is useful especially for Windows platform, on which Draw is normally
* self-terminated instead of exiting.
*/
Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
/**
* Just in case method for un-registering a callback previously registered by
* AddCallbackBeforeTerminate()
*/
Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
Draw_Window (); // the window is not initialized
Draw_Window (const char* title,
Standard_Integer X, Standard_Integer Y = 0,
Standard_Integer DX = 50, Standard_Integer DY = 50);
Draw_Window (Window mother);
Draw_Window (Window mother,char* title,
Standard_Integer X = 0, Standard_Integer Y = 0,
Standard_Integer DX = 50, Standard_Integer DY = 50);
Draw_Window(const char *window);
void Init (Standard_Integer X = 0, Standard_Integer Y = 0,
Standard_Integer DX = 50, Standard_Integer DY = 50);
void Init (Window mother,
Standard_Integer X = 0, Standard_Integer Y = 0,
Standard_Integer DX = 50, Standard_Integer DY = 50);
void StopWinManager();
void SetPosition (Standard_Integer NewXpos,
Standard_Integer NewYpos);
void SetDimension(Standard_Integer NewDx,
Standard_Integer NewDy);
void GetPosition(Standard_Integer &PosX,
Standard_Integer &PosY);
Standard_Integer HeightWin() const;
Standard_Integer WidthWin() const;
void SetTitle (const TCollection_AsciiString& theTitle);
TCollection_AsciiString GetTitle() const;
//! Return true if window is displayed on the screen.
bool IsMapped() const;
void DisplayWindow();
void Hide();
void Destroy();
void Clear();
void Wait(Standard_Boolean wait = Standard_True);
Drawable GetDrawable() const;
// Initializes off-screen image buffer according to current window size
void InitBuffer();
static Standard_Boolean DefineColor(const Standard_Integer, const char*);
void SetColor(int);
void SetMode(int);
void DrawString(int, int, char*);
void DrawSegments(Segment* ,int);
void Redraw();
static void Flush();
// save snapshot
Standard_Boolean Save(const char* theFileName) const;
virtual ~Draw_Window ();
// X Event management
virtual void WExpose();
virtual void WButtonPress(const Standard_Integer X,
const Standard_Integer Y,
const Standard_Integer& button);
virtual void WButtonRelease(const Standard_Integer X,
const Standard_Integer Y,
const Standard_Integer& button);
//virtual void WKeyPress(char, KeySym& );
virtual void WMotionNotify(const Standard_Integer X,
const Standard_Integer Y);
virtual void WConfigureNotify(const Standard_Integer X,
const Standard_Integer Y,
const Standard_Integer dx,
const Standard_Integer dy);
virtual void WUnmapNotify();
Base_Window& base;
Window win;
Window myMother; // default : myMother is the root window
Pixmap myBuffer;
static Draw_Window* firstWindow;
Draw_Window* next;
Draw_Window* previous;
Standard_Boolean myUseBuffer;
Standard_Boolean withWindowManager;
};
//======================================================
// function : Run_Appli
// purpose : run the application
// interp will be called to interpret a command
// and return True if the command is complete
//======================================================
void Run_Appli(Standard_Boolean (*inteprete) (const char*));
//======================================================
// function : Init_Appli
// purpose :
//======================================================
Standard_Boolean Init_Appli();
//======================================================
// function : Destroy_Appli()
// purpose :
//======================================================
void Destroy_Appli();
//======================================================
// function : GetNextEvent()
// purpose :
//======================================================
void GetNextEvent(Event&);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
const Standard_Integer MAXCOLOR = 15;
struct Segment
{
Standard_Integer myXStart;
Standard_Integer myYStart;
Standard_Integer myXEnd;
Standard_Integer myYEnd;
void Init(short theXStart, short theYStart, short theXEnd, short theYEnd) {
myXStart = theXStart; myYStart = theYStart; myXEnd = theXEnd; myYEnd = theYEnd;
}
};
#ifdef __OBJC__ #ifdef __OBJC__
@class NSView; @class NSView;
@class NSWindow; @class NSWindow;
@ -233,308 +100,198 @@ struct Segment
struct NSImage; struct NSImage;
struct Draw_CocoaView; struct Draw_CocoaView;
#endif #endif
#endif
#endif
//! Draw window.
class Draw_Window class Draw_Window
{ {
public :
/**
* Type of the callback function that is to be passed to the method
* AddCallbackBeforeTerminate().
*/
typedef void (*FCallbackBeforeTerminate)();
/**
* This method registers a callback function that will be called just before exit.
* This is useful especially for Windows platform, on which Draw is normally
* self-terminated instead of exiting.
*/
Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
/**
* Just in case method for un-registering a callback previously registered by
* AddCallbackBeforeTerminate()
*/
Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
Draw_Window (); // the window is not initialized
Draw_Window (Standard_CString theTitle,
const Standard_Integer& theXLeft = 0, const Standard_Integer& theYTop = 0,
const Standard_Integer& theWidth = 50, const Standard_Integer& theHeight = 50);
Draw_Window (NSWindow* theWindow, Standard_CString theTitle,
const Standard_Integer& theXLeft = 0, const Standard_Integer& theYTop = 0,
const Standard_Integer& theWidth = 50, const Standard_Integer& theHeight = 50);
void Init (const Standard_Integer& theXLeft = 0, const Standard_Integer& theYLeft = 0,
const Standard_Integer& theWidth = 50, const Standard_Integer& theHeight = 50);
virtual ~Draw_Window ();
void SetPosition (const Standard_Integer& theNewXpos,
const Standard_Integer& theNewYpos);
void SetDimension (const Standard_Integer& theNewWidth,
const Standard_Integer& theNewHeight);
void GetPosition (Standard_Integer &thePosX,
Standard_Integer &thePosY);
Standard_Integer HeightWin() const;
Standard_Integer WidthWin() const;
void SetTitle (const TCollection_AsciiString& theTitle);
TCollection_AsciiString GetTitle() const;
//! Return true if window is displayed on the screen.
bool IsMapped() const;
void DisplayWindow();
void Hide();
void Destroy();
void Clear();
void InitBuffer();
static Standard_Boolean DefineColor (const Standard_Integer&, Standard_CString);
void SetColor (const Standard_Integer& theColor);
void SetMode (const Standard_Integer& theMode);
void DrawString (const Standard_Integer& theX, const Standard_Integer& theY, char* theText);
void DrawSegments (Segment* theSegment, const Standard_Integer& theNumberOfElements);
void Redraw();
static void Flush();
// save snapshot
Standard_Boolean Save (Standard_CString theFileName) const;
Standard_Boolean IsEqualWindows (const Standard_Integer& theWindowNumber);
private:
NSWindow* myWindow;
Draw_CocoaView* myView;
NSImage* myImageBuffer;
Standard_Boolean myUseBuffer;
Standard_Integer myCurrentColor;
static Draw_Window* firstWindow;
Draw_Window* nextWindow;
Draw_Window* previousWindow;
};
//======================================================
// function : Run_Appli
// purpose : run the application
// interp will be called to interpret a command
// and return True if the command is complete
//======================================================
void Run_Appli(Standard_Boolean (*inteprete) (const char*));
//======================================================
// function : Init_Appli
// purpose :
//======================================================
Standard_Boolean Init_Appli();
//======================================================
// function : Destroy_Appli()
// purpose :
//======================================================
void Destroy_Appli();
//======================================================
// function : GetNextEvent()
// purpose :
//======================================================
void GetNextEvent (Standard_Boolean theWait,
Standard_Integer& theWindowNumber,
Standard_Integer& theX,
Standard_Integer& theY,
Standard_Integer& theButton);
#else
// Specifique WNT
#include <windows.h>
#define DRAWCLASS L"DRAWWINDOW"
#define DRAWTITLE L"Draw View"
#define MAXCOLOR 15
// definition de la classe Segment
class DrawWindow;
class Segment
{
friend class DrawWindow;
public :
//constructeur
Segment ()
: x1(0),
y1(0),
x2(0),
y2(0)
{
}
//destructeur
~Segment () {}
//methods
void Init(Standard_Integer,
Standard_Integer,
Standard_Integer,
Standard_Integer);
private:
//atributs :
Standard_Integer x1;
Standard_Integer y1;
Standard_Integer x2;
Standard_Integer y2;
};
//definition de la classe DRAWWINDOW
class DrawWindow
{
//constructeur
public: public:
/** //! Type of the callback function that is to be passed to the method AddCallbackBeforeTerminate().
* Type of the callback function that is to be passed to the method
* AddCallbackBeforeTerminate().
*/
typedef void (*FCallbackBeforeTerminate)(); typedef void (*FCallbackBeforeTerminate)();
/** //! This method registers a callback function that will be called just before exit.
* This method registers a callback function that will be called just before exit. //! This is useful especially for Windows platform, on which Draw is normally self-terminated instead of exiting.
* This is useful especially for Windows platform, on which Draw is normally Standard_EXPORT static void AddCallbackBeforeTerminate (FCallbackBeforeTerminate theCB);
* self-terminated instead of exiting.
*/
Standard_EXPORT static void AddCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
/** //! Just in case method for un-registering a callback previously registered by AddCallbackBeforeTerminate().
* Just in case method for un-registering a callback previously registered by Standard_EXPORT static void RemoveCallbackBeforeTerminate (FCallbackBeforeTerminate theCB);
* AddCallbackBeforeTerminate()
*/
Standard_EXPORT static void RemoveCallbackBeforeTerminate(FCallbackBeforeTerminate theCB);
Standard_EXPORT DrawWindow(); //! @sa SetColor()
Standard_EXPORT DrawWindow(const char*, Standard_Integer, Standard_Integer, Standard_EXPORT static Standard_Boolean DefineColor (const Standard_Integer theIndex,
Standard_Integer, Standard_Integer); const char* theColorName);
Standard_EXPORT DrawWindow(const char*, Standard_Integer, Standard_Integer,
Standard_Integer, Standard_Integer, HWND); //! XFlush() wrapper (X11), has no effect on other platforms.
//destructeur Standard_EXPORT static void Flush();
Standard_EXPORT virtual ~DrawWindow();
//methods
public: public:
Standard_EXPORT void Init(Standard_Integer, Standard_Integer,
Standard_Integer, Standard_Integer);
Standard_EXPORT void SetUseBuffer(Standard_Boolean); //! Destructor.
// Turns on/off usage of off-screen image buffer (can be used for redrawing optimization) Standard_EXPORT virtual ~Draw_Window();
Standard_Boolean GetUseBuffer() const { return myUseBuffer; } //! Get window position.
// Returns Standard_True if off-screen image buffer is being used Standard_EXPORT void GetPosition (Standard_Integer& thePosX,
Standard_Integer& thePosY);
//taille et position //! Set window position.
Standard_EXPORT void SetPosition (Standard_Integer,Standard_Integer); Standard_EXPORT void SetPosition (Standard_Integer theNewXpos,
Standard_EXPORT void SetDimension(Standard_Integer,Standard_Integer); Standard_Integer theNewYpos);
Standard_EXPORT void GetPosition (Standard_Integer&,Standard_Integer&);
//! Return window height.
Standard_EXPORT Standard_Integer HeightWin() const; Standard_EXPORT Standard_Integer HeightWin() const;
Standard_EXPORT Standard_Integer WidthWin() const;
//Title //! Return window width.
Standard_EXPORT void SetTitle (const TCollection_AsciiString& ); Standard_EXPORT Standard_Integer WidthWin() const;
//! Set window dimensions.
Standard_EXPORT void SetDimension (Standard_Integer theNewDx,
Standard_Integer theNewDy);
//! Return window title.
Standard_EXPORT TCollection_AsciiString GetTitle() const; Standard_EXPORT TCollection_AsciiString GetTitle() const;
//Affichage //! Set window title.
//! Return true if window is displayed on the screen. Standard_EXPORT void SetTitle (const TCollection_AsciiString& theTitle);
bool IsMapped() const;
//! Return true if window is displayed on the screen.
Standard_EXPORT bool IsMapped() const;
//! Display window on the screen.
Standard_EXPORT void DisplayWindow(); Standard_EXPORT void DisplayWindow();
//! Hide window.
Standard_EXPORT void Hide(); Standard_EXPORT void Hide();
//! Destroy window.
Standard_EXPORT void Destroy(); Standard_EXPORT void Destroy();
//! Clear window content.
Standard_EXPORT void Clear(); Standard_EXPORT void Clear();
static void Flush() {} ;
// save snapshot //! Returns Standard_True if off-screen image buffer is being used
Standard_EXPORT Standard_Boolean Save(const char* theFileName) const; Standard_Boolean GetUseBuffer() const { return myUseBuffer; }
//Dessin // Turns on/off usage of off-screen image buffer (can be used for redrawing optimization)
Standard_EXPORT void DrawString(int,int,char*); Standard_EXPORT void SetUseBuffer (Standard_Boolean theToUse);
Standard_EXPORT void DrawSegments(Segment*,int);
Standard_EXPORT void InitBuffer(); //! Set active color index for further paintings.
// Initializes off-screen image buffer according to current window size //! @sa DefineColor()
Standard_EXPORT void SetColor (Standard_Integer theColor);
//! Set active paint mode (3 for COPY; 6 for XOR).
Standard_EXPORT void SetMode (Standard_Integer theMode);
//! Draw the string.
Standard_EXPORT void DrawString (Standard_Integer theX, Standard_Integer theY,
const char* theText);
//! Draw array of segments.
Standard_EXPORT void DrawSegments (const Draw_XSegment* theSegments,
Standard_Integer theNumberOfElements);
//! Redraw window content.
Standard_EXPORT void Redraw(); Standard_EXPORT void Redraw();
// Copies an image from memory buffer to screen
//Couleur //! Save snapshot.
Standard_EXPORT void SetColor(Standard_Integer); Standard_EXPORT Standard_Boolean Save (const char* theFileName) const;
Standard_EXPORT void SetMode(int);
Standard_EXPORT static Standard_Boolean DefineColor ( const Standard_Integer,const char*);
//Gestion des Messages //! Perform window exposing.
Standard_EXPORT virtual void WExpose (); virtual void WExpose() = 0;
Standard_EXPORT virtual void WButtonPress(const Standard_Integer,const Standard_Integer,
const Standard_Integer&);
Standard_EXPORT virtual void WButtonRelease(const Standard_Integer,const Standard_Integer,
const Standard_Integer&);
Standard_EXPORT virtual void WMotionNotify(const Standard_Integer,const Standard_Integer);
Standard_EXPORT virtual void WConfigureNotify(const Standard_Integer,const Standard_Integer,
const Standard_Integer,const Standard_Integer);
Standard_EXPORT virtual void WUnmapNotify();
//Gestion souris //! (Re)initializes off-screen image buffer according to current window size.
Standard_EXPORT static void SelectWait (HANDLE&,int&,int&,int&); Standard_EXPORT void InitBuffer();
Standard_EXPORT static void SelectNoWait (HANDLE&,int&,int&,int&);
// Procedure de fenetre protected:
Standard_EXPORT static LRESULT APIENTRY DrawProc (HWND,UINT,WPARAM,LPARAM);
private: //! Main constructor.
//! @param theTitle [in] window title
//! @param theXY [in] top-left position
//! @param theSize [in] window dimensions
//! @param theParent [in] optional native parent window
//! @param theWin [in] optional native window
Standard_EXPORT Draw_Window (const char* theTitle,
const NCollection_Vec2<int>& theXY,
const NCollection_Vec2<int>& theSize,
Aspect_Drawable theParent,
Aspect_Drawable theWin);
Standard_EXPORT static HWND CreateDrawWindow(HWND,int); //! Initialize the window.
Standard_EXPORT HDC GetMemDC(HDC); Standard_EXPORT void init (const NCollection_Vec2<int>& theXY,
Standard_EXPORT void ReleaseMemDC(HDC); const NCollection_Vec2<int>& theSize);
//atributs
public: public:
HWND win;
#if defined(_WIN32)
Standard_Boolean IsEqualWindows (HANDLE theWindow) { return myWindow == theWindow; }
Standard_EXPORT static void SelectWait (HANDLE& theWindow, int& theX, int& theY, int& theButton);
Standard_EXPORT static void SelectNoWait (HANDLE& theWindow, int& theX, int& theY, int& theButton);
// Procedure de fenetre
Standard_EXPORT static LRESULT APIENTRY DrawProc (HWND, UINT, WPARAM, LPARAM);
static HWND hWndClientMDI; static HWND hWndClientMDI;
#elif defined(HAVE_XLIB)
Standard_Boolean IsEqualWindows (Window theWindow) { return myWindow == theWindow; }
//! Event structure.
struct Draw_XEvent
{
Standard_Integer type;
Window window;
Standard_Integer button;
Standard_Integer x;
Standard_Integer y;
};
//! Retrieve event.
static void GetNextEvent (Draw_XEvent& theEvent);
void Wait (Standard_Boolean theToWait = Standard_True);
#elif defined(__APPLE__)
Standard_Boolean IsEqualWindows (const Standard_Integer& theWindowNumber);
static void GetNextEvent (Standard_Boolean theWait,
Standard_Integer& theWindowNumber,
Standard_Integer& theX,
Standard_Integer& theY,
Standard_Integer& theButton);
#endif
private: private:
static DrawWindow* firstWindow;
DrawWindow* next; #if defined(_WIN32)
DrawWindow* previous; Standard_EXPORT static HWND createDrawWindow (HWND , int );
HBITMAP myMemHbm; Standard_EXPORT HDC getMemDC (HDC theWinDC);
HBITMAP myOldHbm; Standard_EXPORT void releaseMemDC(HDC theMemDC);
Standard_Boolean myUseBuffer; #elif defined(HAVE_XLIB)
Drawable GetDrawable() const { return myUseBuffer ? myImageBuffer : myWindow; }
struct Base_Window; // opaque structure with extra Xlib parameters
#endif
private:
#if defined(_WIN32)
HWND myWindow; //!< native window
HBITMAP myMemHbm;
HBITMAP myOldHbm;
Standard_Integer myCurrPen; Standard_Integer myCurrPen;
Standard_Integer myCurrMode; Standard_Integer myCurrMode;
#elif defined(HAVE_XLIB)
Window myWindow; //!< native window
Window myMother; //!< parent native window
Pixmap myImageBuffer;
std::unique_ptr<Base_Window> myBase;
#elif defined(__APPLE__)
NSWindow* myWindow; //!< native window
Draw_CocoaView* myView;
NSImage* myImageBuffer;
#else
Aspect_Drawable myWindow;
#endif
Standard_Integer myCurrentColor;
Standard_Boolean myUseBuffer;
}; };
typedef DrawWindow Draw_Window; #endif // Draw_Window_HeaderFile
typedef enum {
STOP_CONSOLE,
WAIT_CONSOLE_COMMAND,
HAS_CONSOLE_COMMAND} console_semaphore_value;
// global variable describing console state
extern console_semaphore_value volatile console_semaphore;
// Console command buffer
#define DRAW_COMMAND_SIZE 1000
extern wchar_t console_command[DRAW_COMMAND_SIZE + 1];
// PROCEDURE DE DRAW WINDOW
Standard_EXPORT Standard_Boolean Init_Appli(HINSTANCE,HINSTANCE,int,HWND&);
Standard_EXPORT void Run_Appli(HWND);
Standard_EXPORT void Destroy_Appli(HINSTANCE);
#endif
#endif

View File

@ -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.
#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) #if defined(__APPLE__) && !defined(HAVE_XLIB)
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
@ -121,52 +121,23 @@ Standard_Real Draw_RGBColorsArray[MAXCOLOR][3] = {{1.0, 1.0, 1.0},
//function : Draw_Window //function : Draw_Window
//purpose : //purpose :
//======================================================================= //=======================================================================
Draw_Window::Draw_Window() : Draw_Window::Draw_Window (const char* theTitle,
myWindow (NULL), const NCollection_Vec2<int>& theXY,
const NCollection_Vec2<int>& theSize,
Aspect_Drawable theParent,
Aspect_Drawable theWindow)
: myWindow (NULL),
myView (NULL), myView (NULL),
myImageBuffer (NULL), myImageBuffer (NULL),
myUseBuffer (Standard_False), myCurrentColor (0),
nextWindow (firstWindow), myUseBuffer (Standard_False)
previousWindow (NULL)
{ {
if (firstWindow != NULL) firstWindow->previousWindow = this; (void )theParent;
firstWindow = this; if (theWindow != 0)
} {
myWindow = [(NSWindow* )theWindow retain];
//======================================================================= }
//function : Draw_Window init (theXY, theSize);
//purpose :
//=======================================================================
Draw_Window::Draw_Window (Standard_CString theTitle,
const Standard_Integer& theXLeft, const Standard_Integer& theYTop,
const Standard_Integer& theWidth, const Standard_Integer& theHeight):
myWindow (NULL),
myView (NULL),
myImageBuffer (NULL),
myUseBuffer (Standard_False),
nextWindow (firstWindow),
previousWindow (NULL)
{
if (firstWindow != NULL) firstWindow->previousWindow = this;
firstWindow = this;
Init (theXLeft, theYTop, theWidth, theHeight);
SetTitle (theTitle);
}
Draw_Window::Draw_Window (NSWindow* theWindow, Standard_CString theTitle,
const Standard_Integer& theXLeft, const Standard_Integer& theYTop,
const Standard_Integer& theWidth, const Standard_Integer& theHeight):
myWindow (NULL),
myView (NULL),
myImageBuffer (NULL),
myUseBuffer (Standard_False),
nextWindow (firstWindow),
previousWindow (NULL)
{
myWindow = [theWindow retain];
if (firstWindow != NULL) firstWindow->previousWindow = this;
firstWindow = this;
Init (theXLeft, theYTop, theWidth, theHeight);
SetTitle (theTitle); SetTitle (theTitle);
} }
@ -176,20 +147,6 @@ Draw_Window::Draw_Window (NSWindow* theWindow, Standard_CString
//======================================================================= //=======================================================================
Draw_Window::~Draw_Window() Draw_Window::~Draw_Window()
{ {
if (previousWindow != NULL)
{
previousWindow->nextWindow = nextWindow;
}
else
{
firstWindow = nextWindow;
}
if (nextWindow != NULL)
{
nextWindow->previousWindow = previousWindow;
}
if (myWindow != NULL) if (myWindow != NULL)
{ {
[myWindow release]; [myWindow release];
@ -210,20 +167,20 @@ Draw_Window::~Draw_Window()
} }
//======================================================================= //=======================================================================
//function : Init //function : init
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::Init (const Standard_Integer& theXLeft, const Standard_Integer& theYTop, void Draw_Window::init (const NCollection_Vec2<int>& theXY,
const Standard_Integer& theWidth, const Standard_Integer& theHeight) const NCollection_Vec2<int>& theSize)
{ {
Cocoa_LocalPool aLocalPool; Cocoa_LocalPool aLocalPool;
// converting left-bottom coordinate to left-top coordinate // converting left-bottom coordinate to left-top coordinate
Standard_Integer anYTop = getScreenBottom() - theYTop - theHeight; Standard_Integer anYTop = getScreenBottom() - theXY.y() - theSize.y();
if (myWindow == NULL) if (myWindow == NULL)
{ {
NSRect aRectNs = NSMakeRect (theXLeft, anYTop, theWidth, theHeight); NSRect aRectNs = NSMakeRect (theXY.x(), anYTop, theSize.x(), theSize.y());
NSUInteger aWinStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable; NSUInteger aWinStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable;
myWindow = [[NSWindow alloc] initWithContentRect: aRectNs myWindow = [[NSWindow alloc] initWithContentRect: aRectNs
@ -269,8 +226,8 @@ void Draw_Window::InitBuffer()
//function : SetPosition //function : SetPosition
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::SetPosition (const Standard_Integer& theNewXpos, void Draw_Window::SetPosition (Standard_Integer theNewXpos,
const Standard_Integer& theNewYpos) Standard_Integer theNewYpos)
{ {
NSPoint aNewPosition = NSMakePoint (theNewXpos, theNewYpos); NSPoint aNewPosition = NSMakePoint (theNewXpos, theNewYpos);
[myWindow setFrameTopLeftPoint: aNewPosition]; [myWindow setFrameTopLeftPoint: aNewPosition];
@ -280,8 +237,8 @@ void Draw_Window::SetPosition (const Standard_Integer& theNewXpos,
//function : SetDimension //function : SetDimension
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::SetDimension (const Standard_Integer& theNewWidth, void Draw_Window::SetDimension (Standard_Integer theNewWidth,
const Standard_Integer& theNewHeight) Standard_Integer theNewHeight)
{ {
NSRect aWindowRect = [myWindow frame]; NSRect aWindowRect = [myWindow frame];
Standard_Integer aNewY = aWindowRect.origin.y + aWindowRect.size.height - theNewHeight; Standard_Integer aNewY = aWindowRect.origin.y + aWindowRect.size.height - theNewHeight;
@ -347,7 +304,7 @@ TCollection_AsciiString Draw_Window::GetTitle() const
//function :DefineColor //function :DefineColor
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean Draw_Window::DefineColor (const Standard_Integer&, Standard_CString) Standard_Boolean Draw_Window::DefineColor (const Standard_Integer , Standard_CString )
{ {
return Standard_True; // unused return Standard_True; // unused
} }
@ -452,7 +409,8 @@ void Draw_Window::Flush()
//function : DrawString //function : DrawString
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::DrawString (const Standard_Integer& theXLeft, const Standard_Integer& theYTop, char* theText) void Draw_Window::DrawString (Standard_Integer theXLeft, Standard_Integer theYTop,
const char* theText)
{ {
Cocoa_LocalPool aLocalPool; Cocoa_LocalPool aLocalPool;
@ -477,7 +435,8 @@ void Draw_Window::DrawString (const Standard_Integer& theXLeft, const Standard_I
//function : DrawSegments //function : DrawSegments
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::DrawSegments (Segment *theSegment, const Standard_Integer& theNumberOfElements) void Draw_Window::DrawSegments (const Draw_XSegment* theSegments,
Standard_Integer theNumberOfElements)
{ {
Cocoa_LocalPool aLocalPool; Cocoa_LocalPool aLocalPool;
@ -498,11 +457,12 @@ void Draw_Window::DrawSegments (Segment *theSegment, const Standard_Integer& the
} }
for (; anIter < theNumberOfElements; anIter++) for (; anIter < theNumberOfElements; ++anIter)
{ {
NSPoint aPoint = NSMakePoint (theSegment[anIter].myXStart, myImageBuffer.size.height - theSegment[anIter].myYStart); const Draw_XSegment& aSeg = theSegments[anIter];
NSPoint aPoint = NSMakePoint (aSeg[0].x(), myImageBuffer.size.height - aSeg[0].y());
[aPath moveToPoint: aPoint]; [aPath moveToPoint: aPoint];
aPoint = NSMakePoint (theSegment[anIter].myXEnd, myImageBuffer.size.height - theSegment[anIter].myYEnd); aPoint = NSMakePoint (aSeg[1].x(), myImageBuffer.size.height - aSeg[1].y());
[aPath lineToPoint: aPoint]; [aPath lineToPoint: aPoint];
} }
@ -540,7 +500,7 @@ void Draw_Window::Redraw()
//function : SetColor //function : SetColor
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::SetColor (const Standard_Integer& theColor) void Draw_Window::SetColor (Standard_Integer theColor)
{ {
myCurrentColor = theColor; myCurrentColor = theColor;
} }
@ -549,7 +509,7 @@ void Draw_Window::SetColor (const Standard_Integer& theColor)
//function : SetMode //function : SetMode
//purpose : //purpose :
//======================================================================= //=======================================================================
void Draw_Window::SetMode (const Standard_Integer& theMode) void Draw_Window::SetMode (Standard_Integer theMode)
{ {
// unsupported // unsupported
(void )theMode; (void )theMode;
@ -597,11 +557,11 @@ Standard_Boolean Draw_Window::IsEqualWindows (const Standard_Integer& theWindowN
return ([myWindow windowNumber] == theWindowNumber); return ([myWindow windowNumber] == theWindowNumber);
} }
void GetNextEvent (Standard_Boolean theWait, void Draw_Window::GetNextEvent (Standard_Boolean theWait,
Standard_Integer& theWindowNumber, Standard_Integer& theWindowNumber,
Standard_Integer& theX, Standard_Integer& theX,
Standard_Integer& theY, Standard_Integer& theY,
Standard_Integer& theButton) Standard_Integer& theButton)
{ {
Cocoa_LocalPool aLocalPool; Cocoa_LocalPool aLocalPool;
@ -642,4 +602,5 @@ void GetNextEvent (Standard_Boolean theWait,
theButton = 0; theButton = 0;
} }
} }
#endif // __APPLE__ #endif // __APPLE__

View File

@ -1,5 +1,3 @@
CommandWindow.cxx
CommandWindow.h
Draw.cxx Draw.cxx
Draw.hxx Draw.hxx
Draw_Appli.hxx Draw_Appli.hxx
@ -71,8 +69,10 @@ Draw_Viewer.hxx
Draw_Window.cxx Draw_Window.cxx
Draw_Window.hxx Draw_Window.hxx
Draw_Window_1.mm Draw_Window_1.mm
DrawRessource.h Draw_WNTCommandWindow.cxx
init.cxx Draw_WNTCommandWindow.pxx
init.h Draw_WNTInit.cxx
MainWindow.cxx Draw_WNTInit.pxx
MainWindow.h Draw_WNTMainWindow.cxx
Draw_WNTMainWindow.pxx
Draw_WNTRessource.pxx

View File

@ -310,7 +310,7 @@ void IVtkDraw::ViewerInit (const IVtkWinParams& theParams)
#else #else
Window aWindowId = GetWindow()->XWindow(); Window aWindowId = GetWindow()->XWindow();
aRenWin->SetWindowId ((void*)aWindowId); aRenWin->SetWindowId ((void*)aWindowId);
Display *aDisplayId = GetDisplayConnection()->GetDisplay(); Display* aDisplayId = (Display* )GetDisplayConnection()->GetDisplayAspect();
aRenWin->SetDisplayId (aDisplayId); aRenWin->SetDisplayId (aDisplayId);
// Setup XWindow // Setup XWindow

View File

@ -1 +0,0 @@
InterfaceGraphic.hxx

View File

@ -1,45 +0,0 @@
// Copyright (c) 1991-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef __INTERFACE_GRAPHIC_HXX
#define __INTERFACE_GRAPHIC_HXX
#if defined(_WIN32)
#include <windows.h>
#ifdef DrawText
#undef DrawText
#endif
#elif !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))
#include <stdio.h>
// exclude modern definitions and system-provided glext.h, should be defined before gl.h inclusion
#ifndef GL_GLEXT_LEGACY
#define GL_GLEXT_LEGACY
#endif
#ifndef GLX_GLXEXT_LEGACY
#define GLX_GLXEXT_LEGACY
#endif
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <GL/glx.h>
#endif
#endif // __INTERFACE_GRAPHIC_HXX

View File

@ -57,7 +57,9 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Context,Standard_Transient)
#endif #endif
#elif defined(_WIN32) #elif defined(_WIN32)
// //
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
#include <GL/glx.h> // glXGetProcAddress()
#elif defined(__APPLE__)
#include <dlfcn.h> #include <dlfcn.h>
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
// //
@ -66,7 +68,7 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Context,Standard_Transient)
#include <CoreGraphics/CoreGraphics.h> #include <CoreGraphics/CoreGraphics.h>
#endif #endif
#else #else
#include <GL/glx.h> // glXGetProcAddress() //
#endif #endif
#ifdef __EMSCRIPTEN__ #ifdef __EMSCRIPTEN__
@ -192,6 +194,9 @@ OpenGl_Context::OpenGl_Context (const Handle(OpenGl_Caps)& theCaps)
nvxMem (Standard_False), nvxMem (Standard_False),
oesSampleVariables (Standard_False), oesSampleVariables (Standard_False),
oesStdDerivatives (Standard_False), oesStdDerivatives (Standard_False),
myWindow (0),
myDisplay (0),
myGContext(0),
mySharedResources (new OpenGl_ResourcesMap()), mySharedResources (new OpenGl_ResourcesMap()),
myDelayed (new OpenGl_DelayReleaseMap()), myDelayed (new OpenGl_DelayReleaseMap()),
myUnusedResources (new OpenGl_ResourcesStack()), myUnusedResources (new OpenGl_ResourcesStack()),
@ -275,11 +280,7 @@ OpenGl_Context::OpenGl_Context (const Handle(OpenGl_Caps)& theCaps)
myDisplay = (Aspect_Display )EGL_NO_DISPLAY; myDisplay = (Aspect_Display )EGL_NO_DISPLAY;
myWindow = (Aspect_Drawable )EGL_NO_SURFACE; myWindow = (Aspect_Drawable )EGL_NO_SURFACE;
myGContext = (Aspect_RenderingContext )EGL_NO_CONTEXT; myGContext = (Aspect_RenderingContext )EGL_NO_CONTEXT;
#elif defined(_WIN32) #elif defined(__APPLE__) && !defined(HAVE_XLIB)
myWindow = NULL;
myWindowDC = NULL;
myGContext = NULL;
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
// Vendors can not extend functionality on this system // Vendors can not extend functionality on this system
// and developers are limited to OpenGL support provided by Mac OS X SDK. // and developers are limited to OpenGL support provided by Mac OS X SDK.
// We retrieve function pointers from system library // We retrieve function pointers from system library
@ -290,16 +291,10 @@ OpenGl_Context::OpenGl_Context (const Handle(OpenGl_Caps)& theCaps)
// because function pointers may be available but not functionality itself // because function pointers may be available but not functionality itself
// (depends on renderer). // (depends on renderer).
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
myGContext = NULL;
myGlLibHandle = dlopen ("/System/Library/Frameworks/OpenGLES.framework/OpenGLES", RTLD_LAZY); myGlLibHandle = dlopen ("/System/Library/Frameworks/OpenGLES.framework/OpenGLES", RTLD_LAZY);
#else #else
myGContext = NULL;
myGlLibHandle = dlopen ("/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL", RTLD_LAZY); myGlLibHandle = dlopen ("/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL", RTLD_LAZY);
#endif #endif
#else
myDisplay = NULL;
myWindow = 0;
myGContext = 0;
#endif #endif
memset (myFuncs.operator->(), 0, sizeof(OpenGl_GlFunctions)); memset (myFuncs.operator->(), 0, sizeof(OpenGl_GlFunctions));
@ -638,7 +633,7 @@ void OpenGl_Context::Share (const Handle(OpenGl_Context)& theShareCtx)
} }
} }
#if !defined(__APPLE__) || defined(MACOSX_USE_GLX) #if !defined(__APPLE__) || defined(HAVE_XLIB)
// ======================================================================= // =======================================================================
// function : IsCurrent // function : IsCurrent
@ -657,13 +652,13 @@ Standard_Boolean OpenGl_Context::IsCurrent() const
&& ((EGLContext )myGContext == eglGetCurrentContext()) && ((EGLContext )myGContext == eglGetCurrentContext())
&& ((EGLSurface )myWindow == eglGetCurrentSurface (EGL_DRAW))); && ((EGLSurface )myWindow == eglGetCurrentSurface (EGL_DRAW)));
#elif defined(_WIN32) #elif defined(_WIN32)
if (myWindowDC == NULL || myGContext == NULL) if (myDisplay == NULL || myGContext == NULL)
{ {
return Standard_False; return Standard_False;
} }
return (( (HDC )myWindowDC == wglGetCurrentDC()) return (( (HDC )myDisplay == wglGetCurrentDC())
&& ((HGLRC )myGContext == wglGetCurrentContext())); && ((HGLRC )myGContext == wglGetCurrentContext()));
#else #elif defined(HAVE_XLIB)
if (myDisplay == NULL || myWindow == 0 || myGContext == 0) if (myDisplay == NULL || myWindow == 0 || myGContext == 0)
{ {
return Standard_False; return Standard_False;
@ -672,6 +667,8 @@ Standard_Boolean OpenGl_Context::IsCurrent() const
return ( ((Display* )myDisplay == glXGetCurrentDisplay()) return ( ((Display* )myDisplay == glXGetCurrentDisplay())
&& ((GLXContext )myGContext == glXGetCurrentContext()) && ((GLXContext )myGContext == glXGetCurrentContext())
&& ((GLXDrawable )myWindow == glXGetCurrentDrawable())); && ((GLXDrawable )myWindow == glXGetCurrentDrawable()));
#else
return Standard_False;
#endif #endif
} }
@ -698,7 +695,7 @@ Standard_Boolean OpenGl_Context::MakeCurrent()
return Standard_False; return Standard_False;
} }
#elif defined(_WIN32) #elif defined(_WIN32)
if (myWindowDC == NULL || myGContext == NULL) if (myDisplay == NULL || myGContext == NULL)
{ {
Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called before!"); Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called before!");
return Standard_False; return Standard_False;
@ -711,7 +708,7 @@ Standard_Boolean OpenGl_Context::MakeCurrent()
myShaderManager->SetContext (this); myShaderManager->SetContext (this);
return Standard_True; return Standard_True;
} }
else if (wglMakeCurrent ((HDC )myWindowDC, (HGLRC )myGContext) != TRUE) else if (wglMakeCurrent ((HDC )myDisplay, (HGLRC )myGContext) != TRUE)
{ {
// notice that glGetError() couldn't be used here! // notice that glGetError() couldn't be used here!
wchar_t* aMsgBuff = NULL; wchar_t* aMsgBuff = NULL;
@ -728,7 +725,7 @@ Standard_Boolean OpenGl_Context::MakeCurrent()
myIsInitialized = Standard_False; myIsInitialized = Standard_False;
return Standard_False; return Standard_False;
} }
#else #elif defined(HAVE_XLIB)
if (myDisplay == NULL || myWindow == 0 || myGContext == 0) if (myDisplay == NULL || myWindow == 0 || myGContext == 0)
{ {
Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called before!"); Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called before!");
@ -743,6 +740,12 @@ Standard_Boolean OpenGl_Context::MakeCurrent()
myIsInitialized = Standard_False; myIsInitialized = Standard_False;
return Standard_False; return Standard_False;
} }
#else
// not implemented
if (!myIsInitialized)
{
throw Standard_ProgramError ("OpenGl_Context::Init() should be called before!");
}
#endif #endif
myShaderManager->SetContext (this); myShaderManager->SetContext (this);
return Standard_True; return Standard_True;
@ -760,16 +763,18 @@ void OpenGl_Context::SwapBuffers()
eglSwapBuffers ((EGLDisplay )myDisplay, (EGLSurface )myWindow); eglSwapBuffers ((EGLDisplay )myDisplay, (EGLSurface )myWindow);
} }
#elif defined(_WIN32) #elif defined(_WIN32)
if ((HDC )myWindowDC != NULL) if ((HDC )myDisplay != NULL)
{ {
::SwapBuffers ((HDC )myWindowDC); ::SwapBuffers ((HDC )myDisplay);
glFlush(); glFlush();
} }
#else #elif defined(HAVE_XLIB)
if ((Display* )myDisplay != NULL) if ((Display* )myDisplay != NULL)
{ {
glXSwapBuffers ((Display* )myDisplay, (GLXDrawable )myWindow); glXSwapBuffers ((Display* )myDisplay, (GLXDrawable )myWindow);
} }
#else
//
#endif #endif
} }
@ -799,7 +804,7 @@ Standard_Boolean OpenGl_Context::SetSwapInterval (const Standard_Integer theInte
{ {
return Standard_True; return Standard_True;
} }
#else #elif defined(HAVE_XLIB)
if (theInterval == -1 if (theInterval == -1
&& myFuncs->glXSwapIntervalEXT != NULL) && myFuncs->glXSwapIntervalEXT != NULL)
{ {
@ -813,6 +818,8 @@ Standard_Boolean OpenGl_Context::SetSwapInterval (const Standard_Integer theInte
myFuncs->glXSwapIntervalSGI (theInterval); myFuncs->glXSwapIntervalSGI (theInterval);
return Standard_True; return Standard_True;
} }
#else
//
#endif #endif
return Standard_False; return Standard_False;
} }
@ -827,10 +834,13 @@ void* OpenGl_Context::findProc (const char* theFuncName)
return (void* )eglGetProcAddress (theFuncName); return (void* )eglGetProcAddress (theFuncName);
#elif defined(_WIN32) #elif defined(_WIN32)
return (void* )wglGetProcAddress (theFuncName); return (void* )wglGetProcAddress (theFuncName);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
return (void* )glXGetProcAddress ((const GLubyte* )theFuncName);
#elif defined(__APPLE__)
return (myGlLibHandle != NULL) ? dlsym (myGlLibHandle, theFuncName) : NULL; return (myGlLibHandle != NULL) ? dlsym (myGlLibHandle, theFuncName) : NULL;
#else #else
return (void* )glXGetProcAddress ((const GLubyte* )theFuncName); (void )theFuncName;
return NULL;
#endif #endif
} }
@ -914,7 +924,7 @@ Standard_Boolean OpenGl_Context::CheckExtension (const char* theExtString,
return Standard_False; return Standard_False;
} }
#if !defined(__APPLE__) || defined(MACOSX_USE_GLX) #if !defined(__APPLE__) || defined(HAVE_XLIB)
// ======================================================================= // =======================================================================
// function : Init // function : Init
@ -932,12 +942,14 @@ Standard_Boolean OpenGl_Context::Init (const Standard_Boolean theIsCoreProfile)
myGContext = (Aspect_RenderingContext )eglGetCurrentContext(); myGContext = (Aspect_RenderingContext )eglGetCurrentContext();
myWindow = (Aspect_Drawable )eglGetCurrentSurface(EGL_DRAW); myWindow = (Aspect_Drawable )eglGetCurrentSurface(EGL_DRAW);
#elif defined(_WIN32) #elif defined(_WIN32)
myWindowDC = (Aspect_Handle )wglGetCurrentDC(); myDisplay = (Aspect_Handle )wglGetCurrentDC();
myGContext = (Aspect_RenderingContext )wglGetCurrentContext(); myGContext = (Aspect_RenderingContext )wglGetCurrentContext();
#else #elif defined(HAVE_XLIB)
myDisplay = (Aspect_Display )glXGetCurrentDisplay(); myDisplay = (Aspect_Display )glXGetCurrentDisplay();
myGContext = (Aspect_RenderingContext )glXGetCurrentContext(); myGContext = (Aspect_RenderingContext )glXGetCurrentContext();
myWindow = (Aspect_Drawable )glXGetCurrentDrawable(); myWindow = (Aspect_Drawable )glXGetCurrentDrawable();
#else
//
#endif #endif
if (myGContext == NULL) if (myGContext == NULL)
{ {
@ -955,49 +967,15 @@ Standard_Boolean OpenGl_Context::Init (const Standard_Boolean theIsCoreProfile)
// function : Init // function : Init
// purpose : // purpose :
// ======================================================================= // =======================================================================
#if defined(HAVE_EGL) Standard_Boolean OpenGl_Context::Init (const Aspect_Drawable theSurface,
Standard_Boolean OpenGl_Context::Init (const Aspect_Drawable theEglSurface,
const Aspect_Display theEglDisplay,
const Aspect_RenderingContext theEglContext,
const Standard_Boolean theIsCoreProfile)
#elif defined(_WIN32)
Standard_Boolean OpenGl_Context::Init (const Aspect_Handle theWindow,
const Aspect_Handle theWindowDC,
const Aspect_RenderingContext theGContext,
const Standard_Boolean theIsCoreProfile)
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
Standard_Boolean OpenGl_Context::Init (EAGLContext* theGContext,
const Standard_Boolean theIsCoreProfile)
#else
Standard_Boolean OpenGl_Context::Init (NSOpenGLContext* theGContext,
const Standard_Boolean theIsCoreProfile)
#endif
#else
Standard_Boolean OpenGl_Context::Init (const Aspect_Drawable theWindow,
const Aspect_Display theDisplay, const Aspect_Display theDisplay,
const Aspect_RenderingContext theGContext, const Aspect_RenderingContext theContext,
const Standard_Boolean theIsCoreProfile) const Standard_Boolean theIsCoreProfile)
#endif
{ {
Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called only once!"); Standard_ProgramError_Raise_if (myIsInitialized, "OpenGl_Context::Init() should be called only once!");
#if defined(HAVE_EGL) myWindow = theSurface;
myWindow = theEglSurface;
myGContext = theEglContext;
myDisplay = theEglDisplay;
#elif defined(_WIN32)
myWindow = theWindow;
myGContext = theGContext;
myWindowDC = theWindowDC;
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
myGContext = theGContext;
#else
myWindow = theWindow;
myGContext = theGContext;
myDisplay = theDisplay; myDisplay = theDisplay;
#endif myGContext = theContext;
if (myGContext == NULL || !MakeCurrent()) if (myGContext == NULL || !MakeCurrent())
{ {
return Standard_False; return Standard_False;
@ -1867,7 +1845,7 @@ void OpenGl_Context::MemoryInfo (TColStd_IndexedDataMapOfStringString& theDict)
{ {
#if defined(GL_ES_VERSION_2_0) #if defined(GL_ES_VERSION_2_0)
(void )theDict; (void )theDict;
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(__APPLE__) && !defined(HAVE_XLIB)
GLint aGlRendId = 0; GLint aGlRendId = 0;
CGLGetParameter (CGLGetCurrentContext(), kCGLCPCurrentRendererID, &aGlRendId); CGLGetParameter (CGLGetCurrentContext(), kCGLCPCurrentRendererID, &aGlRendId);
@ -2001,12 +1979,10 @@ void OpenGl_Context::DiagnosticInformation (TColStd_IndexedDataMapOfStringString
if ((theFlags & Graphic3d_DiagnosticInfo_Extensions) != 0 if ((theFlags & Graphic3d_DiagnosticInfo_Extensions) != 0
&& myFuncs->wglGetExtensionsStringARB != NULL) && myFuncs->wglGetExtensionsStringARB != NULL)
{ {
const char* aWglExts = myFuncs->wglGetExtensionsStringARB ((HDC )myWindowDC); const char* aWglExts = myFuncs->wglGetExtensionsStringARB ((HDC )myDisplay);
addInfo (theDict, "WGLExtensions", aWglExts); addInfo (theDict, "WGLExtensions", aWglExts);
} }
#elif defined(__APPLE__) #elif defined(HAVE_XLIB)
//
#else
Display* aDisplay = (Display*)myDisplay; Display* aDisplay = (Display*)myDisplay;
const int aScreen = DefaultScreen(aDisplay); const int aScreen = DefaultScreen(aDisplay);
addInfo (theDict, "GLXDirectRendering", ::glXIsDirect (aDisplay, (GLXContext )myGContext) ? "Yes" : "No"); addInfo (theDict, "GLXDirectRendering", ::glXIsDirect (aDisplay, (GLXContext )myGContext) ? "Yes" : "No");
@ -2024,6 +2000,8 @@ void OpenGl_Context::DiagnosticInformation (TColStd_IndexedDataMapOfStringString
{ {
addInfo (theDict, "GLXClientExtensions", ::glXGetClientString (aDisplay, GLX_EXTENSIONS)); addInfo (theDict, "GLXClientExtensions", ::glXGetClientString (aDisplay, GLX_EXTENSIONS));
} }
#else
//
#endif #endif
} }

View File

@ -216,53 +216,75 @@ public:
return myIsInitialized; return myIsInitialized;
} }
#if defined(HAVE_EGL)
//! Initialize class from specified surface and rendering context. Method should be called only once. //! Initialize class from specified surface and rendering context. Method should be called only once.
//! The meaning of parameters is platform-specific.
//!
//! EGL:
//! @code
//! Handle(Aspect_Window) theAspWin;
//! EGLSurface theEglSurf = eglCreateWindowSurface (theEglDisp, anEglConfig, (EGLNativeWindowType )theAspWin->NativeHandle(), NULL);
//! EGLDisplay theEglDisp = eglGetDisplay (EGL_DEFAULT_DISPLAY);
//! EGLContext theEglCtx = eglCreateContext ((EGLDisplay )theEglDisp, anEglConfig, EGL_NO_CONTEXT, anEglCtxAttribs);
//! Handle(OpenGl_Context) aGlCtx = new OpenGl_Context();
//! aGlCtx->Init ((Aspect_Drawable )theEglSurf, (Aspect_Display )theEglDisp, (Aspect_RenderingContext )theEglCtx);
//! @endcode
//!
//! Windows (Win32):
//! @code
//! Handle(WNT_Window) theAspWin;
//! HWND theWindow = (HWND )theAspWin->NativeHandle();
//! HDC theDevCtx = GetDC(theWindow);
//! HGLRC theGContext = wglCreateContext (theDevCtx);
//! Handle(OpenGl_Context) aGlCtx = new OpenGl_Context();
//! aGlCtx->Init ((Aspect_Drawable )theWindow, (Aspect_Display )theDevCtx, (Aspect_RenderingContext )theGContext);
//! @endcode
//!
//! Linux (Xlib):
//! @code
//! Handle(Xw_Window) theAspWin;
//! Window theXWindow = (Window )theAspWin->NativeHandle();
//! Display* theXDisp = (Display* )theAspWin->DisplayConnection()->GetDisplayAspect();
//! GLXContext theGlxCtx = glXCreateContext (theXDisp, aVis.get(), NULL, GL_TRUE);
//! Handle(OpenGl_Context) aGlCtx = new OpenGl_Context();
//! aGlCtx->Init ((Aspect_Drawable )theXWindow, (Aspect_Display )theXDisp, (Aspect_RenderingContext )theGlxCtx);
//! @endcode
//!
//! @param theSurface [in] surface / window (EGLSurface | HWND | GLXDrawable/Window)
//! @param theDisplay [in] display or device context (EGLDisplay | HDC | Display*)
//! @param theContext [in] rendering context (EGLContext | HGLRC | GLXContext | EAGLContext* | NSOpenGLContext*)
//! @param theIsCoreProfile [in] flag indicating that passed GL rendering context has been created with Core Profile
//! @return false if OpenGL context can not be bound to specified surface //! @return false if OpenGL context can not be bound to specified surface
Standard_EXPORT Standard_Boolean Init (const Aspect_Drawable theEglSurface, Standard_EXPORT Standard_Boolean Init (const Aspect_Drawable theSurface,
const Aspect_Display theEglDisplay, const Aspect_Display theDisplay,
const Aspect_RenderingContext theEglContext, const Aspect_RenderingContext theContext,
const Standard_Boolean theIsCoreProfile = Standard_False);
#elif defined(_WIN32)
//! Initialize class from specified window and rendering context. Method should be called only once.
//! @return false if OpenGL context can not be bound to specified window
Standard_EXPORT Standard_Boolean Init (const Aspect_Handle theWindow,
const Aspect_Handle theWindowDC,
const Aspect_RenderingContext theGContext,
const Standard_Boolean theIsCoreProfile = Standard_False); const Standard_Boolean theIsCoreProfile = Standard_False);
//! @return the window handle (HWND) currently bound to this OpenGL context //! Return window handle currently bound to this OpenGL context (EGLSurface | HWND | GLXDrawable).
inline Aspect_Handle Window() const Aspect_Drawable Window() const { return myWindow; }
{
return myWindow;
}
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) //! Return display / window device context (EGLDisplay | HDC | Display*).
Aspect_Display GetDisplay() const { return myDisplay; }
//! Return rendering context (EGLContext | HGLRC | GLXContext | EAGLContext* | NSOpenGLContext*).
Aspect_RenderingContext RenderingContext() const { return myGContext; }
#if defined(__APPLE__) && !defined(HAVE_XLIB)
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
//! Initialize class from specified OpenGL ES context (EAGLContext). Method should be called only once. //! Initialize class from specified OpenGL ES context (EAGLContext). Method should be called only once.
Standard_EXPORT Standard_Boolean Init (EAGLContext* theGContext, Standard_Boolean Init (EAGLContext* theGContext,
const Standard_Boolean theIsCoreProfile = Standard_False); const Standard_Boolean theIsCoreProfile = Standard_False)
#else
//! Initialize class from specified OpenGL context (NSOpenGLContext). Method should be called only once.
Standard_EXPORT Standard_Boolean Init (NSOpenGLContext* theGContext,
const Standard_Boolean theIsCoreProfile = Standard_False);
#endif
#else
//! Initialize class from specified window and rendering context. Method should be called only once.
//! @return false if OpenGL context can not be bound to specified window
Standard_EXPORT Standard_Boolean Init (const Aspect_Drawable theWindow,
const Aspect_Display theDisplay,
const Aspect_RenderingContext theGContext,
const Standard_Boolean theIsCoreProfile = Standard_False);
//! @return the window handle (GLXDrawable) currently bound to this OpenGL context
inline Aspect_Drawable Window() const
{ {
return myWindow; return Init ((Aspect_Drawable )0, (Aspect_Display )0, (Aspect_RenderingContext )theGContext, theIsCoreProfile);
} }
#else
//! Initialize class from specified OpenGL context (NSOpenGLContext). Method should be called only once.
Standard_Boolean Init (NSOpenGLContext* theGContext,
const Standard_Boolean theIsCoreProfile = Standard_False)
{
return Init ((Aspect_Drawable )0, (Aspect_Display )0, (Aspect_RenderingContext )theGContext, theIsCoreProfile);
}
#endif
#endif #endif
//! Read OpenGL version information from active context. //! Read OpenGL version information from active context.
@ -1070,25 +1092,9 @@ public: //! @name public properties tracking current state
private: // system-dependent fields private: // system-dependent fields
#if defined(HAVE_EGL) Aspect_Drawable myWindow; //!< surface EGLSurface | HWND | GLXDrawable
Aspect_Drawable myWindow; //!< EGL surface : EGLSurface Aspect_Display myDisplay; //!< display EGLDisplay | HDC | Display*
Aspect_Display myDisplay; //!< EGL connection to the Display : EGLDisplay Aspect_RenderingContext myGContext; //!< rendering context EGLContext | HGLRC | GLXContext | EAGLContext* | NSOpenGLContext*
Aspect_RenderingContext myGContext; //!< EGL rendering context : EGLContext
#elif defined(_WIN32)
Aspect_Handle myWindow; //!< window handle (owner of GL context) : HWND
Aspect_Handle myWindowDC; //!< Device Descriptor handle : HDC
Aspect_RenderingContext myGContext; //!< Rendering Context handle : HGLRC
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
EAGLContext* myGContext; //!< Rendering Context handle
#else
NSOpenGLContext* myGContext; //!< Rendering Context handle
#endif
#else
Aspect_Drawable myWindow; //!< window handle (owner of GL context) : GLXDrawable
Aspect_Display myDisplay; //!< connection to the X-server : Display*
Aspect_RenderingContext myGContext; //!< X-GLX rendering context : GLXContext
#endif
private: // context info private: // context info

View File

@ -13,7 +13,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.
#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) #if defined(__APPLE__) && !defined(HAVE_XLIB)
#ifndef GL_GLEXT_LEGACY #ifndef GL_GLEXT_LEGACY
#define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8 #define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8

View File

@ -26,6 +26,10 @@
#include <OpenGl_ArbTexBindless.hxx> #include <OpenGl_ArbTexBindless.hxx>
#include <OpenGl_GlCore46.hxx> #include <OpenGl_GlCore46.hxx>
#if !defined(HAVE_EGL) && defined(HAVE_XLIB)
#include <GL/glx.h>
#endif
// ======================================================================= // =======================================================================
// function : init // function : init
// purpose : // purpose :
@ -572,9 +576,7 @@ void OpenGl_GlFunctions::load (OpenGl_Context& theCtx,
FindProcShort (wglGetContextGPUIDAMD); FindProcShort (wglGetContextGPUIDAMD);
} }
} }
#elif defined(__APPLE__) #elif defined(HAVE_XLIB)
//
#else
const char* aGlxExts = ::glXQueryExtensionsString ((Display* )theCtx.myDisplay, DefaultScreen ((Display* )theCtx.myDisplay)); const char* aGlxExts = ::glXQueryExtensionsString ((Display* )theCtx.myDisplay, DefaultScreen ((Display* )theCtx.myDisplay));
if (checkExtensionShort (aGlxExts, "GLX_EXT_swap_control")) if (checkExtensionShort (aGlxExts, "GLX_EXT_swap_control"))
{ {

View File

@ -65,11 +65,14 @@
#include <GL/gl.h> #include <GL/gl.h>
#endif #endif
#if !defined(HAVE_EGL) && (defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(HAVE_GLES2) || defined(OCCT_UWP)) #if !defined(HAVE_EGL)
#if defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(HAVE_GLES2) || defined(OCCT_UWP)
#define HAVE_EGL
#elif !defined(_WIN32) && !defined(__APPLE__) && !defined(HAVE_XLIB)
#define HAVE_EGL #define HAVE_EGL
#endif #endif
#endif
#include <InterfaceGraphic.hxx> struct Aspect_XDisplay;
#if defined(GL_ES_VERSION_2_0) #if defined(GL_ES_VERSION_2_0)
#include <OpenGl_GLESExtensions.hxx> #include <OpenGl_GLESExtensions.hxx>
@ -1937,11 +1940,11 @@ public: //! @name glX extensions
#define GLX_RENDERER_ID_MESA 0x818E #define GLX_RENDERER_ID_MESA 0x818E
#endif // GLX_RENDERER_VENDOR_ID_MESA #endif // GLX_RENDERER_VENDOR_ID_MESA
typedef Bool (*glXQueryRendererIntegerMESA_t)(Display* theDisplay, int theScreen, typedef int (*glXQueryRendererIntegerMESA_t)(Aspect_XDisplay* theDisplay, int theScreen,
int theRenderer, int theAttribute, int theRenderer, int theAttribute,
unsigned int* theValue); unsigned int* theValue);
typedef Bool (*glXQueryCurrentRendererIntegerMESA_t)(int theAttribute, unsigned int* theValue); typedef int (*glXQueryCurrentRendererIntegerMESA_t)(int theAttribute, unsigned int* theValue);
typedef const char* (*glXQueryRendererStringMESA_t)(Display* theDisplay, int theScreen, typedef const char* (*glXQueryRendererStringMESA_t)(Aspect_XDisplay* theDisplay, int theScreen,
int theRenderer, int theAttribute); int theRenderer, int theAttribute);
typedef const char* (*glXQueryCurrentRendererStringMESA_t)(int theAttribute); typedef const char* (*glXQueryCurrentRendererStringMESA_t)(int theAttribute);

View File

@ -38,13 +38,15 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver)
#if defined(_WIN32) #if defined(_WIN32)
#include <WNT_Window.hxx> #include <WNT_Window.hxx>
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
#include <Xw_Window.hxx>
#elif defined(__APPLE__)
#include <Cocoa_Window.hxx> #include <Cocoa_Window.hxx>
#else #else
#include <Xw_Window.hxx> #include <Aspect_NeutralWindow.hxx>
#endif #endif
#if !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(HAVE_XLIB))
#include <X11/Xlib.h> // XOpenDisplay() #include <X11/Xlib.h> // XOpenDisplay()
#include <GL/glx.h> #include <GL/glx.h>
#endif #endif
@ -110,7 +112,7 @@ namespace
} }
return aCfg; return aCfg;
} }
#elif !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #elif defined(HAVE_XLIB)
//! Search for RGBA double-buffered visual with stencil buffer. //! Search for RGBA double-buffered visual with stencil buffer.
static int TheDoubleBuffVisual[] = static int TheDoubleBuffVisual[] =
{ {
@ -157,14 +159,14 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio
myEglContext = (Aspect_RenderingContext )EGL_NO_CONTEXT; myEglContext = (Aspect_RenderingContext )EGL_NO_CONTEXT;
#endif #endif
#if !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
if (myDisplayConnection.IsNull()) if (myDisplayConnection.IsNull())
{ {
//throw Aspect_GraphicDeviceDefinitionError("OpenGl_GraphicDriver: cannot connect to X server!"); //throw Aspect_GraphicDeviceDefinitionError("OpenGl_GraphicDriver: cannot connect to X server!");
return; return;
} }
Display* aDisplay = myDisplayConnection->GetDisplay(); Display* aDisplay = (Display* )myDisplayConnection->GetDisplayAspect();
Bool toSync = ::getenv ("CSF_GraphicSync") != NULL Bool toSync = ::getenv ("CSF_GraphicSync") != NULL
|| ::getenv ("CALL_SYNCHRO_X") != NULL; || ::getenv ("CALL_SYNCHRO_X") != NULL;
XSynchronize (aDisplay, toSync); XSynchronize (aDisplay, toSync);
@ -284,12 +286,12 @@ Standard_Boolean OpenGl_GraphicDriver::InitContext()
ReleaseContext(); ReleaseContext();
#if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) #if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__)
#if !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
if (myDisplayConnection.IsNull()) if (myDisplayConnection.IsNull())
{ {
return Standard_False; return Standard_False;
} }
Display* aDisplay = myDisplayConnection->GetDisplay(); Display* aDisplay = (Display* )myDisplayConnection->GetDisplayAspect();
myEglDisplay = (Aspect_Display )eglGetDisplay (aDisplay); myEglDisplay = (Aspect_Display )eglGetDisplay (aDisplay);
#else #else
myEglDisplay = (Aspect_Display )eglGetDisplay (EGL_DEFAULT_DISPLAY); myEglDisplay = (Aspect_Display )eglGetDisplay (EGL_DEFAULT_DISPLAY);
@ -367,7 +369,7 @@ Standard_Boolean OpenGl_GraphicDriver::InitEglContext (Aspect_Display t
{ {
ReleaseContext(); ReleaseContext();
#if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) #if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__)
#if !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
if (myDisplayConnection.IsNull()) if (myDisplayConnection.IsNull())
{ {
return Standard_False; return Standard_False;
@ -412,8 +414,8 @@ void OpenGl_GraphicDriver::chooseVisualInfo()
return; return;
} }
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__) #if defined(HAVE_XLIB)
Display* aDisp = myDisplayConnection->GetDisplay(); Display* aDisp = (Display* )myDisplayConnection->GetDisplayAspect();
XVisualInfo* aVisInfo = NULL; XVisualInfo* aVisInfo = NULL;
Aspect_FBConfig anFBConfig = NULL; Aspect_FBConfig anFBConfig = NULL;
@ -472,7 +474,7 @@ void OpenGl_GraphicDriver::chooseVisualInfo()
#endif #endif
if (aVisInfo != NULL) if (aVisInfo != NULL)
{ {
myDisplayConnection->SetDefaultVisualInfo (aVisInfo, anFBConfig); myDisplayConnection->SetDefaultVisualInfo ((Aspect_XVisualInfo* )aVisInfo, anFBConfig);
} }
else else
{ {
@ -844,65 +846,30 @@ Handle(OpenGl_Window) OpenGl_GraphicDriver::CreateRenderWindow (const Handle(Asp
//function : ViewExists //function : ViewExists
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean OpenGl_GraphicDriver::ViewExists (const Handle(Aspect_Window)& AWindow, Handle(Graphic3d_CView)& theView) Standard_Boolean OpenGl_GraphicDriver::ViewExists (const Handle(Aspect_Window)& theWindow,
Handle(Graphic3d_CView)& theView)
{ {
Standard_Boolean isExist = Standard_False; // Parse the list of views to find a view with the specified window
const Aspect_Drawable aNativeHandle = theWindow->NativeHandle();
// Parse the list of views to find for (NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView); aViewIt.More(); aViewIt.Next())
// a view with the specified window
#if defined(_WIN32) && !defined(OCCT_UWP)
const Handle(WNT_Window) THEWindow = Handle(WNT_Window)::DownCast (AWindow);
Aspect_Handle TheSpecifiedWindowId = THEWindow->HWindow ();
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX)
const Handle(Cocoa_Window) THEWindow = Handle(Cocoa_Window)::DownCast (AWindow);
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
UIView* TheSpecifiedWindowId = THEWindow->HView();
#else
NSView* TheSpecifiedWindowId = THEWindow->HView();
#endif
#elif defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(OCCT_UWP)
(void )AWindow;
int TheSpecifiedWindowId = -1;
#else
const Handle(Xw_Window) THEWindow = Handle(Xw_Window)::DownCast (AWindow);
int TheSpecifiedWindowId = int (THEWindow->XWindow ());
#endif
NCollection_Map<Handle(OpenGl_View)>::Iterator aViewIt (myMapOfView);
for(; aViewIt.More(); aViewIt.Next())
{ {
const Handle(OpenGl_View)& aView = aViewIt.Value(); const Handle(OpenGl_View)& aView = aViewIt.Value();
if (aView->IsDefined() && aView->IsActive()) if (!aView->IsDefined()
|| !aView->IsActive())
{ {
const Handle(Aspect_Window) AspectWindow = aView->Window(); continue;
}
#if defined(_WIN32) && !defined(OCCT_UWP) const Handle(Aspect_Window) anAspectWindow = aView->Window();
const Handle(WNT_Window) theWindow = Handle(WNT_Window)::DownCast (AspectWindow); const Aspect_Drawable aViewNativeHandle = anAspectWindow->NativeHandle();
Aspect_Handle TheWindowIdOfView = theWindow->HWindow (); if (aViewNativeHandle == aNativeHandle)
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) {
const Handle(Cocoa_Window) theWindow = Handle(Cocoa_Window)::DownCast (AspectWindow); theView = aView;
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE return true;
UIView* TheWindowIdOfView = theWindow->HView();
#else
NSView* TheWindowIdOfView = theWindow->HView();
#endif
#elif defined(__ANDROID__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(OCCT_UWP)
int TheWindowIdOfView = 0;
#else
const Handle(Xw_Window) theWindow = Handle(Xw_Window)::DownCast (AspectWindow);
int TheWindowIdOfView = int (theWindow->XWindow ());
#endif // WNT
// Comparaison on window IDs
if (TheWindowIdOfView == TheSpecifiedWindowId)
{
isExist = Standard_True;
theView = aView;
}
} }
} }
return isExist; return false;
} }
//======================================================================= //=======================================================================

View File

@ -34,10 +34,11 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Window,Standard_Transient)
#if defined(HAVE_EGL) #if defined(HAVE_EGL)
#include <EGL/egl.h> #include <EGL/egl.h>
#elif defined(HAVE_XLIB)
#include <GL/glx.h>
#endif #endif
#if !defined(__APPLE__) || defined(HAVE_XLIB)
#if !defined(__APPLE__) || defined(MACOSX_USE_GLX)
namespace namespace
{ {
@ -123,7 +124,7 @@ namespace
{ {
return DefWindowProcW (theWin, theMsg, theParamW, theParamL); return DefWindowProcW (theWin, theMsg, theParamW, theParamL);
} }
#else #elif defined(HAVE_XLIB)
// GLX_ARB_create_context // GLX_ARB_create_context
#ifndef GLX_CONTEXT_MAJOR_VERSION_ARB #ifndef GLX_CONTEXT_MAJOR_VERSION_ARB
@ -206,16 +207,40 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
anEglConfig, anEglConfig,
(EGLNativeWindowType )myPlatformWindow->NativeHandle(), (EGLNativeWindowType )myPlatformWindow->NativeHandle(),
NULL); NULL);
if (anEglSurf == EGL_NO_SURFACE) if (anEglSurf == EGL_NO_SURFACE
&& myPlatformWindow->NativeHandle() != 0)
{ {
throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is unable to create surface for window!"); throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is unable to create surface for window!");
return; }
else if (anEglSurf == EGL_NO_SURFACE)
{
// window-less EGL context (off-screen)
//throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is unable to retrieve current surface!");
if (anEglConfig != NULL)
{
#if !defined(__EMSCRIPTEN__) // eglCreatePbufferSurface() is not implemented by Emscripten EGL
const int aSurfAttribs[] =
{
EGL_WIDTH, myWidth,
EGL_HEIGHT, myHeight,
// EGL_KHR_gl_colorspace extension specifies if OpenGL should write into window buffer as into sRGB or RGB framebuffer
//EGL_GL_COLORSPACE_KHR, !theCaps->sRGBDisable ? EGL_GL_COLORSPACE_SRGB_KHR : EGL_GL_COLORSPACE_LINEAR_KHR,
EGL_NONE
};
anEglSurf = eglCreatePbufferSurface (anEglDisplay, anEglConfig, aSurfAttribs);
if (anEglSurf == EGL_NO_SURFACE)
{
throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is unable to create off-screen surface!");
}
#endif
}
myGlContext->PushMessage (GL_DEBUG_SOURCE_APPLICATION, GL_DEBUG_TYPE_PORTABILITY, 0, GL_DEBUG_SEVERITY_LOW,
"OpenGl_Window::CreateWindow: WARNING, a Window is created without a EGL Surface!");
} }
} }
else if (theGContext != anEglContext) else if (theGContext != anEglContext)
{ {
throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is used in unsupported combination!"); throw Aspect_GraphicDeviceDefinitionError("OpenGl_Window, EGL is used in unsupported combination!");
return;
} }
else else
{ {
@ -502,9 +527,9 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
} }
myGlContext->Init ((Aspect_Handle )aWindow, (Aspect_Handle )aWindowDC, (Aspect_RenderingContext )aGContext, isCoreProfile); myGlContext->Init ((Aspect_Handle )aWindow, (Aspect_Handle )aWindowDC, (Aspect_RenderingContext )aGContext, isCoreProfile);
#else #elif defined(HAVE_XLIB)
Window aWindow = (Window )myPlatformWindow->NativeHandle(); Window aWindow = (Window )myPlatformWindow->NativeHandle();
Display* aDisp = theDriver->GetDisplayConnection()->GetDisplay(); Display* aDisp = (Display* )theDriver->GetDisplayConnection()->GetDisplayAspect();
GLXContext aGContext = (GLXContext )theGContext; GLXContext aGContext = (GLXContext )theGContext;
GLXContext aSlaveCtx = !theShareCtx.IsNull() ? (GLXContext )theShareCtx->myGContext : NULL; GLXContext aSlaveCtx = !theShareCtx.IsNull() ? (GLXContext )theShareCtx->myGContext : NULL;
@ -631,6 +656,9 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
} }
myGlContext->Init ((Aspect_Drawable )aWindow, (Aspect_Display )aDisp, (Aspect_RenderingContext )aGContext, isCoreProfile); myGlContext->Init ((Aspect_Drawable )aWindow, (Aspect_Display )aDisp, (Aspect_RenderingContext )aGContext, isCoreProfile);
#else
// not implemented
(void )isCoreProfile;
#endif #endif
myGlContext->Share (theShareCtx); myGlContext->Share (theShareCtx);
myGlContext->SetSwapInterval (mySwapInterval); myGlContext->SetSwapInterval (mySwapInterval);
@ -661,7 +689,7 @@ OpenGl_Window::~OpenGl_Window()
} }
#elif defined(_WIN32) #elif defined(_WIN32)
HWND aWindow = (HWND )myGlContext->myWindow; HWND aWindow = (HWND )myGlContext->myWindow;
HDC aWindowDC = (HDC )myGlContext->myWindowDC; HDC aWindowDC = (HDC )myGlContext->myDisplay;
HGLRC aWindowGContext = (HGLRC )myGlContext->myGContext; HGLRC aWindowGContext = (HGLRC )myGlContext->myGContext;
HGLRC aThreadGContext = wglGetCurrentContext(); HGLRC aThreadGContext = wglGetCurrentContext();
myGlContext.Nullify(); myGlContext.Nullify();
@ -676,7 +704,7 @@ OpenGl_Window::~OpenGl_Window()
wglDeleteContext (aWindowGContext); wglDeleteContext (aWindowGContext);
} }
ReleaseDC (aWindow, aWindowDC); ReleaseDC (aWindow, aWindowDC);
#else #elif defined(HAVE_XLIB)
Display* aDisplay = (Display* )myGlContext->myDisplay; Display* aDisplay = (Display* )myGlContext->myDisplay;
GLXContext aWindowGContext = (GLXContext )myGlContext->myGContext; GLXContext aWindowGContext = (GLXContext )myGlContext->myGContext;
GLXContext aThreadGContext = glXGetCurrentContext(); GLXContext aThreadGContext = glXGetCurrentContext();
@ -693,6 +721,8 @@ OpenGl_Window::~OpenGl_Window()
glXWaitGL(); glXWaitGL();
glXDestroyContext (aDisplay, aWindowGContext); glXDestroyContext (aDisplay, aWindowGContext);
} }
#else
// not implemented
#endif #endif
} }
@ -707,7 +737,7 @@ Standard_Boolean OpenGl_Window::Activate()
return myGlContext->MakeCurrent(); return myGlContext->MakeCurrent();
} }
#if !defined(__APPLE__) || defined(MACOSX_USE_GLX) #if !defined(__APPLE__) || defined(HAVE_XLIB)
// ======================================================================= // =======================================================================
// function : Resize // function : Resize

View File

@ -13,7 +13,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.
#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) #if defined(__APPLE__) && !defined(HAVE_XLIB)
#ifndef GL_GLEXT_LEGACY #ifndef GL_GLEXT_LEGACY
#define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8 #define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8

View File

@ -1,5 +1,4 @@
Aspect Aspect
InterfaceGraphic
Graphic3d Graphic3d
Xw Xw
Image Image

View File

@ -101,12 +101,14 @@
#include <WNT_WClass.hxx> #include <WNT_WClass.hxx>
#include <WNT_Window.hxx> #include <WNT_Window.hxx>
#include <WNT_HIDSpaceMouse.hxx> #include <WNT_HIDSpaceMouse.hxx>
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
#include <Xw_Window.hxx>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#elif defined(__APPLE__)
#include <Cocoa_Window.hxx> #include <Cocoa_Window.hxx>
#else #else
#include <Xw_Window.hxx> #include <Aspect_NeutralWindow.hxx>
#include <X11/Xlib.h> /* contains some dangerous #defines such as Status, True etc. */
#include <X11/Xutil.h>
#endif #endif
//============================================================================== //==============================================================================
@ -120,28 +122,24 @@ Standard_EXPORT int ViewerMainLoop(Standard_Integer , const char** argv);
extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS(); extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
#if defined(_WIN32) #if defined(_WIN32)
static Handle(WNT_Window)& VT_GetWindow() { typedef WNT_Window ViewerTest_Window;
static Handle(WNT_Window) WNTWin; #elif defined(HAVE_XLIB)
return WNTWin; typedef Xw_Window ViewerTest_Window;
} static void VProcessEvents(ClientData,int);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(__APPLE__)
static Handle(Cocoa_Window)& VT_GetWindow() typedef Cocoa_Window ViewerTest_Window;
{
static Handle(Cocoa_Window) aWindow;
return aWindow;
}
extern void ViewerTest_SetCocoaEventManagerView (const Handle(Cocoa_Window)& theWindow); extern void ViewerTest_SetCocoaEventManagerView (const Handle(Cocoa_Window)& theWindow);
extern void GetCocoaScreenResolution (Standard_Integer& theWidth, Standard_Integer& theHeight); extern void GetCocoaScreenResolution (Standard_Integer& theWidth, Standard_Integer& theHeight);
#else #else
static Handle(Xw_Window)& VT_GetWindow(){ typedef Aspect_NeutralWindow ViewerTest_Window;
static Handle(Xw_Window) XWWin;
return XWWin;
}
static void VProcessEvents(ClientData,int);
#endif #endif
static Handle(ViewerTest_Window)& VT_GetWindow()
{
static Handle(ViewerTest_Window) aWindow;
return aWindow;
}
static Handle(Aspect_DisplayConnection)& GetDisplayConnection() static Handle(Aspect_DisplayConnection)& GetDisplayConnection()
{ {
static Handle(Aspect_DisplayConnection) aDisplayConnection; static Handle(Aspect_DisplayConnection) aDisplayConnection;
@ -1706,16 +1704,16 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
if (isNewDriver) if (isNewDriver)
{ {
// Get connection string // Get connection string
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
if (!theDisplayName.IsEmpty()) if (!theDisplayName.IsEmpty())
{ {
SetDisplayConnection (new Aspect_DisplayConnection (theDisplayName)); SetDisplayConnection (new Aspect_DisplayConnection (theDisplayName));
} }
else else
{ {
::Display* aDispX = NULL; Aspect_XDisplay* aDispX = NULL;
// create dedicated display connection instead of reusing Tk connection // create dedicated display connection instead of reusing Tk connection
// so that to procede events independently through VProcessEvents()/ViewerMainLoop() callbacks // so that to proceed events independently through VProcessEvents()/ViewerMainLoop() callbacks
/*Draw_Interpretor& aCommands = Draw::GetInterpretor(); /*Draw_Interpretor& aCommands = Draw::GetInterpretor();
Tcl_Interp* aTclInterp = aCommands.Interp(); Tcl_Interp* aTclInterp = aCommands.Interp();
Tk_Window aMainWindow = Tk_MainWindow (aTclInterp); Tk_Window aMainWindow = Tk_MainWindow (aTclInterp);
@ -1753,17 +1751,20 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
aScreenHeight = 0; aScreenHeight = 0;
// Get screen resolution // Get screen resolution
#if defined(_WIN32) || defined(__WIN32__) #if defined(_WIN32)
RECT aWindowSize; RECT aWindowSize;
GetClientRect(GetDesktopWindow(), &aWindowSize); GetClientRect(GetDesktopWindow(), &aWindowSize);
aScreenHeight = aWindowSize.bottom; aScreenHeight = aWindowSize.bottom;
aScreenWidth = aWindowSize.right; aScreenWidth = aWindowSize.right;
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
::Display* aDispX = (::Display* )GetDisplayConnection()->GetDisplayAspect();
Screen* aScreen = DefaultScreenOfDisplay(aDispX);
aScreenWidth = WidthOfScreen(aScreen);
aScreenHeight = HeightOfScreen(aScreen);
#elif defined(__APPLE__)
GetCocoaScreenResolution (aScreenWidth, aScreenHeight); GetCocoaScreenResolution (aScreenWidth, aScreenHeight);
#else #else
Screen *aScreen = DefaultScreenOfDisplay(GetDisplayConnection()->GetDisplay()); // not implemented
aScreenWidth = WidthOfScreen(aScreen);
aScreenHeight = HeightOfScreen(aScreen);
#endif #endif
TCollection_AsciiString anOverlappedViewId(""); TCollection_AsciiString anOverlappedViewId("");
@ -1846,16 +1847,20 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
aPxWidth, aPxHeight, aPxWidth, aPxHeight,
Quantity_NOC_BLACK); Quantity_NOC_BLACK);
VT_GetWindow()->RegisterRawInputDevices (WNT_Window::RawInputMask_SpaceMouse); VT_GetWindow()->RegisterRawInputDevices (WNT_Window::RawInputMask_SpaceMouse);
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
VT_GetWindow() = new Xw_Window (aGraphicDriver->GetDisplayConnection(),
aTitle.ToCString(),
aPxLeft, aPxTop,
aPxWidth, aPxHeight);
#elif defined(__APPLE__)
VT_GetWindow() = new Cocoa_Window (aTitle.ToCString(), VT_GetWindow() = new Cocoa_Window (aTitle.ToCString(),
aPxLeft, aPxTop, aPxLeft, aPxTop,
aPxWidth, aPxHeight); aPxWidth, aPxHeight);
ViewerTest_SetCocoaEventManagerView (VT_GetWindow()); ViewerTest_SetCocoaEventManagerView (VT_GetWindow());
#else #else
VT_GetWindow() = new Xw_Window (aGraphicDriver->GetDisplayConnection(), // not implemented
aTitle.ToCString(), VT_GetWindow() = new Aspect_NeutralWindow();
aPxLeft, aPxTop, VT_GetWindow()->SetSize (aPxWidth, aPxHeight);
aPxWidth, aPxHeight);
#endif #endif
VT_GetWindow()->SetVirtual (isVirtual); VT_GetWindow()->SetVirtual (isVirtual);
@ -1890,10 +1895,10 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
a3DViewer->SetLightOn(); a3DViewer->SetLightOn();
} }
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
if (isNewDriver) if (isNewDriver)
{ {
::Display* aDispX = GetDisplayConnection()->GetDisplay(); ::Display* aDispX = (::Display* )GetDisplayConnection()->GetDisplayAspect();
Tcl_CreateFileHandler (XConnectionNumber (aDispX), TCL_READABLE, VProcessEvents, (ClientData )aDispX); Tcl_CreateFileHandler (XConnectionNumber (aDispX), TCL_READABLE, VProcessEvents, (ClientData )aDispX);
} }
#endif #endif
@ -2225,7 +2230,7 @@ static int VInit (Draw_Interpretor& theDi, Standard_Integer theArgsNb, const cha
} }
} }
#if defined(_WIN32) || (defined(__APPLE__) && !defined(MACOSX_USE_GLX)) #if !defined(HAVE_XLIB)
if (!aDisplayName.IsEmpty()) if (!aDisplayName.IsEmpty())
{ {
aDisplayName.Clear(); aDisplayName.Clear();
@ -2495,8 +2500,8 @@ static int VHLRType (Draw_Interpretor& , Standard_Integer argc, const char** arg
//function : FindViewIdByWindowHandle //function : FindViewIdByWindowHandle
//purpose : Find theView Id in the map of views by window handle //purpose : Find theView Id in the map of views by window handle
//============================================================================== //==============================================================================
#if defined(_WIN32) || (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(_WIN32) || defined(HAVE_XLIB)
TCollection_AsciiString FindViewIdByWindowHandle (Aspect_Drawable theWindowHandle) static TCollection_AsciiString FindViewIdByWindowHandle (Aspect_Drawable theWindowHandle)
{ {
for (NCollection_DoubleMap<TCollection_AsciiString, Handle(V3d_View)>::Iterator for (NCollection_DoubleMap<TCollection_AsciiString, Handle(V3d_View)>::Iterator
anIter(ViewerTest_myViews); anIter.More(); anIter.Next()) anIter(ViewerTest_myViews); anIter.More(); anIter.Next())
@ -2532,10 +2537,12 @@ void ActivateView (const TCollection_AsciiString& theViewName,
aView->Window()->SetTitle (TCollection_AsciiString("3D View - ") + theViewName + "(*)"); aView->Window()->SetTitle (TCollection_AsciiString("3D View - ") + theViewName + "(*)");
#if defined(_WIN32) #if defined(_WIN32)
VT_GetWindow() = Handle(WNT_Window)::DownCast(ViewerTest::CurrentView()->Window()); VT_GetWindow() = Handle(WNT_Window)::DownCast(ViewerTest::CurrentView()->Window());
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
VT_GetWindow() = Handle(Xw_Window)::DownCast(ViewerTest::CurrentView()->Window());
#elif defined(__APPLE__)
VT_GetWindow() = Handle(Cocoa_Window)::DownCast(ViewerTest::CurrentView()->Window()); VT_GetWindow() = Handle(Cocoa_Window)::DownCast(ViewerTest::CurrentView()->Window());
#else #else
VT_GetWindow() = Handle(Xw_Window)::DownCast(ViewerTest::CurrentView()->Window()); VT_GetWindow() = Handle(Aspect_NeutralWindow)::DownCast(ViewerTest::CurrentView()->Window());
#endif #endif
SetDisplayConnection(ViewerTest::CurrentView()->Viewer()->Driver()->GetDisplayConnection()); SetDisplayConnection(ViewerTest::CurrentView()->Viewer()->Driver()->GetDisplayConnection());
if (theToUpdate) if (theToUpdate)
@ -2613,8 +2620,8 @@ void ViewerTest::RemoveView (const TCollection_AsciiString& theViewName, const S
aView->Window()->Unmap(); aView->Window()->Unmap();
aView->Remove(); aView->Remove();
#if !defined(_WIN32) && !defined(__WIN32__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
XFlush (GetDisplayConnection()->GetDisplay()); XFlush ((::Display* )GetDisplayConnection()->GetDisplayAspect());
#endif #endif
// Keep context opened only if the closed view is last to avoid // Keep context opened only if the closed view is last to avoid
@ -2642,8 +2649,8 @@ void ViewerTest::RemoveView (const TCollection_AsciiString& theViewName, const S
if(isRemoveDriver) if(isRemoveDriver)
{ {
ViewerTest_myDrivers.UnBind2 (aCurrentContext->CurrentViewer()->Driver()); ViewerTest_myDrivers.UnBind2 (aCurrentContext->CurrentViewer()->Driver());
#if !defined(_WIN32) && !defined(__WIN32__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
Tcl_DeleteFileHandler (XConnectionNumber (aCurrentContext->CurrentViewer()->Driver()->GetDisplayConnection()->GetDisplay())); Tcl_DeleteFileHandler (XConnectionNumber ((::Display* )aCurrentContext->CurrentViewer()->Driver()->GetDisplayConnection()->GetDisplayAspect()));
#endif #endif
} }
@ -3323,7 +3330,7 @@ int ViewerMainLoop (Standard_Integer theNbArgs, const char** theArgVec)
return 0; return 0;
} }
#elif !defined(__APPLE__) || defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
int ViewerMainLoop (Standard_Integer theNbArgs, const char** theArgVec) int ViewerMainLoop (Standard_Integer theNbArgs, const char** theArgVec)
{ {
@ -3338,7 +3345,7 @@ int ViewerMainLoop (Standard_Integer theNbArgs, const char** theArgVec)
ViewerTest::CurrentEventManager()->StartPickPoint (theArgVec[1], theArgVec[2], theArgVec[3]); ViewerTest::CurrentEventManager()->StartPickPoint (theArgVec[1], theArgVec[2], theArgVec[3]);
} }
Display* aDisplay = GetDisplayConnection()->GetDisplay(); Display* aDisplay = (Display* )GetDisplayConnection()->GetDisplayAspect();
XNextEvent (aDisplay, &aReport); XNextEvent (aDisplay, &aReport);
// Handle event for the chosen display connection // Handle event for the chosen display connection
@ -3398,7 +3405,7 @@ static void VProcessEvents (ClientData theDispX, int)
aDriverIter (ViewerTest_myDrivers); aDriverIter.More(); aDriverIter.Next()) aDriverIter (ViewerTest_myDrivers); aDriverIter.More(); aDriverIter.Next())
{ {
const Handle(Aspect_DisplayConnection)& aDispConnTmp = aDriverIter.Key2()->GetDisplayConnection(); const Handle(Aspect_DisplayConnection)& aDispConnTmp = aDriverIter.Key2()->GetDisplayConnection();
if (aDispConnTmp->GetDisplay() == aDispX) if ((Display* )aDispConnTmp->GetDisplayAspect() == aDispX)
{ {
aDispConn = aDispConnTmp; aDispConn = aDispConnTmp;
break; break;
@ -3449,47 +3456,55 @@ static void VProcessEvents (ClientData theDispX, int)
SetDisplayConnection (anActiveCtx->CurrentViewer()->Driver()->GetDisplayConnection()); SetDisplayConnection (anActiveCtx->CurrentViewer()->Driver()->GetDisplayConnection());
} }
} }
#elif !defined(__APPLE__)
// =======================================================================
// function : ViewerMainLoop
// purpose :
// =======================================================================
int ViewerMainLoop (Standard_Integer , const char** )
{
// unused
return 0;
}
#endif #endif
//============================================================================== //==============================================================================
//function : OSWindowSetup //function : OSWindowSetup
//purpose : Setup for the X11 window to be able to cath the event //purpose : Setup for the X11 window to be able to catch the event
//============================================================================== //==============================================================================
static void OSWindowSetup() static void OSWindowSetup()
{ {
#if !defined(_WIN32) && !defined(__WIN32__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #ifdef _WIN32
// X11 //
Window window = VT_GetWindow()->XWindow(); #elif defined(HAVE_XLIB)
// X11
Window anXWin = VT_GetWindow()->XWindow();
SetDisplayConnection (ViewerTest::CurrentView()->Viewer()->Driver()->GetDisplayConnection()); SetDisplayConnection (ViewerTest::CurrentView()->Viewer()->Driver()->GetDisplayConnection());
Display *aDisplay = GetDisplayConnection()->GetDisplay(); Display* aDisplay = (Display* )GetDisplayConnection()->GetDisplayAspect();
XSynchronize(aDisplay, 1); XSynchronize (aDisplay, 1);
// X11 : For keyboard on SUN // X11 : For keyboard on SUN
XWMHints wmhints; XWMHints aWmHints;
wmhints.flags = InputHint; memset (&aWmHints, 0, sizeof(aWmHints));
wmhints.input = 1; aWmHints.flags = InputHint;
aWmHints.input = 1;
XSetWMHints (aDisplay, anXWin, &aWmHints);
XSetWMHints( aDisplay, window, &wmhints); XSelectInput (aDisplay, anXWin,
ExposureMask | KeyPressMask | KeyReleaseMask
XSelectInput( aDisplay, window, ExposureMask | KeyPressMask | KeyReleaseMask | | ButtonPressMask | ButtonReleaseMask
ButtonPressMask | ButtonReleaseMask | | StructureNotifyMask
StructureNotifyMask | | PointerMotionMask
PointerMotionMask | | Button1MotionMask | Button2MotionMask
Button1MotionMask | Button2MotionMask | | Button3MotionMask | FocusChangeMask);
Button3MotionMask | FocusChangeMask Atom aDeleteWindowAtom = GetDisplayConnection()->GetAtom (Aspect_XA_DELETE_WINDOW);
); XSetWMProtocols (aDisplay, anXWin, &aDeleteWindowAtom, 1);
Atom aDeleteWindowAtom = GetDisplayConnection()->GetAtom(Aspect_XA_DELETE_WINDOW);
XSetWMProtocols(aDisplay, window, &aDeleteWindowAtom, 1);
XSynchronize(aDisplay, 0);
XSynchronize (aDisplay, 0);
#else #else
// _WIN32 //
#endif #endif
} }
//============================================================================== //==============================================================================
@ -14117,7 +14132,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
theCommands.Add("vinit", theCommands.Add("vinit",
"vinit [-name viewName] [-left leftPx] [-top topPx] [-width widthPx] [-height heightPx]" "vinit [-name viewName] [-left leftPx] [-top topPx] [-width widthPx] [-height heightPx]"
"\n\t\t: [-exitOnClose] [-closeOnEscape] [-cloneActive] [-virtual {on|off}=off] [-2d_mode {on|off}=off]" "\n\t\t: [-exitOnClose] [-closeOnEscape] [-cloneActive] [-virtual {on|off}=off] [-2d_mode {on|off}=off]"
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
"\n\t\t: [-display displayName]" "\n\t\t: [-display displayName]"
#endif #endif
"\n\t\t: Creates new View window with specified name viewName." "\n\t\t: Creates new View window with specified name viewName."
@ -14126,7 +14141,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
"\n\t\t: -name {driverName/viewerName/viewName | viewerName/viewName | viewName}" "\n\t\t: -name {driverName/viewerName/viewName | viewerName/viewName | viewName}"
"\n\t\t: If driverName isn't specified the driver will be shared with active view." "\n\t\t: If driverName isn't specified the driver will be shared with active view."
"\n\t\t: If viewerName isn't specified the viewer will be shared with active view." "\n\t\t: If viewerName isn't specified the viewer will be shared with active view."
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) #if defined(HAVE_XLIB)
"\n\t\t: -display HostName.DisplayNumber[:ScreenNumber]" "\n\t\t: -display HostName.DisplayNumber[:ScreenNumber]"
"\n\t\t: Display name will be used within creation of graphic driver, when specified." "\n\t\t: Display name will be used within creation of graphic driver, when specified."
#endif #endif

View File

@ -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.
#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) #if defined(__APPLE__) && !defined(HAVE_XLIB)
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>

View File

@ -15,16 +15,22 @@
#include <Xw_Window.hxx> #include <Xw_Window.hxx>
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__)
#include <Aspect_Convert.hxx> #include <Aspect_Convert.hxx>
#include <Aspect_ScrollDelta.hxx> #include <Aspect_ScrollDelta.hxx>
#include <Aspect_WindowDefinitionError.hxx> #include <Aspect_WindowDefinitionError.hxx>
#include <Aspect_WindowInputListener.hxx> #include <Aspect_WindowInputListener.hxx>
#include <Message.hxx> #include <Message.hxx>
#include <Message_Messenger.hxx> #include <Message_Messenger.hxx>
#include <Standard_NotImplemented.hxx>
//#include <X11/XF86keysym.h> #if defined(HAVE_XLIB)
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
//#include <X11/XF86keysym.h>
#endif
#include <Aspect_DisplayConnection.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Xw_Window, Aspect_Window) IMPLEMENT_STANDARD_RTTIEXT(Xw_Window, Aspect_Window)
@ -57,17 +63,17 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
throw Aspect_WindowDefinitionError("Xw_Window, X Display connection is undefined"); throw Aspect_WindowDefinitionError("Xw_Window, X Display connection is undefined");
} }
#if defined(HAVE_XLIB)
myFBConfig = theXDisplay->GetDefaultFBConfig(); myFBConfig = theXDisplay->GetDefaultFBConfig();
XVisualInfo* aVisInfo = theXDisplay->GetDefaultVisualInfo(); XVisualInfo* aVisInfo = theXDisplay->GetDefaultVisualInfoX();
Display* aDisp = myDisplay->GetDisplay(); Display* aDisp = myDisplay->GetDisplay();
int aScreen = DefaultScreen(aDisp); int aScreen = DefaultScreen(aDisp);
Window aParent = RootWindow (aDisp, aScreen); Window aParent = RootWindow (aDisp, aScreen);
unsigned long aMask = 0; unsigned long aMask = 0;
XSetWindowAttributes aWinAttr; XSetWindowAttributes aWinAttr;
memset(&aWinAttr, 0, sizeof(XSetWindowAttributes)); memset (&aWinAttr, 0, sizeof(aWinAttr));
aWinAttr.event_mask = ExposureMask | StructureNotifyMask; aWinAttr.event_mask = ExposureMask | StructureNotifyMask;
aMask |= CWEventMask; aMask |= CWEventMask;
if (aVisInfo != NULL) if (aVisInfo != NULL)
@ -77,7 +83,7 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
aWinAttr.border_pixel = 0; aWinAttr.border_pixel = 0;
aWinAttr.override_redirect = False; aWinAttr.override_redirect = False;
myXWindow = XCreateWindow(aDisp, aParent, myXWindow = (Window )XCreateWindow (aDisp, aParent,
myXLeft, myYTop, thePxWidth, thePxHeight, myXLeft, myYTop, thePxWidth, thePxHeight,
0, aVisInfo != NULL ? aVisInfo->depth : CopyFromParent, 0, aVisInfo != NULL ? aVisInfo->depth : CopyFromParent,
InputOutput, InputOutput,
@ -96,17 +102,24 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
aSizeHints.width = thePxWidth; aSizeHints.width = thePxWidth;
aSizeHints.height = thePxHeight; aSizeHints.height = thePxHeight;
aSizeHints.flags |= PSize; aSizeHints.flags |= PSize;
XSetStandardProperties (aDisp, myXWindow, theTitle, theTitle, None, XSetStandardProperties (aDisp, (Window )myXWindow, theTitle, theTitle, None,
NULL, 0, &aSizeHints); NULL, 0, &aSizeHints);
/*XTextProperty aTitleProperty; /*XTextProperty aTitleProperty;
aTitleProperty.encoding = None; aTitleProperty.encoding = None;
char* aTitle = (char* )theTitle; char* aTitle = (char* )theTitle;
Xutf8TextListToTextProperty(aDisp, &aTitle, 1, XUTF8StringStyle, &aTitleProperty); Xutf8TextListToTextProperty(aDisp, &aTitle, 1, XUTF8StringStyle, &aTitleProperty);
XSetWMName (aDisp, myXWindow, &aTitleProperty); XSetWMName (aDisp, (Window )myXWindow, &aTitleProperty);
XSetWMProperties(aDisp, myXWindow, &aTitleProperty, &aTitleProperty, NULL, 0, NULL, NULL, NULL);*/ XSetWMProperties(aDisp, (Window )myXWindow, &aTitleProperty, &aTitleProperty, NULL, 0, NULL, NULL, NULL);*/
XFlush (aDisp); XFlush (aDisp);
#else
(void )theTitle;
if (myXWindow == 0)
{
throw Aspect_WindowDefinitionError ("Xw_Window, Unable to create window - not implemented");
}
#endif
} }
// ======================================================================= // =======================================================================
@ -114,7 +127,7 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
// purpose : // purpose :
// ======================================================================= // =======================================================================
Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay, Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
const Window theXWin, const Aspect_Drawable theXWin,
const Aspect_FBConfig theFBConfig) const Aspect_FBConfig theFBConfig)
: Aspect_Window(), : Aspect_Window(),
myDisplay (theXDisplay), myDisplay (theXDisplay),
@ -135,10 +148,11 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
throw Aspect_WindowDefinitionError("Xw_Window, X Display connection is undefined"); throw Aspect_WindowDefinitionError("Xw_Window, X Display connection is undefined");
} }
#if defined(HAVE_XLIB)
Display* aDisp = myDisplay->GetDisplay(); Display* aDisp = myDisplay->GetDisplay();
XWindowAttributes aWinAttr; XWindowAttributes aWinAttr;
XGetWindowAttributes (aDisp, myXWindow, &aWinAttr); XGetWindowAttributes (aDisp, (Window )myXWindow, &aWinAttr);
XVisualInfo aVisInfoTmp; XVisualInfo aVisInfoTmp;
aVisInfoTmp.visualid = aWinAttr.visual->visualid; aVisInfoTmp.visualid = aWinAttr.visual->visualid;
aVisInfoTmp.screen = DefaultScreen (aDisp); aVisInfoTmp.screen = DefaultScreen (aDisp);
@ -151,6 +165,9 @@ Xw_Window::Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
XFree (aVisInfo); XFree (aVisInfo);
DoResize(); DoResize();
#else
//throw Standard_NotImplemented("Xw_Window, not implemented");
#endif
} }
// ======================================================================= // =======================================================================
@ -161,19 +178,12 @@ Xw_Window::~Xw_Window()
{ {
if (myIsOwnWin && myXWindow != 0 && !myDisplay.IsNull()) if (myIsOwnWin && myXWindow != 0 && !myDisplay.IsNull())
{ {
XDestroyWindow (myDisplay->GetDisplay(), myXWindow); #if defined(HAVE_XLIB)
XDestroyWindow (myDisplay->GetDisplay(), (Window )myXWindow);
#endif
} }
} }
// =======================================================================
// function : XWindow
// purpose :
// =======================================================================
Window Xw_Window::XWindow() const
{
return myXWindow;
}
// ======================================================================= // =======================================================================
// function : IsMapped // function : IsMapped
// purpose : // purpose :
@ -189,11 +199,15 @@ Standard_Boolean Xw_Window::IsMapped() const
return Standard_True; return Standard_True;
} }
#if defined(HAVE_XLIB)
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
XWindowAttributes aWinAttr; XWindowAttributes aWinAttr;
XGetWindowAttributes (myDisplay->GetDisplay(), myXWindow, &aWinAttr); XGetWindowAttributes (myDisplay->GetDisplay(), (Window )myXWindow, &aWinAttr);
return aWinAttr.map_state == IsUnviewable return aWinAttr.map_state == IsUnviewable
|| aWinAttr.map_state == IsViewable; || aWinAttr.map_state == IsViewable;
#else
return Standard_False;
#endif
} }
// ======================================================================= // =======================================================================
@ -207,8 +221,10 @@ void Xw_Window::Map() const
return; return;
} }
XMapWindow (myDisplay->GetDisplay(), myXWindow); #if defined(HAVE_XLIB)
XMapWindow (myDisplay->GetDisplay(), (Window )myXWindow);
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
#endif
} }
// ======================================================================= // =======================================================================
@ -222,7 +238,9 @@ void Xw_Window::Unmap() const
return; return;
} }
XIconifyWindow (myDisplay->GetDisplay(), myXWindow, DefaultScreen(myDisplay->GetDisplay())); #if defined(HAVE_XLIB)
XIconifyWindow (myDisplay->GetDisplay(), (Window )myXWindow, DefaultScreen(myDisplay->GetDisplay()));
#endif
} }
// ======================================================================= // =======================================================================
@ -236,9 +254,11 @@ Aspect_TypeOfResize Xw_Window::DoResize()
return Aspect_TOR_UNKNOWN; return Aspect_TOR_UNKNOWN;
} }
#if defined(HAVE_XLIB)
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
XWindowAttributes aWinAttr; XWindowAttributes aWinAttr;
XGetWindowAttributes (myDisplay->GetDisplay(), myXWindow, &aWinAttr); memset (&aWinAttr, 0, sizeof(aWinAttr));
XGetWindowAttributes (myDisplay->GetDisplay(), (Window )myXWindow, &aWinAttr);
if (aWinAttr.map_state == IsUnmapped) if (aWinAttr.map_state == IsUnmapped)
{ {
return Aspect_TOR_UNKNOWN; return Aspect_TOR_UNKNOWN;
@ -270,15 +290,9 @@ Aspect_TypeOfResize Xw_Window::DoResize()
myYTop = aWinAttr.y; myYTop = aWinAttr.y;
myYBottom = aWinAttr.y + aWinAttr.height; myYBottom = aWinAttr.y + aWinAttr.height;
return aMode; return aMode;
} #else
return Aspect_TOR_UNKNOWN;
// ======================================================================= #endif
// function : DoMapping
// purpose :
// =======================================================================
Standard_Boolean Xw_Window::DoMapping() const
{
return Standard_True; // IsMapped()
} }
// ======================================================================= // =======================================================================
@ -292,10 +306,15 @@ Standard_Real Xw_Window::Ratio() const
return Standard_Real(myXRight - myXLeft) / Standard_Real(myYBottom - myYTop); return Standard_Real(myXRight - myXLeft) / Standard_Real(myYBottom - myYTop);
} }
#if defined(HAVE_XLIB)
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
XWindowAttributes aWinAttr; XWindowAttributes aWinAttr;
XGetWindowAttributes (myDisplay->GetDisplay(), myXWindow, &aWinAttr); memset (&aWinAttr, 0, sizeof(aWinAttr));
XGetWindowAttributes (myDisplay->GetDisplay(), (Window )myXWindow, &aWinAttr);
return Standard_Real(aWinAttr.width) / Standard_Real(aWinAttr.height); return Standard_Real(aWinAttr.width) / Standard_Real(aWinAttr.height);
#else
return 1.0;
#endif
} }
// ======================================================================= // =======================================================================
@ -314,17 +333,20 @@ void Xw_Window::Position (Standard_Integer& theX1, Standard_Integer& theY1,
return; return;
} }
#if defined(HAVE_XLIB)
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
XWindowAttributes anAttributes; XWindowAttributes anAttributes;
XGetWindowAttributes (myDisplay->GetDisplay(), myXWindow, &anAttributes); memset (&anAttributes, 0, sizeof(anAttributes));
XGetWindowAttributes (myDisplay->GetDisplay(), (Window )myXWindow, &anAttributes);
Window aChild; Window aChild;
XTranslateCoordinates (myDisplay->GetDisplay(), anAttributes.root, myXWindow, XTranslateCoordinates (myDisplay->GetDisplay(), anAttributes.root, (Window )myXWindow,
0, 0, &anAttributes.x, &anAttributes.y, &aChild); 0, 0, &anAttributes.x, &anAttributes.y, &aChild);
theX1 = -anAttributes.x; theX1 = -anAttributes.x;
theX2 = theX1 + anAttributes.width; theX2 = theX1 + anAttributes.width;
theY1 = -anAttributes.y; theY1 = -anAttributes.y;
theY2 = theY1 + anAttributes.height; theY2 = theY1 + anAttributes.height;
#endif
} }
// ======================================================================= // =======================================================================
@ -341,11 +363,14 @@ void Xw_Window::Size (Standard_Integer& theWidth,
return; return;
} }
#if defined(HAVE_XLIB)
XFlush (myDisplay->GetDisplay()); XFlush (myDisplay->GetDisplay());
XWindowAttributes aWinAttr; XWindowAttributes aWinAttr;
XGetWindowAttributes (myDisplay->GetDisplay(), myXWindow, &aWinAttr); memset (&aWinAttr, 0, sizeof(aWinAttr));
XGetWindowAttributes (myDisplay->GetDisplay(), (Window )myXWindow, &aWinAttr);
theWidth = aWinAttr.width; theWidth = aWinAttr.width;
theHeight = aWinAttr.height; theHeight = aWinAttr.height;
#endif
} }
// ======================================================================= // =======================================================================
@ -356,7 +381,11 @@ void Xw_Window::SetTitle (const TCollection_AsciiString& theTitle)
{ {
if (myXWindow != 0) if (myXWindow != 0)
{ {
XStoreName (myDisplay->GetDisplay(), myXWindow, theTitle.ToCString()); #if defined(HAVE_XLIB)
XStoreName (myDisplay->GetDisplay(), (Window )myXWindow, theTitle.ToCString());
#else
(void )theTitle;
#endif
} }
} }
@ -371,15 +400,19 @@ void Xw_Window::InvalidateContent (const Handle(Aspect_DisplayConnection)& theDi
return; return;
} }
#if defined(HAVE_XLIB)
const Handle(Aspect_DisplayConnection)& aDisp = !theDisp.IsNull() ? theDisp : myDisplay; const Handle(Aspect_DisplayConnection)& aDisp = !theDisp.IsNull() ? theDisp : myDisplay;
Display* aDispX = aDisp->GetDisplay(); Display* aDispX = aDisp->GetDisplay();
XEvent anEvent; XEvent anEvent;
memset (&anEvent, 0, sizeof(anEvent)); memset (&anEvent, 0, sizeof(anEvent));
anEvent.type = Expose; anEvent.type = Expose;
anEvent.xexpose.window = myXWindow; anEvent.xexpose.window = (Window )myXWindow;
XSendEvent (aDispX, myXWindow, False, ExposureMask, &anEvent); XSendEvent (aDispX, (Window )myXWindow, False, ExposureMask, &anEvent);
XFlush (aDispX); XFlush (aDispX);
#else
(void )theDisp;
#endif
} }
// ======================================================================= // =======================================================================
@ -388,6 +421,7 @@ void Xw_Window::InvalidateContent (const Handle(Aspect_DisplayConnection)& theDi
// ======================================================================= // =======================================================================
Aspect_VKey Xw_Window::VirtualKeyFromNative (unsigned long theKey) Aspect_VKey Xw_Window::VirtualKeyFromNative (unsigned long theKey)
{ {
#if defined(HAVE_XLIB)
if (theKey >= XK_0 if (theKey >= XK_0
&& theKey <= XK_9) && theKey <= XK_9)
{ {
@ -530,6 +564,9 @@ Aspect_VKey Xw_Window::VirtualKeyFromNative (unsigned long theKey)
case 0x1008FF29: // XF86Refresh case 0x1008FF29: // XF86Refresh
return Aspect_VKey_BrowserRefresh; return Aspect_VKey_BrowserRefresh;
} }
#else
(void )theKey;
#endif
return Aspect_VKey_UNKNOWN; return Aspect_VKey_UNKNOWN;
} }
@ -538,8 +575,13 @@ Aspect_VKey Xw_Window::VirtualKeyFromNative (unsigned long theKey)
// purpose : // purpose :
// ======================================================================= // =======================================================================
bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener, bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
XEvent& theMsg) XEvent&
#if defined(HAVE_XLIB) // msvc before VS2015 had problems with (void )theMsg
theMsg
#endif
)
{ {
#if defined(HAVE_XLIB)
Display* aDisplay = myDisplay->GetDisplay(); Display* aDisplay = myDisplay->GetDisplay();
// Handle event for the chosen display connection // Handle event for the chosen display connection
@ -548,7 +590,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
case ClientMessage: case ClientMessage:
{ {
if ((Atom)theMsg.xclient.data.l[0] == myDisplay->GetAtom (Aspect_XA_DELETE_WINDOW) if ((Atom)theMsg.xclient.data.l[0] == myDisplay->GetAtom (Aspect_XA_DELETE_WINDOW)
&& theMsg.xclient.window == myXWindow) && theMsg.xclient.window == (Window )myXWindow)
{ {
theListener.ProcessClose(); theListener.ProcessClose();
return true; return true;
@ -558,7 +600,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
case FocusIn: case FocusIn:
case FocusOut: case FocusOut:
{ {
if (theMsg.xfocus.window == myXWindow) if (theMsg.xfocus.window == (Window )myXWindow)
{ {
theListener.ProcessFocus (theMsg.type == FocusIn); theListener.ProcessFocus (theMsg.type == FocusIn);
} }
@ -566,7 +608,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
} }
case Expose: case Expose:
{ {
if (theMsg.xexpose.window == myXWindow) if (theMsg.xexpose.window == (Window )myXWindow)
{ {
theListener.ProcessExpose(); theListener.ProcessExpose();
} }
@ -574,7 +616,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
// remove all the ExposureMask and process them at once // remove all the ExposureMask and process them at once
for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents) for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents)
{ {
if (!XCheckWindowEvent (aDisplay, myXWindow, ExposureMask, &theMsg)) if (!XCheckWindowEvent (aDisplay, (Window )myXWindow, ExposureMask, &theMsg))
{ {
break; break;
} }
@ -587,13 +629,13 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
// remove all the StructureNotifyMask and process them at once // remove all the StructureNotifyMask and process them at once
for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents) for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents)
{ {
if (!XCheckWindowEvent (aDisplay, myXWindow, StructureNotifyMask, &theMsg)) if (!XCheckWindowEvent (aDisplay, (Window )myXWindow, StructureNotifyMask, &theMsg))
{ {
break; break;
} }
} }
if (theMsg.xconfigure.window == myXWindow) if (theMsg.xconfigure.window == (Window )myXWindow)
{ {
theListener.ProcessConfigure (true); theListener.ProcessConfigure (true);
} }
@ -661,7 +703,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
} }
case MotionNotify: case MotionNotify:
{ {
if (theMsg.xmotion.window != myXWindow) if (theMsg.xmotion.window != (Window )myXWindow)
{ {
return false; return false;
} }
@ -669,7 +711,7 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
// remove all the ButtonMotionMask and process them at once // remove all the ButtonMotionMask and process them at once
for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents) for (int aNbMaxEvents = XPending (aDisplay); aNbMaxEvents > 0; --aNbMaxEvents)
{ {
if (!XCheckWindowEvent (aDisplay, myXWindow, ButtonMotionMask | PointerMotionMask, &theMsg)) if (!XCheckWindowEvent (aDisplay, (Window )myXWindow, ButtonMotionMask | PointerMotionMask, &theMsg))
{ {
break; break;
} }
@ -694,7 +736,8 @@ bool Xw_Window::ProcessMessage (Aspect_WindowInputListener& theListener,
return true; return true;
} }
} }
#else
(void )theListener;
#endif
return false; return false;
} }
#endif // Win32 or Mac OS X

View File

@ -16,20 +16,12 @@
#ifndef _Xw_Window_H__ #ifndef _Xw_Window_H__
#define _Xw_Window_H__ #define _Xw_Window_H__
#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__) && !defined(__EMSCRIPTEN__)
#include <Aspect_Window.hxx> #include <Aspect_Window.hxx>
#include <Aspect_VKey.hxx> #include <Aspect_VKey.hxx>
#include <Aspect_DisplayConnection.hxx>
#include <Aspect_FillMethod.hxx>
#include <Aspect_GradientFillMethod.hxx>
#include <Aspect_Handle.hxx> #include <Aspect_Handle.hxx>
#include <Aspect_TypeOfResize.hxx>
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <Quantity_NameOfColor.hxx>
class Aspect_DisplayConnection;
class Aspect_WindowDefinitionError; class Aspect_WindowDefinitionError;
class Aspect_WindowError; class Aspect_WindowError;
class Aspect_WindowInputListener; class Aspect_WindowInputListener;
@ -37,9 +29,12 @@ class Aspect_Background;
class Quantity_Color; class Quantity_Color;
class Aspect_GradientBackground; class Aspect_GradientBackground;
typedef union _XEvent XEvent;
//! This class defines XLib window intended for creation of OpenGL context. //! This class defines XLib window intended for creation of OpenGL context.
class Xw_Window : public Aspect_Window class Xw_Window : public Aspect_Window
{ {
DEFINE_STANDARD_RTTIEXT(Xw_Window, Aspect_Window)
public: public:
//! Convert X11 virtual key (KeySym) into Aspect_VKey. //! Convert X11 virtual key (KeySym) into Aspect_VKey.
@ -58,10 +53,10 @@ public:
//! Creates a wrapper over existing Window handle //! Creates a wrapper over existing Window handle
Standard_EXPORT Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay, Standard_EXPORT Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
const Window theXWin, const Aspect_Drawable theXWin,
const Aspect_FBConfig theFBConfig = NULL); const Aspect_FBConfig theFBConfig = NULL);
//! Destroys the Window and all resourses attached to it //! Destroys the Window and all resources attached to it
Standard_EXPORT ~Xw_Window(); Standard_EXPORT ~Xw_Window();
//! Opens the window <me> //! Opens the window <me>
@ -74,7 +69,10 @@ public:
Standard_EXPORT virtual Aspect_TypeOfResize DoResize() Standard_OVERRIDE; Standard_EXPORT virtual Aspect_TypeOfResize DoResize() Standard_OVERRIDE;
//! Apply the mapping change to the window <me> //! Apply the mapping change to the window <me>
Standard_EXPORT virtual Standard_Boolean DoMapping() const Standard_OVERRIDE; virtual Standard_Boolean DoMapping() const Standard_OVERRIDE
{
return Standard_True; // IsMapped()
}
//! Returns True if the window <me> is opened //! Returns True if the window <me> is opened
Standard_EXPORT virtual Standard_Boolean IsMapped() const Standard_OVERRIDE; Standard_EXPORT virtual Standard_Boolean IsMapped() const Standard_OVERRIDE;
@ -93,7 +91,7 @@ public:
Standard_Integer& theHeight) const Standard_OVERRIDE; Standard_Integer& theHeight) const Standard_OVERRIDE;
//! @return native Window handle //! @return native Window handle
Standard_EXPORT Window XWindow() const; Aspect_Drawable XWindow() const { return myXWindow; }
//! @return connection to X Display //! @return connection to X Display
Standard_EXPORT const Handle(Aspect_DisplayConnection)& DisplayConnection() const; Standard_EXPORT const Handle(Aspect_DisplayConnection)& DisplayConnection() const;
@ -101,7 +99,7 @@ public:
//! @return native Window handle //! @return native Window handle
virtual Aspect_Drawable NativeHandle() const Standard_OVERRIDE virtual Aspect_Drawable NativeHandle() const Standard_OVERRIDE
{ {
return (Aspect_Drawable )XWindow(); return myXWindow;
} }
//! @return parent of native Window handle //! @return parent of native Window handle
@ -136,7 +134,7 @@ public:
protected: protected:
Handle(Aspect_DisplayConnection) myDisplay; //!< X Display connection Handle(Aspect_DisplayConnection) myDisplay; //!< X Display connection
Window myXWindow; //!< XLib window handle Aspect_Drawable myXWindow; //!< XLib window handle
Aspect_FBConfig myFBConfig; //!< GLXFBConfig Aspect_FBConfig myFBConfig; //!< GLXFBConfig
Standard_Integer myXLeft; //!< left position in pixels Standard_Integer myXLeft; //!< left position in pixels
Standard_Integer myYTop; //!< top position in pixels Standard_Integer myYTop; //!< top position in pixels
@ -144,13 +142,8 @@ protected:
Standard_Integer myYBottom; //!< bottom position in pixels Standard_Integer myYBottom; //!< bottom position in pixels
Standard_Boolean myIsOwnWin; //!< flag to indicate own window handle (to be deallocated on destruction) Standard_Boolean myIsOwnWin; //!< flag to indicate own window handle (to be deallocated on destruction)
public:
DEFINE_STANDARD_RTTIEXT(Xw_Window,Aspect_Window)
}; };
DEFINE_STANDARD_HANDLE(Xw_Window, Aspect_Window) DEFINE_STANDARD_HANDLE(Xw_Window, Aspect_Window)
#endif // Win32 or Mac OS X
#endif // _Xw_Window_H__ #endif // _Xw_Window_H__

View File

@ -44,11 +44,13 @@
#include <stdio.h> #include <stdio.h>
#ifdef _WIN32 #ifdef _WIN32
#include <WNT_Window.hxx> #include <WNT_Window.hxx>
#elif defined(__APPLE__) && !defined(MACOSX_USE_GLX) #elif defined(HAVE_XLIB)
#include <Cocoa_Window.hxx> #include <Xw_Window.hxx>
#elif defined(__APPLE__)
#include <Cocoa_Window.hxx>
#else #else
#include <Xw_Window.hxx>
#endif #endif
// ======================================================================= // =======================================================================
@ -106,13 +108,15 @@ void View_Widget::Init()
#ifdef _WIN32 #ifdef _WIN32
Aspect_Handle aWindowHandle = (Aspect_Handle)winId(); Aspect_Handle aWindowHandle = (Aspect_Handle)winId();
Handle(Aspect_Window) aWnd = new WNT_Window (aWindowHandle); Handle(Aspect_Window) aWnd = new WNT_Window (aWindowHandle);
#elif defined (__APPLE__) && !defined (MACOSX_USE_GLX) #elif defined (HAVE_XLIB)
Aspect_Drawable aWindowHandle = (Aspect_Drawable )winId();
Handle(Aspect_DisplayConnection) aDispConnection = myViewer->GetContext()->CurrentViewer()->Driver()->GetDisplayConnection();
Handle(Aspect_Window) aWnd = new Xw_Window (aDispConnection, aWindowHandle);
#elif defined (__APPLE__)
NSView* aViewHandle = (NSView*)winId(); NSView* aViewHandle = (NSView*)winId();
Handle(Aspect_Window) aWnd = new Cocoa_Window (aViewHandle); Handle(Aspect_Window) aWnd = new Cocoa_Window (aViewHandle);
#else #else
Window aWindowHandle = (Window)winId(); //
Handle(Aspect_DisplayConnection) aDispConnection = myViewer->GetContext()->CurrentViewer()->Driver()->GetDisplayConnection();
Handle(Aspect_Window) aWnd = new Xw_Window (aDispConnection, aWindowHandle);
#endif #endif
myViewer->SetWindow (aWnd); myViewer->SetWindow (aWnd);