Re: QPalette Coordinating
You can rewrite the style and ignore the widget palette completely.
Re: QPalette Coordinating
What do you mean I can rewrite the style? I had done this successfully in Qt 4 but am required to use Qt 3 for this project and was confused as to why I could get it to work in 4 but not 3. Probably one of the nice features 4 added. But can you please elaborate on how to rewrite the style? Thanks!
Re: QPalette Coordinating
Implement a proxy style and modify the palette before the actual painting routines are called. Alternatively you can go through all widgets of the application and apply the palette manualy, but it's not a good solution. In Qt4 you could simply use stylesheets instead of all that...
Please make sure the situation is really caused by Qt and not by some error in your code before applying my suggestions. Test it on the simplest code possible. The problem might be completely different than you think (you might be using wrong colour roles for instance).
Re: QPalette Coordinating
I was setting the colors for the Active and Inactive states of Text and ButtonText but wasn't doing it for the Foreground part and now I make sure to add the palette to the QColorGroup::Foreground and now it works for what I need! Thanks for your help though!!!