1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-09 18:50:54 +03:00
occt/samples/qt/Common/src/OcctWindow.h
kgv ee2be2a881 0028316: Coding Rules - Elimilate confusing aliases of Standard_Real type in V3d_View
Quantity_Factor, Quantity_Parameter, Quantity_Ratio, Quantity_Coefficient,
Quantity_PlaneAngle, Quantity_Length, V3d_Parameter and V3d_Coordinate
have been replaced by Standard_Real in visualization classes.
2017-06-01 13:55:18 +03:00

89 lines
2.8 KiB
C++

#ifndef OcctWindow_H
#define OcctWindow_H
#include <Aspect_Window.hxx>
#include <QWidget>
class OcctWindow;
/*
OcctWindow class implements Aspect_Window interface using Qt API
as a platform-independent source of window geometry information.
A similar class should be used instead of platform-specific OCCT
classes (WNT_Window, Xw_Window) in any Qt 5 application using OCCT
3D visualization.
With Qt 5, the requirement for a Qt-based application to rely fully
on Qt public API and stop using platform-specific APIs looks mandatory.
An example of this is changed QWidget event sequence: when a widget is
first shown on the screen, a resize event is generated before the
underlying native window is resized correctly, however the QWidget instance
already holds correct size information at that moment. The OCCT classes
acting as a source of window geometry for V3d_View class (WNT_Window, Xw_Window)
are no longer compatible with changed Qt behavior because they rely on
platform-specific API that cannot return correct window geometry information
in some cases. A reasonable solution is to provide a Qt-based implementation
of Aspect_Window interface at application level.
*/
class OcctWindow : public Aspect_Window
{
public:
//! Constructor
OcctWindow( QWidget* theWidget, const Quantity_NameOfColor theBackColor = Quantity_NOC_MATRAGRAY );
virtual void Destroy();
//! Destructor
~OcctWindow()
{
Destroy();
}
//! Returns native Window handle
virtual Aspect_Drawable NativeHandle() const;
//! Returns parent of native Window handle.
virtual Aspect_Drawable NativeParentHandle() const;
//! Applies the resizing to the window <me>
virtual Aspect_TypeOfResize DoResize() const;
//! Returns True if the window <me> is opened
//! and False if the window is closed.
virtual Standard_Boolean IsMapped() const;
//! Apply the mapping change to the window <me>
//! and returns TRUE if the window is mapped at screen.
virtual Standard_Boolean DoMapping() const { return Standard_True; }
//! Opens the window <me>.
virtual void Map() const;
//! Closes the window <me>.
virtual void Unmap() const;
virtual void Position( Standard_Integer& theX1, Standard_Integer& theY1,
Standard_Integer& theX2, Standard_Integer& theY2 ) const;
//! Returns The Window RATIO equal to the physical
//! WIDTH/HEIGHT dimensions.
virtual Standard_Real Ratio() const;
virtual void Size( Standard_Integer& theWidth, Standard_Integer& theHeight ) const;
virtual Aspect_FBConfig NativeFBConfig() const Standard_OVERRIDE { return NULL; }
DEFINE_STANDARD_RTTIEXT(OcctWindow,Aspect_Window)
protected:
Standard_Integer myXLeft;
Standard_Integer myYTop;
Standard_Integer myXRight;
Standard_Integer myYBottom;
QWidget* myWidget;
};
#endif // OcctWindow_H