Hi every one
i want to display the name of my object when i make the mouse on it
The problem that the object in my scene they are not created with Qt i will explain
i defined class that derived from qwidget like that
class QmyWidget
: public QWidget,
public Ogre
::FrameListener {
Q_OBJECT
public:
~QmyWidget();
class QmyWidget : public QWidget, public Ogre::FrameListener
{
Q_OBJECT
public:
QmyWidget(QWidget *parent = 0);
~QmyWidget();
To copy to clipboard, switch view to plain text mode
in this class i defined method namde "create_sphere" in this methode i create my spheres but not using qt paint or qt method
so i can't use "objet->getmane()"
is i can use the tooltips with those constraint ?
Bookmarks