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
Qt Code:
  1. class QmyWidget : public QWidget, public Ogre::FrameListener
  2. {
  3. Q_OBJECT
  4.  
  5. public:
  6.  
  7.  
  8. QmyWidget(QWidget *parent = 0);
  9. ~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 ?