]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Replased methods QX11Info::appVisual() and QX11Info::appColormap on XDefaultVisual...
authorimn <imn@opencascade.com>
Thu, 10 Dec 2015 09:01:56 +0000 (12:01 +0300)
committerimn <imn@opencascade.com>
Thu, 10 Dec 2015 09:01:56 +0000 (12:01 +0300)
src/GLViewer/GLViewer_ViewPort.cxx
src/OCCViewer/OCCViewer_ViewPort.cxx

index cf55d26cd078f8abd14bc47a8e800eb63f645f7a..7a528a5767d01a1f48659eacda634fe0f5470813 100644 (file)
@@ -122,7 +122,6 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
     cout << "Choosing cmap for vID = " << vi->visualid << endl;
 #endif
 
-// TODO (QT5 PORTING) Below is a temporary solution, to allow compiling with Qt 5
 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
     if ( vi->visualid == XVisualIDFromVisual( (Visual*)QX11Info::appVisual() ) )
     {
@@ -131,6 +130,14 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
 #endif
         return QX11Info::appColormap();
     }
+#else
+    if ( vi->visualid == XVisualIDFromVisual( XDefaultVisual( QX11Info::display(), -1 ) ) )
+    {
+#ifdef DEBUG
+        cout << "Using XDefaultColormap" << endl;
+#endif
+        return XDefaultColormap( QX11Info::display(), -1 );
+    }
 #endif
     if ( mesa_gl )
     {
index f14c8265a170ad43521e4baf2d569c675040f961..7575a6a66a1953c80898d140e32aaed53bd65b90 100755 (executable)
@@ -114,7 +114,7 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
   //#ifdef DEBUG
   //cout << "Choosing cmap for vID = " << vi->visualid << endl;
   //#endif
-// TODO (QT5 PORTING) Below is a temporary solution, to allow compiling with Qt 5
+
 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
   if ( vi->visualid == XVisualIDFromVisual( (Visual*)QX11Info::appVisual() ) )
   {
@@ -123,6 +123,14 @@ static Colormap choose_cmap( Display *dpy, XVisualInfo *vi )
 #endif
     return QX11Info::appColormap();
   }
+#else
+  if ( vi->visualid == XVisualIDFromVisual( XDefaultVisual( QX11Info::display(), -1 ) ) )
+  {
+#ifdef DEBUG
+//    cout << "Using XDefaultColormap" << endl;
+#endif
+    return XDefaultColormap( QX11Info::display(), -1 );
+  }
 #endif
   if ( mesa_gl )
   {