亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? gdkimage-x11.c

?? linux下電話本所依賴的一些圖形庫
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* GDK - The GIMP Drawing Kit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. *//* * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS * file for a list of people on the GTK+ Team.  See the ChangeLog * files for a list of changes.  These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/.  */#include <config.h>#include <stdlib.h>#include <sys/types.h>#if defined (HAVE_IPC_H) && defined (HAVE_SHM_H) && defined (HAVE_XSHM_H)#define USE_SHM#endif#ifdef USE_SHM#include <sys/ipc.h>#include <sys/shm.h>#endif /* USE_SHM */#include <X11/Xlib.h>#include <X11/Xutil.h>#ifdef USE_SHM#include <X11/extensions/XShm.h>#endif /* USE_SHM */#include <errno.h>#include "gdk.h"		/* For gdk_error_trap_* / gdk_flush_* */#include "gdkx.h"#include "gdkimage.h"#include "gdkprivate.h"#include "gdkprivate-x11.h"#include "gdkdisplay-x11.h"#include "gdkscreen-x11.h"#include "gdkalias.h"typedef struct _GdkImagePrivateX11     GdkImagePrivateX11;struct _GdkImagePrivateX11{  XImage *ximage;  GdkScreen *screen;  gpointer x_shm_info;  Pixmap shm_pixmap;};static GList *image_list = NULL;static gpointer parent_class = NULL;static void gdk_x11_image_destroy (GdkImage      *image);static void gdk_image_init        (GdkImage      *image);static void gdk_image_class_init  (GdkImageClass *klass);static void gdk_image_finalize    (GObject       *object);#define PRIVATE_DATA(image) ((GdkImagePrivateX11 *) GDK_IMAGE (image)->windowing_data)GTypegdk_image_get_type (void){  static GType object_type = 0;  if (!object_type)    {      static const GTypeInfo object_info =      {        sizeof (GdkImageClass),        (GBaseInitFunc) NULL,        (GBaseFinalizeFunc) NULL,        (GClassInitFunc) gdk_image_class_init,        NULL,           /* class_finalize */        NULL,           /* class_data */        sizeof (GdkImage),        0,              /* n_preallocs */        (GInstanceInitFunc) gdk_image_init,      };            object_type = g_type_register_static (G_TYPE_OBJECT,                                            "GdkImage",                                            &object_info, 0);    }    return object_type;}static voidgdk_image_init (GdkImage *image){  image->windowing_data = g_new0 (GdkImagePrivateX11, 1);}static voidgdk_image_class_init (GdkImageClass *klass){  GObjectClass *object_class = G_OBJECT_CLASS (klass);  parent_class = g_type_class_peek_parent (klass);  object_class->finalize = gdk_image_finalize;}static voidgdk_image_finalize (GObject *object){  GdkImage *image = GDK_IMAGE (object);  gdk_x11_image_destroy (image);    G_OBJECT_CLASS (parent_class)->finalize (object);}void_gdk_image_exit (void){  GdkImage *image;  while (image_list)    {      image = image_list->data;      gdk_x11_image_destroy (image);    }}/** * gdk_image_new_bitmap: * @visual: the #GdkVisual to use for the image. * @data: the pixel data.  * @width: the width of the image in pixels.  * @height: the height of the image in pixels.  *  * Creates a new #GdkImage with a depth of 1 from the given data. * <warning><para>THIS FUNCTION IS INCREDIBLY BROKEN. The passed-in data must  * be allocated by malloc() (NOT g_malloc()) and will be freed when the  * image is freed.</para></warning> *  * Return value: a new #GdkImage. **/GdkImage *gdk_image_new_bitmap(GdkVisual *visual, gpointer data, gint width, gint height){  Visual *xvisual;  GdkImage *image;  GdkDisplay *display;  GdkImagePrivateX11 *private;    image = g_object_new (gdk_image_get_type (), NULL);  private = PRIVATE_DATA (image);  private->screen = gdk_visual_get_screen (visual);  display = GDK_SCREEN_DISPLAY (private->screen);    image->type = GDK_IMAGE_NORMAL;  image->visual = visual;  image->width = width;  image->height = height;  image->depth = 1;  image->bits_per_pixel = 1;  if (display->closed)    private->ximage = NULL;  else    {      xvisual = ((GdkVisualPrivate*) visual)->xvisual;      private->ximage = XCreateImage (GDK_SCREEN_XDISPLAY (private->screen),				      xvisual, 1, XYBitmap,				      0, NULL, width, height, 8, 0);    }    private->ximage->data = data;  private->ximage->bitmap_bit_order = MSBFirst;  private->ximage->byte_order = MSBFirst;  image->byte_order = MSBFirst;  image->mem =  private->ximage->data;  image->bpl = private->ximage->bytes_per_line;  image->bpp = 1;  return(image);} /* gdk_image_new_bitmap() */void_gdk_windowing_image_init (GdkDisplay *display){  GdkDisplayX11 *display_x11 = GDK_DISPLAY_X11 (display);    if (display_x11->use_xshm)    {#ifdef USE_SHM      Display *xdisplay = display_x11->xdisplay;      int major, minor, event_base;      Bool pixmaps;        if (XShmQueryExtension (xdisplay) &&	  XShmQueryVersion (xdisplay, &major, &minor, &pixmaps))	{	  display_x11->have_shm_pixmaps = pixmaps;	  event_base = XShmGetEventBase (xdisplay);	  gdk_x11_register_standard_event_type (display,						event_base, ShmNumberEvents);	}      else#endif /* USE_SHM */	display_x11->use_xshm = FALSE;    }}GdkImage*_gdk_image_new_for_depth (GdkScreen    *screen,			  GdkImageType  type,			  GdkVisual    *visual,			  gint          width,			  gint          height,			  gint          depth){  GdkImage *image;  GdkImagePrivateX11 *private;#ifdef USE_SHM  XShmSegmentInfo *x_shm_info;#endif /* USE_SHM */  Visual *xvisual = NULL;  GdkDisplayX11 *display_x11;  GdkScreenX11 *screen_x11;  g_return_val_if_fail (!visual || GDK_IS_VISUAL (visual), NULL);  g_return_val_if_fail (visual || depth != -1, NULL);  g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);    screen_x11 = GDK_SCREEN_X11 (screen);  display_x11 = GDK_DISPLAY_X11 (screen_x11->display);    if (visual)    depth = visual->depth;    switch (type)    {    case GDK_IMAGE_FASTEST:      image = _gdk_image_new_for_depth (screen, GDK_IMAGE_SHARED, 					visual, width, height, depth);      if (!image)	image = _gdk_image_new_for_depth (screen, GDK_IMAGE_NORMAL,					  visual, width, height, depth);      break;    default:      image = g_object_new (gdk_image_get_type (), NULL);            private = PRIVATE_DATA (image);      private->screen = screen;      image->type = type;      image->visual = visual;      image->width = width;      image->height = height;      image->depth = depth;      if (visual)	xvisual = ((GdkVisualPrivate*) visual)->xvisual;      switch (type)	{	case GDK_IMAGE_SHARED:#ifdef USE_SHM	  if (display_x11->use_xshm)	    {	      private->x_shm_info = g_new (XShmSegmentInfo, 1);	      x_shm_info = private->x_shm_info;	      x_shm_info->shmid = -1;	      x_shm_info->shmaddr = (char*) -1;	      private->ximage = XShmCreateImage (screen_x11->xdisplay, xvisual, depth,						 ZPixmap, NULL, x_shm_info, width, height);	      if (private->ximage == NULL)		{		  g_warning ("XShmCreateImage failed");		  display_x11->use_xshm = FALSE;		  		  goto error;		}	      x_shm_info->shmid = shmget (IPC_PRIVATE,					  private->ximage->bytes_per_line * private->ximage->height,					  IPC_CREAT | 0600);	      if (x_shm_info->shmid == -1)		{		  /* EINVAL indicates, most likely, that the segment we asked for		   * is bigger than SHMMAX, so we don't treat it as a permanent		   * error. ENOSPC and ENOMEM may also indicate this, but		   * more likely are permanent errors.		   */		  if (errno != EINVAL)		    {		      g_warning ("shmget failed: error %d (%s)", errno, g_strerror (errno));		      display_x11->use_xshm = FALSE;		    }		  goto error;		}	      x_shm_info->readOnly = False;	      x_shm_info->shmaddr = shmat (x_shm_info->shmid, NULL, 0);	      private->ximage->data = x_shm_info->shmaddr;	      if (x_shm_info->shmaddr == (char*) -1)		{		  g_warning ("shmat failed: error %d (%s)", errno, g_strerror (errno));		  /* Failure in shmat is almost certainly permanent. Most likely error is		   * EMFILE, which would mean that we've exceeded the per-process		   * Shm segment limit.		   */		  display_x11->use_xshm = FALSE;		  goto error;		}	      gdk_error_trap_push ();	      XShmAttach (screen_x11->xdisplay, x_shm_info);	      XSync (screen_x11->xdisplay, False);	      if (gdk_error_trap_pop ())		{		  /* this is the common failure case so omit warning */		  display_x11->use_xshm = FALSE;		  goto error;		}	      	      /* We mark the segment as destroyed so that when	       * the last process detaches, it will be deleted.	       * There is a small possibility of leaking if	       * we die in XShmAttach. In theory, a signal handler	       * could be set up.	       */	      shmctl (x_shm_info->shmid, IPC_RMID, NULL);		      	      if (image)		image_list = g_list_prepend (image_list, image);	    }	  else#endif /* USE_SHM */	    goto error;	  break;	case GDK_IMAGE_NORMAL:	  private->ximage = XCreateImage (screen_x11->xdisplay, xvisual, depth,					  ZPixmap, 0, NULL, width, height, 32, 0);	  /* Use malloc, not g_malloc here, because X will call free()	   * on this data	   */	  private->ximage->data = malloc (private->ximage->bytes_per_line *					  private->ximage->height);	  if (!private->ximage->data)	    goto error;	  break;	case GDK_IMAGE_FASTEST:	  g_assert_not_reached ();	}      if (image)	{	  image->byte_order = (private->ximage->byte_order == LSBFirst) ? GDK_LSB_FIRST : GDK_MSB_FIRST;	  image->mem = private->ximage->data;	  image->bpl = private->ximage->bytes_per_line;	  image->bpp = (private->ximage->bits_per_pixel + 7) / 8;	  image->bits_per_pixel = private->ximage->bits_per_pixel;	}    }  return image; error:  if (private->ximage)    {      XDestroyImage (private->ximage);      private->ximage = NULL;    }#ifdef USE_SHM  if (private->x_shm_info)    {      x_shm_info = private->x_shm_info;            if (x_shm_info->shmaddr != (char *)-1)	shmdt (x_shm_info->shmaddr);      if (x_shm_info->shmid != -1) 	shmctl (x_shm_info->shmid, IPC_RMID, NULL);            g_free (x_shm_info);      private->x_shm_info = NULL;    }#endif /* USE_SHM */  g_object_unref (image);    return NULL;}Pixmap_gdk_x11_image_get_shm_pixmap (GdkImage *image){  GdkImagePrivateX11 *private = PRIVATE_DATA (image);  GdkDisplay *display = GDK_SCREEN_DISPLAY (private->screen);  if (display->closed)    return None;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品丝袜久久久中文字幕| 亚洲成精国产精品女| 3d成人h动漫网站入口| 色美美综合视频| 在线视频观看一区| 欧美写真视频网站| 欧美丝袜丝交足nylons| 欧美在线制服丝袜| 欧美女孩性生活视频| 91精品午夜视频| 欧美大白屁股肥臀xxxxxx| 日韩欧美国产高清| 亚洲国产精品99久久久久久久久| 国产视频一区二区三区在线观看| 国产人妖乱国产精品人妖| 国产精品色哟哟网站| 国产精品福利av| 亚洲国产va精品久久久不卡综合| 日韩制服丝袜av| 国产精品一区二区视频| 成人激情电影免费在线观看| 色婷婷综合久色| 日韩欧美成人激情| 国产精品久久久久影视| 一区二区三国产精华液| 另类综合日韩欧美亚洲| 国产盗摄视频一区二区三区| 91片在线免费观看| 91精品国产综合久久精品性色| 国产亚洲欧洲997久久综合| 亚洲欧美另类小说| 免费成人av在线播放| aa级大片欧美| 2021中文字幕一区亚洲| 一区二区三区四区激情| 国产精品一卡二| 欧美视频在线一区| 久久久久久久网| 香蕉成人伊视频在线观看| 成人一级黄色片| 欧美一卡二卡三卡| 亚洲品质自拍视频| 国产一区不卡精品| 欧美人伦禁忌dvd放荡欲情| 国产蜜臀av在线一区二区三区| 亚洲午夜精品17c| 成人黄色av网站在线| 日韩一区二区电影| 亚洲一区二区三区四区五区中文| 久久99国产精品免费| 3d动漫精品啪啪一区二区竹菊| 亚洲欧美一区二区视频| 国产精品一区二区久久不卡| 欧美精品乱码久久久久久按摩| 亚洲欧洲性图库| 成人深夜福利app| 久久久久亚洲蜜桃| 久久爱www久久做| 欧美老女人在线| 亚洲午夜一区二区| 91国产福利在线| 一级日本不卡的影视| av中文一区二区三区| 欧美激情自拍偷拍| 国产九九视频一区二区三区| 欧美精品一区二区三区四区 | 精品一区二区三区免费视频| 欧美在线不卡视频| 亚洲欧美国产三级| 91国在线观看| 玉足女爽爽91| 欧洲精品视频在线观看| 亚洲电影你懂得| 9191成人精品久久| 日本麻豆一区二区三区视频| 6080yy午夜一二三区久久| 午夜久久电影网| 在线成人免费观看| 麻豆国产精品777777在线| 日韩欧美一级二级三级久久久| 麻豆精品在线观看| 久久久久久久综合| 99精品国产91久久久久久| 亚洲色图视频免费播放| 色天使色偷偷av一区二区| 午夜精品福利在线| 久久婷婷一区二区三区| 成人午夜视频在线| 亚洲人被黑人高潮完整版| 在线播放国产精品二区一二区四区| 午夜免费欧美电影| 欧美精品一区二区高清在线观看| 国产精品一色哟哟哟| 亚洲精品一卡二卡| 欧美一区二区日韩一区二区| 韩国一区二区三区| 亚洲视频一区二区免费在线观看| 97久久精品人人爽人人爽蜜臀 | 日韩欧美综合在线| 国产综合色精品一区二区三区| 国产清纯美女被跳蛋高潮一区二区久久w| 国产伦精品一区二区三区视频青涩| 国产精品免费视频网站| 欧美性猛交xxxxxx富婆| 精品一区二区三区在线观看| 国产精品女同一区二区三区| 欧美三级一区二区| 国产精品影音先锋| 五月天欧美精品| 国产欧美一区二区精品忘忧草 | 91精品在线一区二区| 国内精品视频666| 亚洲午夜电影在线观看| 久久久一区二区| 337p亚洲精品色噜噜噜| 成人激情免费视频| 韩国一区二区视频| 亚洲高清免费一级二级三级| 亚洲国产高清在线观看视频| 欧美理论在线播放| 色综合久久久久综合体| 国精产品一区一区三区mba桃花 | 日韩欧美一区二区免费| 91免费看`日韩一区二区| 九一九一国产精品| 亚洲制服丝袜av| 国产精品理伦片| 欧美精品一区二区在线播放 | 国产大片一区二区| 天堂成人国产精品一区| 亚洲人妖av一区二区| 国产网站一区二区三区| 91精品国产全国免费观看| 色又黄又爽网站www久久| 国产成人日日夜夜| 老司机午夜精品| 青草国产精品久久久久久| 亚洲影视资源网| 亚洲欧美日本在线| 亚洲视频你懂的| 国产精品女主播av| 国产精品美女久久久久久2018 | 亚洲人成精品久久久久久| 欧美国产日韩在线观看| 国产亚洲一本大道中文在线| 久久午夜色播影院免费高清| 337p日本欧洲亚洲大胆色噜噜| 91精品国产入口| 欧美一级一区二区| 精品区一区二区| 欧美电视剧免费全集观看| 精品国产第一区二区三区观看体验| 69堂精品视频| 日韩一区二区中文字幕| 91麻豆精品国产91久久久使用方法 | 国产寡妇亲子伦一区二区| 韩国中文字幕2020精品| 国产福利一区在线| 国产精品123| 91免费看片在线观看| 欧美性色aⅴ视频一区日韩精品| 欧美日韩精品一区二区| 91精品国产aⅴ一区二区| 日韩一区二区三区视频在线 | 欧美大片日本大片免费观看| 日韩免费电影一区| 久久麻豆一区二区| 中文字幕在线观看一区| 日韩美女久久久| 午夜精品久久久久久| 精品一区免费av| 成人av在线一区二区三区| 97精品国产97久久久久久久久久久久 | 青椒成人免费视频| 国产精品一区专区| 在线亚洲精品福利网址导航| 欧美福利视频导航| 久久久久久日产精品| 亚洲免费观看视频| 日韩av网站在线观看| 国产精品一线二线三线| 欧洲精品在线观看| 久久亚洲一级片| 亚洲影视在线观看| 国产精品一区二区在线播放| 91久久精品一区二区三| 精品日韩欧美一区二区| 国产精品传媒在线| 久久99精品久久久久久| 日本道免费精品一区二区三区| 欧美xxx久久| 一区二区三区高清不卡| 国产综合色精品一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃 | 日韩欧美电影在线| 亚洲三级在线看| 老司机精品视频导航| 在线观看免费成人| 国产拍揄自揄精品视频麻豆| 亚洲高清免费在线|