visuals.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: visuals.cpp,v 1.1.1.1.42.2 2004/07/09 12:48:45 pankajgupta Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include "visuals.h"
  52. #if defined(_AIX)
  53. #include <stdlib.h>
  54. #endif
  55. // local helpers 
  56. #ifdef _DEBUG
  57. void PrintVisualInfo(XVisualInfo info);
  58. #endif
  59. #ifdef _DEBUG
  60. //#define PRINTVISUAL 0
  61. int print_visual = 0;
  62. #endif
  63. Visual* GetBestVisual(Display* display)
  64. {
  65.     Visual* vis = NULL;
  66.     XVisualInfo vinfo_template;
  67.     long mask;
  68. #ifdef _DEBUG
  69. #ifdef PRINTVISUAL
  70.     // Print out the display visuals.
  71.     if(print_visual == 0)
  72.     {
  73.         int nused, nmaps = MaxCmapsOfScreen(XDefaultScreenOfDisplay(display));
  74.  XLockDisplay(display);
  75.         Colormap* pMaps = XListInstalledColormaps(display, 
  76.                                      XDefaultRootWindow(display), &nused);
  77.  XUnlockDisplay(display);
  78.         XFree(pMaps);
  79.         printf("This screen supports %d colormaps. (%d are used)n", nmaps, nused);
  80.         int items;
  81. XVisualInfo* vinfo_list;
  82. XLockDisplay(display);
  83. vinfo_list = XGetVisualInfo(display, 0, &vinfo_template, &items);
  84. XUnlockDisplay(display);
  85. if (items > 0)
  86.   {
  87.             for(int i = 0; i < items; i++)
  88.       {
  89. PrintVisualInfo(vinfo_list[i]);
  90.       }
  91.   }
  92. XFree(vinfo_list);
  93. print_visual = 1;
  94.     }
  95. #endif
  96. #endif
  97.     // Search for a visual on the display that will support our images.
  98.     memset(&vinfo_template, 0, sizeof(XVisualInfo));
  99.     vinfo_template.depth      = 24;
  100.     vinfo_template.c_class    = TrueColor;
  101.     vinfo_template.blue_mask  = 0x0000ff;
  102.     vinfo_template.green_mask = 0x00ff00;
  103.     vinfo_template.red_mask   = 0xff0000;
  104.     mask = VisualDepthMask|VisualClassMask|VisualRedMaskMask|
  105.            VisualGreenMaskMask|VisualBlueMaskMask;
  106.     vis = GetVisual(display, mask, &vinfo_template);
  107.     if (!vis)
  108.     {
  109.       vinfo_template.depth      = 24;
  110.       vinfo_template.c_class    = TrueColor;
  111.       vinfo_template.blue_mask  = 0xff0000;
  112.       vinfo_template.green_mask = 0x00ff00;
  113.       vinfo_template.red_mask   = 0x0000ff;
  114.       mask = VisualDepthMask|VisualClassMask|VisualRedMaskMask|
  115.      VisualGreenMaskMask|VisualBlueMaskMask;
  116.       vis = GetVisual(display, mask, &vinfo_template);
  117.     }
  118.     if (!vis)
  119.     {
  120.       vinfo_template.depth      = 16;
  121.       vinfo_template.c_class    = TrueColor;
  122.       vinfo_template.blue_mask  = 0x001f;
  123.       vinfo_template.green_mask = 0x07e0;
  124.       vinfo_template.red_mask   = 0xf800;
  125.       mask = VisualDepthMask|VisualClassMask;
  126.       vis = GetVisual(display, mask, &vinfo_template);
  127.     }
  128.     if (!vis)
  129.     {
  130.       vinfo_template.depth      = 15;
  131.       vinfo_template.c_class    = TrueColor;
  132.       vinfo_template.blue_mask  = 0x001f;
  133.       vinfo_template.green_mask = 0x03e0;
  134.       vinfo_template.red_mask   = 0x7c00;
  135.       mask = VisualDepthMask|VisualClassMask;
  136.       vis = GetVisual(display, mask, &vinfo_template);
  137.     }
  138.     if (!vis)
  139.     {
  140.       vinfo_template.depth      = 8;
  141.       vinfo_template.c_class    = PseudoColor;
  142.       mask = VisualDepthMask|VisualClassMask;
  143.       vis = GetVisual(display, mask, &vinfo_template);
  144.     }
  145.     if (!vis)
  146.     {
  147.       vinfo_template.depth      = 32;
  148.       vinfo_template.c_class    = TrueColor;
  149.       vinfo_template.blue_mask  = 0xff0000;
  150.       vinfo_template.green_mask = 0x00ff00;
  151.       vinfo_template.red_mask   = 0x0000ff;
  152.       mask = VisualDepthMask|VisualClassMask;
  153.       vis = GetVisual(display, mask, &vinfo_template);
  154.     }
  155.     if (!vis)
  156.     {
  157.       vinfo_template.depth      = 32;
  158.       vinfo_template.c_class    = TrueColor;
  159.       vinfo_template.blue_mask  = 0xff000000;
  160.       vinfo_template.green_mask = 0x00ff0000;
  161.       vinfo_template.red_mask   = 0x0000ff00;
  162.       mask = VisualDepthMask|VisualClassMask;
  163.       vis = GetVisual(display, mask, &vinfo_template);
  164.     }
  165.     if (!vis)
  166.     {
  167.       vinfo_template.depth      = 32;
  168.       vinfo_template.c_class    = TrueColor;
  169.       vinfo_template.blue_mask  = 0x0000ff;
  170.       vinfo_template.green_mask = 0x00ff00;
  171.       vinfo_template.red_mask   = 0xff0000;
  172.       mask = VisualDepthMask|VisualClassMask;
  173.       vis = GetVisual(display, mask, &vinfo_template);
  174.     }
  175.     if (!vis)
  176.     {
  177.       vinfo_template.depth      = 32;
  178.       vinfo_template.c_class    = TrueColor;
  179.       vinfo_template.blue_mask  = 0x0000ff00;
  180.       vinfo_template.green_mask = 0x00ff0000;
  181.       vinfo_template.red_mask   = 0xff000000;
  182.       mask = VisualDepthMask|VisualClassMask;
  183.       vis = GetVisual(display, mask, &vinfo_template);
  184.     }
  185.     if (!vis)
  186.     {
  187.       // No valid visual found.
  188.       printf("G2 Core: Requires  15/16/24/32 bit TrueColor or PseudoColor Visual display.n");
  189.       exit(1);
  190.     }
  191.     return vis;
  192. }
  193. Visual* GetVisual(Display* display, long mask, XVisualInfo* templ)
  194. {
  195.     int items;
  196.     XVisualInfo* vinfo_list;
  197.     Visual* res = NULL;
  198.     XLockDisplay(display);
  199.     vinfo_list = XGetVisualInfo(display, mask, templ, &items);
  200.     XUnlockDisplay(display);
  201.     if (items > 0)
  202.     {
  203.         for(int i = 0; i < items; i++)
  204.         {
  205.             if((vinfo_list[i].c_class == templ->c_class) &&
  206.                (vinfo_list[i].depth == templ->depth))
  207.             {
  208. #ifdef _DEBUG
  209.         //printf("GetVisual: Found best visual.n");
  210.         PrintVisualInfo(vinfo_list[i]);
  211. #endif
  212.                 res  = vinfo_list[i].visual;
  213.                 break;
  214.             }
  215.         }
  216.     }
  217.     if (vinfo_list)
  218.     XFree(vinfo_list);
  219.     return res;
  220. }
  221. #ifdef _DEBUG
  222. void PrintVisualInfo(XVisualInfo info)
  223. {
  224.     char* pClass;
  225.     switch(info.c_class)
  226.     {
  227.         case GrayScale:   pClass = "GrayScale";   break;
  228.         case StaticGray:  pClass = "StaticGray";  break;
  229.         case TrueColor:   pClass = "TrueColor";   break;
  230.         case DirectColor: pClass = "DirectColor"; break;
  231.         case PseudoColor: pClass = "PseudoColor"; break;
  232.         case StaticColor: pClass = "StaticColor"; break;
  233.     }
  234.     printf("Class = %s, Depth = %dn", pClass, info.depth);
  235. }
  236. #endif