PDA

View Full Version : QStyle::State_Raised problem



zgulser
22nd May 2009, 09:02
I wonder what exactly triggers QState::Style_Raised. I raise my related window only upon a signal. And in my window's class I do the following;

myWindow::updateView()

{
...
if( QStyle::State_Raised)
{
cout<<"RAISED"<<endl;
}
...
}

the problem is no matter what takes place, my window always seems Raised!

is there any idea for passing me?

zgulser
25th May 2009, 09:49
hi,

regarding my question, is there any idea?