Example #1
0
MainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow)
{
  if (!Endpoint::instance()->isRemoteClient()) {
    // we don't want application styles to propagate to the GammaRay window,
    // so set the platform default one.
    // unfortunately, that's not recursive by default, unless we have a style sheet set
    setStyleSheet(QLatin1String("I_DONT_EXIST {}"));

    QStyle *defaultStyle = 0;
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
    QGuiPlatformPlugin defaultGuiPlatform;
    defaultStyle = QStyleFactory::create(defaultGuiPlatform.styleName());
#else
    foreach (const QString &styleName, QGuiApplicationPrivate::platform_theme->defaultThemeHint(QPlatformTheme::StyleNames).toStringList()) {
      if ((defaultStyle = QStyleFactory::create(styleName))) {
        break;
      }
    }
#endif
    if (defaultStyle) {
      // do not set parent of default style
      // this will cause the style being deleted too early through ~QObject()
      // other objects (e.g. the script engine debugger) still might have a
      // reference on the style during destruction
      setStyle(defaultStyle);
    }
  }
Example #2
0
QStyle *InjectorStylePlugin::create(const QString &)
{
  inject();
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
  static QGuiPlatformPlugin defaultGuiPlatform;
  return QStyleFactory::create(defaultGuiPlatform.styleName());
#else
#pragma message("Qt 5: port this")
  return 0;
#endif
}
Example #3
0
QStyle *gammarayDefaultStyle()
{
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
    QGuiPlatformPlugin defaultGuiPlatform;
    return QStyleFactory::create(defaultGuiPlatform.styleName());
#else
    foreach (const QString &styleName,
             QGuiApplicationPrivate::platform_theme->themeHint(QPlatformTheme::StyleNames).
             toStringList()) {
        if (auto style = QStyleFactory::create(styleName)) {
            return style;
        }
    }
#endif
    return nullptr;
}
QStyle *InjectorStylePlugin::create(const QString &)
{
  inject();
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
  static QGuiPlatformPlugin defaultGuiPlatform;
  return QStyleFactory::create(defaultGuiPlatform.styleName());
#else
  const QStringList styleNameList =
    QGuiApplicationPrivate::platform_theme->themeHint(
      QPlatformTheme::StyleNames).toStringList();
  foreach (const QString &styleName, styleNameList) {
    if (QStyle *style = QStyleFactory::create(styleName)) {
      return style;
    }
  }
  return 0;
#endif
}