How to identify click events on customised objects?
-
wrote on 20 Oct 2010, 15:07 last edited by
We are rendering an Opengl Object using QGLWidget and we are trying to add signals and slots to the Opengl customised widget.
How do we identity click event on our customised objects?By click I meant mouse down and mouse up event.
Actually we are rendering a set of customised linear buttons using QGLWidget.
So how do we identify the mouse click in a particular area of our customised buttons? -
wrote on 21 Oct 2010, 06:08 last edited by
What do you mean by "identify click event"?
Note that there is no real click event in Qt in the sense of QEvents. There are mouse down and up events, and there is a double click event, but no click event. A click is simply a mouse down, followed by a mouse up in the same region of your widget. -
wrote on 21 Oct 2010, 15:42 last edited by
Hi Lyuts,
I am already doing that.But I need to identify a customised Opengl Widget,based on which area it is clicked.
So how do I identify this click area or bounding rectangle of my customised Opengl Widget? -
wrote on 22 Oct 2010, 06:24 last edited by
Well, because you do the rendering of that custom widget, it's up to you to identify what part of the widget was clicked. Qt can't help you with that.
-
wrote on 22 Oct 2010, 12:46 last edited by
on mouse click event you can get cursor position using
@QCursor::pos()@
just an idea this might help you. if you know the position of your custom object; -
wrote on 2 Nov 2010, 13:13 last edited by
overriding the mouse event functions should work as said earlier. Do you need to identify an object in an opengl view, a 3d object you added to the scene ?
-
wrote on 5 Nov 2014, 06:39 last edited by
Hi, I am doing the same thing. I am working with the QGraphicsView/Scene. I want to add invisible rectangular areas, that has multiple properties, like clickable, repaintable, updatable, etc. Are only the event handlers option here or SIGNAL/SLOT mechanism still can be used?