mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Update of QT samples for problems: 1. Mouse selection issue is repeatable 2. Display corrupting during different operation in Viewer
This commit is contained in:
parent
62a0addbcc
commit
4d183a4b4d
@ -146,6 +146,13 @@ myViewActions( 0 )
|
|||||||
|
|
||||||
initViewActions();
|
initViewActions();
|
||||||
initCursors();
|
initCursors();
|
||||||
|
|
||||||
|
setBackgroundRole( QPalette::NoRole );//NoBackground );
|
||||||
|
// set focus policy to threat QContextMenuEvent from keyboard
|
||||||
|
setFocusPolicy( Qt::StrongFocus );
|
||||||
|
setAttribute( Qt::WA_PaintOnScreen );
|
||||||
|
setAttribute( Qt::WA_NoSystemBackground );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
View::~View()
|
View::~View()
|
||||||
@ -349,6 +356,14 @@ QList<QAction*>* View::getViewActions()
|
|||||||
return myViewActions;
|
return myViewActions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
Get paint engine for the OpenGL viewer. [ virtual public ]
|
||||||
|
*/
|
||||||
|
QPaintEngine* View::paintEngine() const
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void View::initViewActions()
|
void View::initViewActions()
|
||||||
{
|
{
|
||||||
if ( myViewActions )
|
if ( myViewActions )
|
||||||
@ -754,7 +769,7 @@ void View::DragEvent( const int x, const int y, const int TheState )
|
|||||||
theButtonDownY = y;
|
theButtonDownY = y;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( TheState == 0 )
|
if ( TheState == 1 )
|
||||||
{
|
{
|
||||||
myContext->Select( theButtonDownX, theButtonDownY, x, y, myView );
|
myContext->Select( theButtonDownX, theButtonDownY, x, y, myView );
|
||||||
emit selectionChanged();
|
emit selectionChanged();
|
||||||
|
@ -47,6 +47,7 @@ public:
|
|||||||
Standard_Integer&,
|
Standard_Integer&,
|
||||||
TopAbs_ShapeEnum& SelectionMode,
|
TopAbs_ShapeEnum& SelectionMode,
|
||||||
Standard_Boolean& );
|
Standard_Boolean& );
|
||||||
|
virtual QPaintEngine* paintEngine() const;
|
||||||
signals:
|
signals:
|
||||||
void selectionChanged();
|
void selectionChanged();
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ public:
|
|||||||
Handle(V3d_View) getView() const { return myView; }
|
Handle(V3d_View) getView() const { return myView; }
|
||||||
Voxel_Selector& getSelector() { return mySelector; }
|
Voxel_Selector& getSelector() { return mySelector; }
|
||||||
void setPrs(const Handle(Voxel_Prs)& prs) { myPrs = prs; }
|
void setPrs(const Handle(Voxel_Prs)& prs) { myPrs = prs; }
|
||||||
|
virtual QPaintEngine* paintEngine() const;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
|
@ -63,6 +63,12 @@ Viewer::Viewer(QWidget* parent):QWidget(parent)
|
|||||||
myView->TriedronDisplay(Aspect_TOTP_LEFT_LOWER, Quantity_NOC_BLACK, 0.1, V3d_ZBUFFER);
|
myView->TriedronDisplay(Aspect_TOTP_LEFT_LOWER, Quantity_NOC_BLACK, 0.1, V3d_ZBUFFER);
|
||||||
|
|
||||||
mySelector.Init(myView);
|
mySelector.Init(myView);
|
||||||
|
|
||||||
|
setBackgroundRole( QPalette::NoRole );//NoBackground );
|
||||||
|
// set focus policy to threat QContextMenuEvent from keyboard
|
||||||
|
setFocusPolicy( Qt::StrongFocus );
|
||||||
|
setAttribute( Qt::WA_PaintOnScreen );
|
||||||
|
setAttribute( Qt::WA_NoSystemBackground );
|
||||||
}
|
}
|
||||||
|
|
||||||
Viewer::~Viewer()
|
Viewer::~Viewer()
|
||||||
@ -77,6 +83,14 @@ void Viewer::paintEvent(QPaintEvent * pEvent)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
Get paint engine for the OpenGL viewer. [ virtual public ]
|
||||||
|
*/
|
||||||
|
QPaintEngine* Viewer::paintEngine() const
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void Viewer::resizeEvent(QResizeEvent * e)
|
void Viewer::resizeEvent(QResizeEvent * e)
|
||||||
{
|
{
|
||||||
if (!myView.IsNull())
|
if (!myView.IsNull())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user