hello everyone, i am trying to make a widget that will receive
mousePressEvent(QMouseEvent *e) for a widget of mine.
the thing is i have a QTextEdit that occupies most of the screen and
thus mouseEvents do not propagate to the widget which is my receiver
of choice for these events...
i read about QMouseEvent::ignore() but i am not sure this is what i
want... i basically want to make the textEdit (and any other objects
like buttons ill add later) 'transparent' so mouseEvents are directly
interpreted by the QWidget class.. ie the main window.
thank you
nass