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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? screens.c

?? 安裝DDD之前
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
	scr->components[MWM_ICON].bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_ICON].bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_ICON].bottom_shadow_color;	gcv.background = scr->components[MWM_ICON].background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_ICON].bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    gcm = GCFunction | GCPlaneMask | GCGraphicsExposures | GCLineWidth |	GCForeground | GCBackground | GCFont;    gcv.line_width = 0;    gcv.function = GXcopy;    gcv.plane_mask = AllPlanes;    gcv.font = scr->components[MWM_ICON].font->fid;    /*     * Prevent GraphicsExpose and NoExpose events.  We'd only get NoExpose     * events anyway;  they cause BadWindow errors from XGetWindowAttributes     * call in FindScreenInfo (events.c) (since drawable is a pixmap).     */    gcv.graphics_exposures = False;    gcv.foreground = scr->components[MWM_ICON].active_foreground;    gcv.background = scr->components[MWM_ICON].active_background;    scr->components[MWM_ICON].active_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_ICON].active_top_shadow_pixmap != None &&    scr->components[MWM_ICON].active_top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_ICON].active_top_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_ICON].active_top_shadow_color;	gcv.background = scr->components[MWM_ICON].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_ICON].active_top_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_ICON].active_bottom_shadow_pixmap != None &&	scr->components[MWM_ICON].active_bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_ICON].active_bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_ICON].active_bottom_shadow_color;	gcv.background = scr->components[MWM_ICON].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_ICON].active_bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);}/* * create the GC's for the title_area */static voidcreate_title_gcs(ScreenInfo *scr){    XGCValues gcv;    unsigned long gcm;    gcm = GCFunction | GCPlaneMask | GCGraphicsExposures | GCLineWidth |	GCForeground | GCBackground | GCFont;    gcv.line_width = 0;    gcv.function = GXcopy;    gcv.plane_mask = AllPlanes;    if (scr->components[MWM_TITLE_A].font_list == NULL)	scr->components[MWM_TITLE_A].font_list = _XmFontListCreateDefault(dpy);    _XmFontListGetDefaultFont(scr->components[MWM_TITLE_A].font_list,                    &scr->components[MWM_TITLE_A].font);    gcv.font = scr->components[MWM_TITLE_A].font->fid;    if (scr->components[MWM_TITLE_A].font)    {	scr->components[MWM_TITLE_A].f_height =	    scr->components[MWM_TITLE_A].font->ascent +	    scr->components[MWM_TITLE_A].font->descent;	scr->components[MWM_TITLE_A].f_y =	    scr->components[MWM_TITLE_A].font->ascent;    }    /*     * Prevent GraphicsExpose and NoExpose events.  We'd only get NoExpose     * events anyway;  they cause BadWindow errors from XGetWindowAttributes     * call in FindScreenInfo (events.c) (since drawable is a pixmap).     */    gcv.graphics_exposures = False;    gcv.foreground = scr->components[MWM_TITLE_A].foreground;    gcv.background = scr->components[MWM_TITLE_A].background;    scr->components[MWM_TITLE_A].normal_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    scr->components[MWM_TITLE_A].grayed_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    XSetFillStyle(dpy, scr->components[MWM_TITLE_A].grayed_GC, FillOpaqueStippled);    if (scr->components[MWM_TITLE_A].top_shadow_pixmap != None &&	scr->components[MWM_TITLE_A].top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_TITLE_A].top_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_TITLE_A].top_shadow_color;	gcv.background = scr->components[MWM_TITLE_A].background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_TITLE_A].top_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_TITLE_A].bottom_shadow_pixmap != None &&     scr->components[MWM_TITLE_A].bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_TITLE_A].bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_TITLE_A].bottom_shadow_color;	gcv.background = scr->components[MWM_TITLE_A].background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_TITLE_A].bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    gcm = GCFunction | GCPlaneMask | GCGraphicsExposures | GCLineWidth |	GCForeground | GCBackground | GCFont;    gcv.line_width = 0;    gcv.function = GXcopy;    gcv.plane_mask = AllPlanes;    gcv.font = scr->components[MWM_TITLE_A].font->fid;    /*     * Prevent GraphicsExpose and NoExpose events.  We'd only get NoExpose     * events anyway;  they cause BadWindow errors from XGetWindowAttributes     * call in FindScreenInfo (events.c) (since drawable is a pixmap).     */    gcv.graphics_exposures = False;    gcv.foreground = scr->components[MWM_TITLE_A].active_foreground;    gcv.background = scr->components[MWM_TITLE_A].active_background;    scr->components[MWM_TITLE_A].active_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_TITLE_A].active_top_shadow_pixmap != None &&	scr->components[MWM_TITLE_A].active_top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_TITLE_A].active_top_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_TITLE_A].active_top_shadow_color;	gcv.background = scr->components[MWM_TITLE_A].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_TITLE_A].active_top_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_TITLE_A].active_bottom_shadow_pixmap != None &&	scr->components[MWM_TITLE_A].active_bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_TITLE_A].active_bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_TITLE_A].active_bottom_shadow_color;	gcv.background = scr->components[MWM_TITLE_A].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_TITLE_A].active_bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);}/* * create the GC's for the resize handles */static voidcreate_resize_h_gcs(ScreenInfo *scr){    XGCValues gcv;    unsigned long gcm;    if (scr->components[MWM_RESIZE_H].top_shadow_pixmap != None &&	scr->components[MWM_RESIZE_H].top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_RESIZE_H].top_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_RESIZE_H].top_shadow_color;	gcv.background = scr->components[MWM_RESIZE_H].background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_RESIZE_H].top_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_RESIZE_H].bottom_shadow_pixmap != None &&    scr->components[MWM_RESIZE_H].bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_RESIZE_H].bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_RESIZE_H].bottom_shadow_color;	gcv.background = scr->components[MWM_RESIZE_H].background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_RESIZE_H].bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_RESIZE_H].active_top_shadow_pixmap != None &&	scr->components[MWM_RESIZE_H].active_top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_RESIZE_H].active_top_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_RESIZE_H].active_top_shadow_color;	gcv.background = scr->components[MWM_RESIZE_H].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_RESIZE_H].active_top_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);    if (scr->components[MWM_RESIZE_H].active_bottom_shadow_pixmap != None &&	scr->components[MWM_RESIZE_H].active_bottom_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {	gcm = GCTile | GCFillStyle;	gcv.tile = scr->components[MWM_RESIZE_H].active_bottom_shadow_pixmap;	gcv.fill_style = FillTiled;    }    else    {	gcm = GCForeground | GCBackground;	gcv.foreground = scr->components[MWM_RESIZE_H].active_bottom_shadow_color;	gcv.background = scr->components[MWM_RESIZE_H].active_background;    }    gcm |= GCLineWidth | GCLineStyle | GCCapStyle |	GCGraphicsExposures;    gcv.line_width = 0;    gcv.line_style = LineSolid;    gcv.cap_style = CapButt;    gcv.graphics_exposures = False;    scr->components[MWM_RESIZE_H].active_bot_GC =	XCreateGC(dpy, scr->root_win, gcm, &gcv);}/* * create the GC's for the border */static voidcreate_border_gcs(ScreenInfo *scr){    XGCValues gcv;    unsigned long gcm;    if (scr->components[MWM_BORDER].top_shadow_pixmap != None &&	scr->components[MWM_BORDER].top_shadow_pixmap != XmUNSPECIFIED_PIXMAP)    {

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
2020国产成人综合网| 一区二区三区在线观看国产 | 欧美自拍丝袜亚洲| 懂色中文一区二区在线播放| 国产麻豆精品在线| 激情综合色综合久久| 国产在线精品免费| 国产精品一品视频| 不卡欧美aaaaa| 色综合激情五月| 日本精品一级二级| 欧美日韩一区不卡| 这里只有精品视频在线观看| 日韩欧美国产高清| 国产无一区二区| 亚洲欧洲日本在线| 亚洲国产精品精华液网站| 日韩和欧美的一区| 久久精品久久综合| 国产成人精品亚洲日本在线桃色| 波多野结衣中文一区| 色综合久久中文字幕| 欧美老年两性高潮| 精品国产三级电影在线观看| 国产女主播视频一区二区| 亚洲女同女同女同女同女同69| 亚洲精品你懂的| 日韩国产欧美一区二区三区| 黄色日韩三级电影| 成人午夜大片免费观看| 色婷婷精品久久二区二区蜜臀av| 欧美日韩成人激情| 2024国产精品视频| 一区二区三区中文免费| 婷婷成人激情在线网| 国产精品乡下勾搭老头1| 色国产综合视频| 在线综合视频播放| 中文无字幕一区二区三区| 一区二区在线看| 蜜臀av一区二区在线免费观看| 国产一区二区久久| 欧美亚一区二区| 欧美电影免费观看高清完整版在 | 欧美日韩不卡在线| 久久久久国产精品麻豆ai换脸| 亚洲三级电影全部在线观看高清| 五月天婷婷综合| 成人免费视频一区二区| 欧美日韩精品欧美日韩精品一| 久久精品无码一区二区三区| 亚洲一区av在线| 国产精品一区在线| 欧美嫩在线观看| 天天色 色综合| 国产九色sp调教91| 欧美日韩精品一区视频| 国产欧美日韩在线| 日韩中文欧美在线| 97久久精品人人做人人爽50路| 欧美一区中文字幕| 亚洲欧美日本韩国| 国产美女精品人人做人人爽| 欧美四级电影网| 中文字幕亚洲在| 国产伦精品一区二区三区免费迷 | 国产成a人亚洲精品| 91麻豆精品国产91久久久资源速度 | 日韩一区有码在线| 国产精品自拍av| 91精品国产色综合久久不卡蜜臀| 一区在线观看视频| 国产精品自拍三区| 欧美大片拔萝卜| 亚洲h在线观看| 91久久一区二区| 国产精品拍天天在线| 黄网站免费久久| 欧美一区二区三区日韩视频| 亚洲一区二区视频在线观看| 成年人国产精品| 国产欧美精品一区二区三区四区| 免费高清不卡av| 欧美一卡2卡3卡4卡| 亚洲一区二区三区美女| 99精品视频在线观看| 久久精品视频免费观看| 美美哒免费高清在线观看视频一区二区| 色噜噜夜夜夜综合网| 亚洲色图视频网站| www..com久久爱| 国产精品久久久爽爽爽麻豆色哟哟| 国产一区啦啦啦在线观看| 日韩女优av电影| 久久草av在线| 精品噜噜噜噜久久久久久久久试看| 偷拍亚洲欧洲综合| 4438x亚洲最大成人网| 亚洲第一狼人社区| 欧美日韩小视频| 亚洲成在人线免费| 51精品秘密在线观看| 日本午夜精品视频在线观看| 51久久夜色精品国产麻豆| 日韩电影在线一区二区三区| 3d成人h动漫网站入口| 天堂精品中文字幕在线| 日韩一区二区三区视频| 美女mm1313爽爽久久久蜜臀| 精品国产网站在线观看| 国产精品一区二区三区四区| 亚洲国产精品二十页| 91在线视频播放| 国产在线视频不卡二| 久久人人爽人人爽| 风间由美一区二区三区在线观看| 国产精品视频第一区| 91麻豆免费视频| 香蕉成人啪国产精品视频综合网| 欧美精品一级二级三级| 强制捆绑调教一区二区| 久久久精品中文字幕麻豆发布| 成人在线视频首页| 亚洲人123区| 欧美精品在线一区二区三区| 六月丁香婷婷色狠狠久久| 久久久久久一二三区| jiyouzz国产精品久久| 亚洲国产日韩a在线播放| 日韩欧美一级片| 国产不卡视频一区| 一区二区三区小说| 在线综合+亚洲+欧美中文字幕| 国产在线精品一区二区夜色| 国产女人18水真多18精品一级做| 色噜噜狠狠一区二区三区果冻| 日韩 欧美一区二区三区| 国产日韩v精品一区二区| 色综合久久99| 久久99久久精品欧美| 国产精品乱码妇女bbbb| 欧美日韩一区二区三区高清 | 91免费观看国产| 免费在线看成人av| 中文欧美字幕免费| 51精品久久久久久久蜜臀| 国产不卡视频一区二区三区| 亚洲成人福利片| 日本一区二区三区电影| 欧美理论片在线| 不卡的av网站| 青青草国产精品亚洲专区无| 最新热久久免费视频| 欧美刺激午夜性久久久久久久 | 久久久亚洲高清| 日本高清不卡视频| 国内精品写真在线观看| 亚洲一区在线视频| 日本一区二区三区国色天香| 欧美精品99久久久**| www.日韩精品| 蜜芽一区二区三区| 亚洲精品欧美综合四区| 久久久国产午夜精品| 91精品黄色片免费大全| 色婷婷一区二区| 国产伦精品一区二区三区免费| 亚洲成人中文在线| 亚洲欧美综合另类在线卡通| 精品免费一区二区三区| 欧美精品自拍偷拍动漫精品| 99精品一区二区| 国产成人在线视频免费播放| 男男视频亚洲欧美| 亚洲成人午夜电影| 亚洲品质自拍视频| 国产精品每日更新在线播放网址| 欧美一级欧美一级在线播放| 91久久久免费一区二区| 波多野结衣的一区二区三区| 经典三级视频一区| 日韩专区中文字幕一区二区| 夜夜揉揉日日人人青青一国产精品 | 久久亚洲精华国产精华液 | 亚洲国产va精品久久久不卡综合| 国产精品三级在线观看| 337p日本欧洲亚洲大胆精品| 欧美美女一区二区| 91久久精品国产91性色tv| 成年人午夜久久久| 成人免费黄色在线| 国产精品一品二品| 国产一区二区成人久久免费影院 | 不卡免费追剧大全电视剧网站| 国产在线精品免费| 精品一区二区日韩| 久久成人综合网| 韩国女主播成人在线观看| 免费精品视频最新在线| 喷水一区二区三区|