Thiago Macieira wrote:

> It's another type of plugin called "platformthemes". It's provided
> specifically for platforms that are written with Qt because of a dependency
> reversal: Qt itself cannot integrate with it from inside the platform plugin
> as it hasn't been built yet.

Are you saying it's impossible to get this to function on OS X (or MS Windows)?

I've started perusing the code, and I think this is the function that is 
responsible for the feature under xcb :

QPlatformTheme *QXcbIntegration::createPlatformTheme(const QString &name) const
{
    return QGenericUnixTheme::createUnixTheme(name);
}

qgenericunixtheme isn't included on OS X, but it doesn't appear to have hard 
dependencies on X11, and QCocoaIntegration also has a createPlatformTheme 
method 
that could call QGenericUnixTheme's under certain conditions (or so I hope)?

R

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to